/* Reset and base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: #1a1a18;
    background-color: #fecc00;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Responsive images */
.responsive-image {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 0 auto;
}

.center-image {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 2rem auto;
}

/* Header */
.header {
    background-color: #626262;
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo img {
    height: 80px;
    width: auto;
}

.nav {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.nav a {
    color: white;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav a:hover {
    color: #fecc00;
}

.nav-divider {
    color: rgba(255,255,255,0.3);
}

/* Hamburger Menu */
.hamburger {
    display: none;
    flex-direction: column;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 10px;
    z-index: 101;
}

.hamburger span {
    width: 30px;
    height: 3px;
    background-color: #fecc00;
    margin: 3px 0;
    transition: 0.3s;
    border-radius: 3px;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(-45deg) translate(-6px, 6px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(45deg) translate(-6px, -6px);
}

/* Mobile Menu */
.mobile-menu {
    display: none;
    flex-direction: column;
    background-color: #1a1a18;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    padding: 0;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
    box-shadow: 0 8px 16px rgba(0,0,0,0.2);
}

.mobile-menu.active {
    display: flex;
    max-height: 400px;
    padding: 1rem 0;
}

.mobile-menu a {
    color: white;
    text-decoration: none;
    padding: 1rem 2rem;
    font-weight: 500;
    transition: background-color 0.3s ease;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.mobile-menu a:hover {
    background-color: #fecc00;
    color: #1a1a18;
}

/* Feature Highlight Card */
.feature-highlight {
    padding: 40px 0 60px;
}

.highlight-card-link {
    text-decoration: none;
    display: block;
}

.highlight-card {
    background: linear-gradient(135deg, #1a1a18 0%, #333 100%);
    padding: 3rem;
    border-radius: 25px;
    text-align: center;
    box-shadow: 0 20px 50px rgba(0,0,0,0.3);
    border: 3px solid #fecc00;
    transition: transform 0.3s ease;
}

.highlight-card:hover {
    transform: translateY(-5px);
}

.highlight-icon {
    margin-bottom: 1rem;
}

.highlight-icon-image {
    width: 240px;
    height: 120px;
    object-fit: contain;
    margin: 0 auto;
    display: block;
    animation: pulse 10s infinite;
}

.highlight-card h2 {
    font-size: 2.5rem;
    color: white;
    margin-bottom: 1rem;
    font-weight: bold;
}

.highlight-card p {
    font-size: 1.2rem;
    color: rgba(255,255,255,0.9);
    margin-bottom: 2rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.btn-highlight {
    display: inline-block;
    padding: 1.2rem 3rem;
    background-color: #fecc00;
    color: #1a1a18;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.2rem;
    border-radius: 50px;
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(254, 204, 0, 0.4);
}

.highlight-card:hover .btn-highlight {
    background-color: white;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(254, 204, 0, 0.6);
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.1);
    }
}

/* Hero Section */
.hero {
    padding: 80px 0;
    text-align: center;
}

.hero-content h1 {
    font-size: 4rem;
    font-weight: bold;
    color: #1a1a18;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.1);
}

.hero-subtitle {
    font-size: 1.5rem;
    color: #1a1a18;
    margin-bottom: 2rem;
    opacity: 0.8;
}

.coming-soon {
    background-color: white;
    padding: 1.5rem 3rem;
    border-radius: 50px;
    display: inline-block;
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
    transform: rotate(-2deg);
    transition: transform 0.3s ease;
}

.coming-soon:hover {
    transform: rotate(0deg) scale(1.05);
}

.launch-date {
    font-size: 1.3rem;
    font-weight: bold;
    color: #1a1a18;
}

/* Features Section */
.features {
    padding: 80px 0;
}

.feature-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    margin-bottom: 6rem;
    align-items: center;
}

.feature-row.reverse {
    direction: rtl;
}

.feature-row.reverse > * {
    direction: ltr;
}

.feature-content {
    background-color: white;
    padding: 3rem;
    border-radius: 20px;
	text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.feature-content h2 {
    font-size: 2.2rem;
    color: #1a1a18;
    margin-bottom: 1.5rem;
	text-align: center;
    font-weight: bold;
}

.feature-content p {
    font-size: 1.1rem;
    color: #1a1a18;
    opacity: 0.8;
	max-width: 600px;
    margin: 0 auto;
    line-height: 1.7;
}

.feature-image {
    text-align: center;
}

.feature-image img {
    max-width: 100%;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.2);
    transition: transform 0.3s ease;
}

.feature-image img:hover {
    transform: scale(1.05);
}

.placeholder-image {
    width: 300px;
    height: 200px;
    background-color: white;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 4rem;
    margin: 0 auto;
    box-shadow: 0 15px 35px rgba(0,0,0,0.2);
    transition: transform 0.3s ease;
}

.placeholder-image:hover {
    transform: scale(1.05);
}

/* CTA Section */
.cta {
    padding: 80px 0;
    text-align: center;
}

.cta-content {
    background-color: white;
    padding: 4rem;
    border-radius: 25px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
}

.cta-content h2 {
    font-size: 2.5rem;
    color: #1a1a18;
    margin-bottom: 1rem;
    font-weight: bold;
}

.cta-content p {
    font-size: 1.2rem;
    color: #1a1a18;
    opacity: 0.8;
    margin-bottom: 2.5rem;
}

.cta-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-primary, .btn-secondary {
    padding: 1rem 2.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    display: inline-block;
}

.btn-primary {
    background-color: #1a1a18;
    color: white;
}

.btn-primary:hover {
    background-color: #333;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(26,26,24,0.3);
}

.btn-secondary {
    background-color: transparent;
    color: #1a1a18;
    border: 2px solid #1a1a18;
}

.btn-secondary:hover {
    background-color: #1a1a18;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(26,26,24,0.3);
}

/* Contact Section */
.contact-section {
    padding: 80px 0;
    text-align: center;
}

.contact-content {
    background-color: white;
    padding: 4rem;
    border-radius: 25px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
}

.contact-content h2 {
    font-size: 2.5rem;
    color: #1a1a18;
    margin-bottom: 1rem;
    font-weight: bold;
}

.contact-intro {
    font-size: 1.2rem;
    color: #1a1a18;
    opacity: 0.8;
    margin-bottom: 3rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.contact-methods {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.contact-card {
    background-color: #fecc00;
    padding: 2.5rem 2rem;
    border-radius: 20px;
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.contact-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.contact-icon {
    margin-bottom: 1rem;
}

.contact-icon-image {
    width: 110px;
    height: 110px;
    object-fit: contain;
    margin: 0 auto;
    display: block;
}

.contact-icon-imageB {
    width: 200px;
    height: 120px;
    object-fit: contain;
    margin: 0 auto;
    display: block;
}

.contact-card h3 {
    font-size: 1.4rem;
    color: #1a1a18;
    margin-bottom: 1rem;
    font-weight: bold;
}

.contact-card a {
    color: #1a1a18;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    display: inline-block;
    padding: 0.5rem 1rem;
    transition: all 0.3s ease;
}

.contact-card a:hover {
    color: #626262;
}

/* Footer */
.footer {
    background-color: #626262;
    padding: 2rem 0;
    margin-top: 4rem;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 2rem;
}

.footer-logo img {
    height: 60px;
    opacity: 0.8;
}

.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.footer-contact p {
    color: white;
    opacity: 0.9;
    font-size: 0.95rem;
    margin: 0;
}

.footer-contact a {
    color: white;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-contact a:hover {
    color: #fecc00;
}

.footer-text p {
    color: white;
    opacity: 0.7;
    font-size: 0.9rem;
}

/* Pricing Hint */
.pricing-hint {
    background-color: #fecc00;
    padding: 1.5rem;
    border-radius: 15px;
    margin: 2rem 0;
}

.pricing-hint p {
    margin-bottom: 0.5rem;
}

.pricing-hint p:last-child {
    margin-bottom: 0;
}

.criteria-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-top: 2rem;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.criteria-box {
    padding: 1rem;
    border-radius: 8px;
    border: 2px solid;
}

.criteria-box.ideal {
    background: #f5f5f5;
    border-color: #666;
    border: 2px solid #5a7c5a; 
}

.criteria-box.not-ideal {
    background: #f5f5f5;
    border-color: #666;
    border: 2px solid #ffee7f;
}

.criteria-box ul {
    list-style: none;
    padding-left: 0;
}

.criteria-box li {
    margin-bottom: 0.5rem;
}

.criteria-box li:before {
    content: "• ";
    margin-right: 0.5rem;
}

@media (max-width: 768px) {
    .criteria-grid {
        grid-template-columns: 1fr;
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    /* Show hamburger, hide desktop nav */
    .hamburger {
        display: flex;
    }
    
    .nav {
        display: none;
    }
    
    .hero-content h1 {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
    }
    
    .highlight-card {
        padding: 2rem;
    }
    
    .highlight-card h2 {
        font-size: 1.8rem;
    }
    
    .highlight-icon-image {
        width: 90px;
        height: 90px;
    }
    
    .feature-row {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .feature-row.reverse {
        direction: ltr;
    }
    
    .feature-content {
        padding: 2rem;
    }
    
    .feature-content h2 {
        font-size: 1.8rem;
    }
    
    .contact-methods {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .cta-content {
        padding: 2.5rem 1.5rem;
    }
    
    .cta-content h2 {
        font-size: 2rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .btn-primary, .btn-secondary {
        width: 200px;
        text-align: center;
    }
    
    .footer-content {
        flex-direction: column;
        gap: 1.5rem;
        text-align: center;
    }
    
    .footer-contact {
        align-items: center;
    }
    
    /* Header responsive - logo scaling */
    .logo img {
        max-height: 50px;
        max-width: 300px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .hero {
        padding: 50px 0;
    }
    
    .feature-highlight {
        padding: 30px 0 50px;
    }
    
    .features {
        padding: 50px 0;
    }
    
    .cta {
        padding: 50px 0;
    }
    
    .feature-row {
        margin-bottom: 3rem;
    }
    
    .highlight-card {
        padding: 1.5rem;
    }
    
    .highlight-card h2 {
        font-size: 1.5rem;
    }
    
    .highlight-card p {
        font-size: 1rem;
    }
    
    .highlight-icon-image {
        width: 70px;
        height: 70px;
    }
    
    .contact-icon-image {
        width: 60px;
        height: 60px;
    }
    
    /* Very small screens - more logo scaling */
    .logo img {
        max-height: 35px;
        max-width: 150px;
    }
}

/* Donkey Character Design Elements */
.donkey-character {
    position: absolute;
    z-index: 5;
    pointer-events: none;
    transition: transform 0.3s ease;
}

.donkey-character:hover {
    transform: scale(1.05);
}

.donkey-hero-side {
    width: 150px;
    height: auto;
    top: 20%;
    right: 10%;
    transform: rotate(10deg);
    opacity: 0.8;
}

.donkey-feature-left {
    width: 100px;
    height: auto;
    top: 30%;
    left: 5%;
    transform: rotate(-5deg);
    opacity: 0.6;
}

.donkey-feature-right {
    width: 120px;
    height: auto;
    top: 60%;
    right: 8%;
    transform: rotate(8deg);
    opacity: 0.7;
}

.donkey-cta-background {
    width: 200px;
    height: auto;
    top: 20%;
    left: 15%;
    transform: rotate(-12deg);
    opacity: 0.15;
    z-index: 1;
}

.donkey-footer-wave {
    width: 80px;
    height: auto;
    bottom: 10px;
    right: 20%;
    transform: rotate(5deg);
    opacity: 0.4;
}

/* Character positioning for different sections */
.hero {
    position: relative;
    overflow: hidden;
}

.features {
    position: relative;
    overflow: hidden;
}

.cta {
    position: relative;
    overflow: hidden;
}

.footer {
    position: relative;
    overflow: hidden;
}

/* Responsive character adjustments */
@media (max-width: 768px) {
    .donkey-hero-side {
        width: 100px;
        right: 5%;
    }
    
    .donkey-feature-left {
        width: 70px;
        left: 2%;
    }
    
    .donkey-feature-right {
        width: 80px;
        right: 3%;
    }
    
    .donkey-cta-background {
        width: 120px;
        opacity: 0.1;
    }
    
    .donkey-footer-wave {
        width: 60px;
        right: 10%;
    }
}

@media (max-width: 480px) {
    .donkey-character {
        display: none; /* Hide on very small screens to avoid clutter */
    }
}

/* Animation effects */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes floatCharacter {
    0%, 100% {
        transform: translateY(0px) rotate(var(--rotation, 0deg));
    }
    50% {
        transform: translateY(-10px) rotate(var(--rotation, 0deg));
    }
}

.feature-content {
    animation: fadeInUp 0.6s ease-out;
}

.hero-content {
    animation: fadeInUp 0.8s ease-out;
}

.donkey-character {
    animation: floatCharacter 4s ease-in-out infinite;
}

.solution-choice {
    padding: 60px 0;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    color: #1a1a18;
    margin-bottom: 3rem;
    font-weight: bold;
}

.choice-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.choice-card {
    background: linear-gradient(135deg, #1a1a18 0%, #333 100%);
    padding: 3rem;
    border-radius: 25px;
    text-align: center;
    box-shadow: 0 20px 50px rgba(0,0,0,0.3);
    border: 3px solid #fecc00;
    transition: transform 0.3s ease;
    text-decoration: none;
    display: block;
}

.choice-card:hover {
    transform: translateY(-5px);
}

.choice-card h3 {
    font-size: 2rem;
    color: white;
    margin-bottom: 1rem;
    font-weight: bold;
}

.choice-card p {
    font-size: 1.1rem;
    color: rgba(255,255,255,0.9);
    margin-bottom: 2rem;
    line-height: 1.6;
}

.choice-btn {
    display: inline-block;
    padding: 1.2rem 3rem;
    background-color: #fecc00;
    color: #1a1a18;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.2rem;
    border-radius: 30px;
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(254, 204, 0, 0.4);
}

.choice-card:hover .choice-btn {
    background-color: white;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(254, 204, 0, 0.6);
}

/* Mobil */
@media (max-width: 768px) {
    .choice-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}
