* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-padding-top: 70px; /* Mobile-first approach */
    scroll-behavior: smooth;
}

@media (min-width: 768px) {
    html {
        scroll-padding-top: 90px; /* Desktop padding */
    }
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background: #111827;
    color: white;
}

/* Navigation */
.navbar {
    background: #f5e6d3;
    padding: 0.5rem 1.5rem;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    min-height: 60px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    height: 100%;
}

.logo-link {
    display: flex;
    align-items: center;
    transition: transform 0.3s;
    cursor: pointer;
}

.logo-link:hover {
    transform: scale(1.05);
}

.logo-img {
    height: 55px;
    width: auto;
    object-fit: contain;
}

.nav-menu {
    display: flex;
    gap: 2rem;
}

.nav-buttons {
    display: flex;
    gap: 0.5rem;
    align-items: center;
}

.btn-order {
    background: #ca8a04;
    color: white;
    border: none;
    padding: 0.5rem 1rem;
    border-radius: 9999px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    text-decoration: none;
    font-size: 0.875rem;
    white-space: nowrap;
}

.btn-order:hover {
    background: #a16207;
    transform: translateY(-2px);
}

@media (min-width: 768px) {
    .btn-order {
        padding: 0.75rem 1.5rem;
        font-size: 1rem;
    }
    
    .nav-buttons {
        gap: 1rem;
    }
}



/* Hero */
.hero {
    background: #256b40;
    padding: 6rem 1.5rem;
    text-align: center;
}

.hero h1 {
    font-size: 3.75rem;
    margin-bottom: 1rem;
}

.hero .subtitle {
    font-size: 1.5rem;
    color: #d1d5db;
    margin-bottom: 2rem;
}


/* Menu Section */
.menu-section {
    padding: 5rem 1.5rem;
    background: #f5e6d3;
    scroll-margin-top: 80px; /* Additional fix for older browsers */
}

.menu-section h2 {
    font-size: 2.5rem;
    text-align: center;
    color: #256b40;
    margin-bottom: 1rem;
}

.section-desc {
    text-align: center;
    color: #4b5563;
    margin-bottom: 3rem;
    font-weight: 500;
}

.slider-container {
    max-width: 1000px;
    margin: 0 auto;
}

@media (min-width: 1200px) {
    .slider-container {
        max-width: 800px;
    }
}

.slider-wrapper {
    position: relative;
    border-radius: 1rem;
    overflow: hidden;
    background: #f5e6d3;
}

.slider {
    display: flex;
    transition: transform 0.5s ease;
}

.slide {
    min-width: 100%;
    height: 400px;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f5e6d3;
}

.slide-image {
    width: 100%;
    height: 100%;
    position: relative;
}

.slide-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
}

.slide-info {
    position: absolute;
    bottom: 1rem;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(0, 0, 0, 0.7);
    padding: 0.5rem 1rem;
    border-radius: 0.5rem;
    color: white;
}

.slide-price {
    font-size: 1.5rem;
    font-weight: bold;
    margin: 0;
    text-align: center;
}


.slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: #256b40;
    border: none;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    transition: all 0.3s;
}

.slider-btn:hover {
    background: #1e5533;
}

.slider-btn.prev {
    left: 1rem;
}

.slider-btn.next {
    right: 1rem;
}

.dots {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 1.5rem;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #4b5563;
    cursor: pointer;
    transition: all 0.3s;
}

.dot.active {
    background: #4ade80;
}

/* CTA */
.cta {
    background: #256b40;
    padding: 5rem 1.5rem;
    text-align: center;
    scroll-margin-top: 80px; /* Additional fix for older browsers */
}

.cta h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.cta p {
    font-size: 1.25rem;
    color: #d1d5db;
    margin-bottom: 2rem;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    max-width: 800px;
    margin: 0 auto;
}

.btn-cta {
    background: #ca8a04;
    color: white;
    border: none;
    padding: 1rem 2rem;
    border-radius: 9999px;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s;
    text-decoration: none;
    min-width: 200px;
    justify-content: center;
}

.btn-cta:hover {
    background: #a16207;
    transform: translateY(-2px);
}

/* Footer */
.footer {
    background: #1a4d2e;
    padding: 3rem 1.5rem 1rem;
}

.footer-content {
    max-width: 1400px;
    margin: 0 auto 2rem;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 4rem;
}

.footer-col {
    text-align: left;
}

.footer-col h3 {
    color: #4ade80;
    margin-bottom: 1.5rem;
    text-align: left;
    font-size: 1.25rem;
    padding-bottom: 0.75rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-col ul {
    list-style: none;
}

.footer-col li {
    margin-bottom: 1rem;
    color: #9ca3af;
    display: flex;
    gap: 1rem;
    align-items: center;
}

#openingHours li {
    display: flex;
    justify-content: space-between;
    gap: 2rem;
    align-items: center;
    margin-bottom: 0.5rem;
}

#openingHours .day {
    font-weight: 500;
}

.footer-col a {
    color: #9ca3af;
    text-decoration: none;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.5rem;
    margin: -0.5rem;
    border-radius: 0.25rem;
}

.footer-col a:hover {
    color: #fcd34d;
    background: rgba(255, 255, 255, 0.05);
}

.footer-col a:active {
    background: rgba(255, 255, 255, 0.1);
    transform: scale(0.98);
}

.social {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.social-link {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: #9ca3af;
    text-decoration: none;
    transition: all 0.2s ease;
    padding: 0.5rem;
    border-radius: 0.25rem;
}

.social-link:hover {
    color: #fcd34d;
    background: rgba(255, 255, 255, 0.05);
}

.social-link:active {
    background: rgba(255, 255, 255, 0.1);
    transform: scale(0.98);
}

.social-link svg {
    width: 24px;
    height: 24px;
}

@media (max-width: 768px) {
    .footer-content {
        grid-template-columns: 1fr;
    }
    
    .footer-col {
        padding: 1rem;
    }
    
    #openingHours li {
        grid-template-columns: 100px 1fr;
    }
}

.footer-bottom {
    padding-top: 2rem;
    border-top: 1px solid rgba(255,255,255,0.1);
    color: #9ca3af;
    max-width: 1400px;
    margin: 0 auto;
}

/* Responsive */
@media (min-width: 768px) and (max-width: 1023px) {
    .slide {
        height: 450px;
    }
}

@media (min-width: 1024px) {
    .slide {
        height: 500px;
    }
    
    .slide-title {
        font-size: 1.5rem;
    }
    
    .slide-price {
        font-size: 1.25rem;
    }
}

@media (min-width: 1200px) {
    .slide {
        height: 600px;
    }
    
    .slide-title {
        font-size: 1.75rem;
    }
    
    .slide-price {
        font-size: 1.5rem;
    }
}

/* Tablet/iPad View */
@media (max-width: 1024px) {
    .footer-content {
        gap: 2rem;
    }
}

/* Mobile View */
@media (max-width: 768px) {
    .navbar {
        padding: 0.25rem 1rem;
    }

    .nav-container {
        min-height: 50px;
    }

    .logo-img {
        height: 45px;
    }

    .nav-buttons {
        gap: 0.25rem;
    }

    .btn-order {
        padding: 0.4rem 0.75rem;
        font-size: 0.8rem;
    }

    .hero h1 {
        font-size: 2.5rem;
    }

    .slide {
        height: 350px;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: stretch;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .footer-col {
        padding: 0 1rem;
    }

    .footer-col a {
        padding: 0.75rem;
        margin: -0.75rem;
    }

    .social {
        gap: 0.75rem;
    }

    .social-link {
        padding: 0.75rem;
    }
}