
* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    background-color: #1a1a1a; /* Dark background for the page */
    font-family: 'Roboto', sans-serif;
    color: #ffffff;
    margin: 0;
    padding: 0;
    min-height: 100vh;
    scroll-behavior: smooth; /* Enable smooth scrolling */
}

.menu-container {
    background-color: #2b2b2b; /* Slightly lighter background for the menu */
    width: 100%;
    min-height: 100vh;
    padding: 80px 20px 20px; /* Top padding for fixed navbar */
    box-shadow: none; /* Remove shadow for full screen */
}

.menu-header {
    text-align: center;
    margin-bottom: 40px;
    padding: 20px 0;
}

.menu-header h1 {
    font-family: 'Teko', sans-serif;
    font-size: clamp(2.5rem, 8vw, 5rem); /* Responsive font size */
    color: #F0CB03;
    margin: 0;
    line-height: 1;
}

.menu-header p {
    color: #ffffff;
    margin: 10px 0 0 0;
    font-size: clamp(0.8rem, 2.5vw, 1rem); /* Responsive font size */
    letter-spacing: 2px;
}

.menu-section {
    margin-bottom: 50px;
    padding: 0 10px;
    scroll-margin-top: 80px; /* Account for fixed navbar height */
}

.menu-section h2 {
    font-family: 'Teko', sans-serif;
    color: #F0CB03;
    font-size: clamp(1.8rem, 5vw, 2.5rem); /* Responsive font size */
    margin-bottom: 25px;
    border-bottom: 2px solid #F0CB03;
    padding-bottom: 10px;
    text-align: center;
    width: 100%;
}

.menu-item {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 25px;
    padding: 15px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    border-left: 3px solid #F0CB03;
    transition: all 0.3s ease;
}

.menu-item:hover {
    background: rgba(240, 203, 3, 0.1);
    transform: translateX(5px);
}

.item-details {
    flex-grow: 1;
    padding-right: 15px;
}

.item-details h3 {
    margin: 0 0 8px 0;
    color: #ffffff;
    font-size: clamp(0.9rem, 3vw, 1.1rem); /* Responsive font size */
    font-weight: 500;
    line-height: 1.3;
}

.item-description {
    margin: 0;
    color: #a0a0a0;
    font-size: clamp(0.75rem, 2.5vw, 0.9rem); /* Responsive font size */
    line-height: 1.4;
}

.item-price {
    color: #ffffff;
    font-weight: bold;
    font-size: clamp(1rem, 3vw, 1.2rem); /* Responsive font size */
    white-space: nowrap;
}

/* Slider Styles */
.slider-container {
    margin: 30px -20px; /* Extend beyond container padding */
    position: relative;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
    border-radius: 15px;
}

.slider-wrapper {
    position: relative;
    width: 100%;
    aspect-ratio: 1; /* Make container square to match 1875x1875 images */
    height: auto;
    overflow: hidden;
}

.slider-track {
    display: flex;
    width: 100%;
    height: 100%;
    transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1); /* Smoother easing */
}

.slider-slide {
    min-width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #1a1a1a; /* Dark background for letterboxing */
}

.slider-slide img {
    width: 100%;
    height: 100%;
    object-fit: contain; /* Show full image while maintaining aspect ratio */
    display: block;
    object-position: center; /* Center the image within the container */
}

/* Slide indicators */
.slider-indicators {
    position: absolute;
    bottom: 15px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
    z-index: 10;
}

.slider-indicator {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.slider-indicator.active {
    background-color: #F0CB03;
}

.slider-indicator:hover {
    background-color: rgba(255, 255, 255, 0.8);
}

/* Traditional Navbar */
.main-navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(20px);
    border-bottom: 2px solid rgba(240, 203, 3, 0.3);
    z-index: 1000;
    transition: all 0.3s ease;
}

.navbar-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.menu-btn {
    background: transparent;
    border: none;
    color: #ffffff;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 8px 12px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 500;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.menu-btn:hover {
    background: rgba(240, 203, 3, 0.1);
    color: #F0CB03;
}

.menu-btn .menu-icon {
    font-size: 18px;
    transition: all 0.3s ease;
}

.menu-btn .menu-text {
    transition: all 0.3s ease;
}

.menu-btn:hover .menu-icon {
    transform: scale(1.1);
}

.navbar-brand {
    font-family: 'Teko', sans-serif;
    font-size: 1.5rem;
    color: #F0CB03;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.navbar-links {
    display: none; /* Hide desktop links - use overlay navigation for all screen sizes */
}

.navbar-link {
    color: #ffffff;
    text-decoration: none;
    font-weight: 500;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 8px 16px;
    border-radius: 20px;
    transition: all 0.3s ease;
    border: 1px solid transparent;
}

.navbar-link:hover {
    background: linear-gradient(135deg, #F0CB03, #D4AF37);
    border-color: rgba(240, 203, 3, 0.5);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(240, 203, 3, 0.3);
}

.navbar-link:active {
    transform: translateY(0);
}

/* Full-Screen Navigation Overlay */
.nav-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.nav-overlay.active {
    opacity: 1;
    visibility: visible;
    background: #000000;
}

.nav-overlay-backdrop {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #000000;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.nav-overlay-content {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 20px;
    overflow-y: auto;
}


.nav-overlay-header {
    margin-bottom: 40px;
    text-align: center;
}

.nav-overlay-header h2 {
    font-family: 'Teko', sans-serif;
    font-size: clamp(1.8rem, 5vw, 3rem);
    color: #F0CB03;
    margin: 0;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.nav-overlay-nav {
    display: flex;
    flex-direction: column;
    gap: 16px;
    width: 100%;
    max-width: 400px;
    align-items: center;
}

.nav-overlay-link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 18px 24px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(240, 203, 3, 0.2);
    border-radius: 12px;
    color: #ffffff;
    text-decoration: none;
    font-weight: 500;
    font-size: clamp(16px, 4vw, 18px);
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    opacity: 0;
    transform: translateX(-30px);
    animation: slideInFromLeft 0.5s ease forwards;
    min-height: 60px;
}

@keyframes slideInFromLeft {
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.nav-overlay-link:hover {
    background: linear-gradient(135deg, rgba(240, 203, 3, 0.15), rgba(212, 175, 55, 0.15));
    border-color: #F0CB03;
    transform: translateX(8px);
    box-shadow: 0 8px 25px rgba(240, 203, 3, 0.2);
}

.nav-overlay-link .nav-link-text {
    flex-grow: 1;
}

.nav-overlay-link .nav-link-arrow {
    font-size: 18px;
    opacity: 0.7;
    transition: all 0.3s ease;
}

.nav-overlay-link:hover .nav-link-arrow {
    opacity: 1;
    transform: translateX(5px);
}

/* Mobile responsive adjustments */
@media (max-width: 768px) {
    .menu-btn .menu-text {
        display: none; /* Hide "Menu" text on mobile */
    }

    .menu-btn {
        padding: 10px;
        min-width: 44px;
        min-height: 44px;
        justify-content: center;
    }

    .menu-btn .menu-icon {
        font-size: 20px;
    }


    .nav-overlay-content {
        padding: 40px 20px 20px;
    }

    .nav-overlay-nav {
        max-width: 100%;
        gap: 12px;
    }

    .nav-overlay-link {
        padding: 16px 20px;
        min-height: 56px;
    }

    .menu-container {
        padding: 80px 15px 15px; /* Account for navbar height */
    }

    .menu-header {
        margin-bottom: 30px;
        padding: 15px 0;
    }

    .menu-section {
        margin-bottom: 40px;
        padding: 0 5px;
        scroll-margin-top: 80px; /* Account for fixed navbar height on mobile */
    }

    .menu-item {
        margin-bottom: 20px;
        padding: 12px;
    }

    .slider-container {
        margin: 25px -15px;
        border-radius: 12px;
    }

}

@media (max-width: 480px) {
    .navbar-container {
        padding: 10px 15px;
    }

    .navbar-brand {
        font-size: 1.2rem;
    }

    .menu-container {
        padding: 70px 10px 10px; /* Account for smaller navbar height */
    }

    .menu-header {
        margin-bottom: 25px;
        padding: 10px 0;
    }

    .menu-section {
        margin-bottom: 35px;
        padding: 0;
    }

    .menu-item {
        margin-bottom: 15px;
        padding: 10px;
        border-radius: 8px;
    }

    .item-details {
        padding-right: 10px;
    }

    .slider-container {
        margin: 20px -10px;
        border-radius: 10px;
    }

}

/* Large screens optimization */
@media (min-width: 1200px) {
    .menu-container {
        max-width: 1000px;
        margin: 0 auto;
        padding: 40px;
    }

    .menu-section {
        padding: 0 20px;
    }

    .slider-container {
        margin: 40px -40px;
    }
}

