/* ===== RESET & BASE STYLES ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: "Open Sans", Arial, sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

 /* ===== ENHANCED NAVIGATION ===== */
        .navbar {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            z-index: 1000;
            padding: 20px 0;
            background-color: #C6A663;
            backdrop-filter: blur(10px);
            border-bottom: 1px solid rgba(0, 0, 0, 0.15);
        }

        .navbar.scrolled {
            padding: 10px 0;
            background-color: #C6A663;
        }

        .nav-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .logo {
            display: flex;
            align-items: center;
            text-decoration: none;
        }

        .logo img {
            height: 50px;
            width: auto;
            display: block;
            transition: all 0.3s ease;
        }

        /* Desktop Navigation */
        .nav-menu {
            display: flex;
            gap: 30px;
        }

        .nav-link {
            color: red;
            text-transform: uppercase;
            text-decoration: none;
            font-weight: 600;
            font-size: 0.9rem;
            letter-spacing: 1px;
            transition: all 0.3s ease;
            position: relative;
            padding: 5px 0;
        }

        .nav-link:hover,
        .nav-link.active {
            color: #ffffff; 
        }

        .nav-link::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 2px;
            background-color: #d43737; /* underline */
            transition: all 0.3s ease;
        }

        .nav-link:hover::after,
        .nav-link.active::after {
            width: 100%;
        }

        /* Hamburger Menu Button */
        .hamburger-btn {
            display: none;
            background: none;
            border: none;
            cursor: pointer;
            padding: 10px;
            z-index: 1001;
            flex-direction: column;
            justify-content: space-between;
            width: 30px;
            height: 25px;
        }

        .hamburger-line {
            width: 100%;
            height: 3px;
            background-color: #000000;
            border-radius: 2px;
            transition: all 0.3s ease;
        }

        /* Mobile Navigation */
        @media (max-width: 768px) {
            body {
                padding-top: 70px;
            }
            
            .navbar {
                padding: 12px 0;
            }
            
            .logo img {
                height: 35px;
            }
            
            /* Hide desktop menu, show hamburger */
            .nav-menu {
                position: fixed;
                top: 0;
                left: -100%;
                width: 80%;
                max-width: 300px;
                height: 100vh;
                background-color: #ffffff; /* White background for mobile menu */
                flex-direction: column;
                justify-content: flex-start;
                align-items: flex-start;
                padding: 80px 30px 30px;
                transition: left 0.4s ease;
                box-shadow: 5px 0 15px rgba(0, 0, 0, 0.1);
                overflow-y: auto;
                gap: 0;
                z-index: 1000;
            }
            
            .nav-menu.active {
                left: 0;
            }
            
            .nav-link {
                width: 100%;
                padding: 15px 0;
                font-size: 1.1rem;
                border-bottom: 1px solid rgba(0, 0, 0, 0.1);
                color: #000; /* Black text for mobile links */
                text-transform: uppercase;
            }
            
            
            /* Keep mobile labels black for all states */
            .nav-link:hover,
            .nav-link.active {
                color: #000;
            }
            .nav-link:last-child {
                border-bottom: none;
            }
            
            .nav-link:hover::after,
            .nav-link.active::after {
                width: 40px; /* Shorter underline on mobile */
                background-color: #000; /* Black underline */
            }
            
            .hamburger-btn {
                display: flex;
            }
            
            /* Overlay when menu is open */
            .nav-overlay {
                display: none;
                position: fixed;
                top: 0;
                left: 0;
                width: 100%;
                height: 100%;
                background-color: rgba(0, 0, 0, 0.5);
                z-index: 999;
            }
            
            .nav-overlay.active {
                display: block;
            }
            
            /* Hamburger animation */
            .hamburger-btn.active .hamburger-line:nth-child(1) {
                transform: rotate(45deg) translate(6px, 6px);
            }
            
            .hamburger-btn.active .hamburger-line:nth-child(2) {
                opacity: 0;
            }
            
            .hamburger-btn.active .hamburger-line:nth-child(3) {
                transform: rotate(-45deg) translate(7px, -7px);
            }
        }

        /* Tablet adjustments */
        @media (max-width: 992px) and (min-width: 769px) {
            .nav-menu {
                gap: 20px;
            }
            
            .nav-link {
                font-size: 0.85rem;
                color: #000; /* Black text for tablet */
            }
        }


/* ===== HERO SECTION ===== */
.hero-section {
    position: relative;
    width: 100%;
    height: 100vh;
    min-height: 700px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 80px; /* Offset for fixed nav */
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    z-index: 1;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(129, 127, 127, 0.377);
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 3;
    text-align: center;
    color: white;
    padding: 20px;
}

.hero-title {
    font-family: "Playfair Display", serif;
    font-size: 60px;
    font-weight: 700;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.hero-subtitle {
    font-size: 24px;
    font-weight: 300;
    margin-bottom: 30px;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.hero-slant {
    position: absolute;
    bottom: -50px;
    left: -5%;
    width: 110%;
    height: 100px;
    background: white;
    transform: rotate(-3deg);
    z-index: 4;
}

/* ===== MENU SECTION ===== */
.menu-section {
    position: relative;
    padding: 100px 0;
    background: #f8f9fa;
    z-index: 5;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-title {
    font-family: "Playfair Display", serif;
    font-size: 48px;
    color: #000000;
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 2px;
    background: #d4af37;
}

.section-subtitle {
    font-size: 18px;
    color: #666;
    max-width: 600px;
    margin: 20px auto 0px;
}

.menu-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 50px;
    flex-wrap: wrap;
}

.menu-btn {
    display: inline-block;
    padding: 15px 35px;
    background: transparent;
    color: #d4af37;
    border: 2px solid #d4af37;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    border-radius: 0;
}

.menu-btn:hover {
    background: #d4af37;
    color: white;
}

/* Menu Tabs */
.menu-tabs {
    max-width: 800px;
    margin: 0 auto;
}

.tab-buttons {
    display: flex;
    justify-content: center;
    margin-bottom: 40px;
    border-bottom: 2px solid #eee;
    padding-bottom: 10px;
}

.tab-btn {
    background: none;
    border: none;
    padding: 10px 25px;
    font-size: 16px;
    font-weight: 600;
    color: #666;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    margin: 0 10px;
}

.tab-btn.active {
    color: #d4af37;
}

.tab-btn.active::after {
    content: '';
    position: absolute;
    bottom: -12px;
    left: 0;
    width: 100%;
    height: 2px;
    background: #d4af37;
}

/* Menu Items */
.tab-content {
    display: none;
}

.tab-content.active {
    display: block;
    animation: fadeIn 0.5s ease;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.menu-item {
    display: flex;
    align-items: flex-start;
    padding: 25px 0;
    border-bottom: 1px dashed #ddd;
    gap: 20px;
}

.menu-item-image {
    flex-shrink: 0;
}

.menu-item-image img {
    width: 100px;
    height: 100px;
    object-fit: cover;
    border-radius: 8px;
}

.menu-item-content {
    flex: 1;
}

.menu-item-content h3 {
    font-family: "Playfair Display", serif;
    font-size: 20px;
    color: #000;
    margin-bottom: 8px;
}

.menu-item-content p {
    color: #666;
    font-size: 15px;
    line-height: 1.5;
}

.menu-item-price {
    flex-shrink: 0;
}

.menu-item-price strong {
    font-size: 20px;
    color: #d4af37;
    font-weight: 600;
}

/* ===== RESERVATION SECTION ===== */
.reservation-section {
    padding: 100px 0;
    background: white;
}

.reservation-form {
    max-width: 800px;
    margin: 0 auto;
    padding: 40px;
    background: white;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
}

.form-row {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 25px;
}

.form-group {
    flex: 1;
    min-width: 250px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: #333;
}

.form-control {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid #ddd;
    border-radius: 5px;
    font-size: 16px;
    transition: all 0.3s ease;
}

.form-control:focus {
    outline: none;
    border-color: #d4af37;
    box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.1);
}

.form-submit {
    text-align: center;
    margin-top: 40px;
}

.submit-btn {
    background: #d4af37;
    color: white;
    border: none;
    padding: 15px 40px;
    font-size: 16px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s ease;
    border-radius: 5px;
}

.submit-btn:hover {
    background: #b8941f;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(212, 175, 55, 0.3);
}

/* Footer */
      .footer {
        background-color: var(--gray-dark);
        padding: 3rem 2rem;
        border-top: 2px solid var(--orange);
        text-align: center;
        margin-top: 4rem;
      }
      
      .footer-logo {
        height: 70px;
        margin-bottom: 1.5rem;
        opacity: 0.9;
      }
      
      .footer-text {
        color: var(--gray-text);
        font-size: 1rem;
        max-width: 600px;
        margin: 0 auto 2rem;
      }
      
      .social-links {
        display: flex;
        justify-content: center;
        gap: 1.5rem;
        margin-top: 2rem;
      }
      
      .social-icon {
        color: var(--gray-text);
        font-size: 1.5rem;
        transition: color 0.3s ease;
      }
      
      .social-icon:hover {
        color: var(--orange);
      }

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 992px) {
    .hero-title {
        font-size: 48px;
    }
    
    .hero-subtitle {
        font-size: 20px;
    }
    
    .section-title {
        font-size: 36px;
    }
    
    .menu-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .menu-btn {
        width: 100%;
        max-width: 300px;
        text-align: center;
    }
}

@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        top: 80px;
        left: 0;
        width: 100%;
        background: white;
        flex-direction: column;
        padding: 20px;
        box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
        transform: translateY(-100%);
        opacity: 0;
        transition: all 0.3s ease;
        z-index: 999;
    }
    
    .nav-menu.active {
        transform: translateY(0);
        opacity: 1;
    }
    
    .mobile-menu-btn {
        display: flex;
    }
    
    .hero-section {
        height: 70vh;
        min-height: 500px;
        margin-top: 70px;
    }
    
    .hero-title {
        font-size: 36px;
    }
    
    .hero-subtitle {
        font-size: 18px;
    }
    
    .menu-item {
        flex-direction: column;
        text-align: center;
    }
    
    .menu-item-image img {
        width: 100%;
        max-width: 200px;
        height: 150px;
    }
    
    .menu-item-price {
        margin-top: 10px;
    }
    
    .reservation-form {
        padding: 20px;
    }
    
    .tab-buttons {
        flex-direction: column;
        gap: 10px;
    }
    
    .tab-btn {
        margin: 0;
    }
    
    .tab-btn.active::after {
        bottom: -5px;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 28px;
    }
    
    .section-title {
        font-size: 28px;
    }
    
    .menu-item-content h3 {
        font-size: 18px;
    }
    
    .form-row {
        flex-direction: column;
    }
    
    .form-group {
        min-width: 100%;
    }
}