/* CSS Reset & General */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
}

body {
    font-family: 'Montserrat', sans-serif;
    background-color: #ffffff;
    color: #333;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

a {
    text-decoration: none;
    color: inherit;
}

/* --- Animations --- */
@keyframes fadeInUp {
    0% { opacity: 0; transform: translateY(40px); }
    100% { opacity: 1; transform: translateY(0); }
}

@keyframes pulseGlow {
    0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7); }
    70% { box-shadow: 0 0 0 15px rgba(37, 211, 102, 0); }
    100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}

.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* --- Top Bar --- */
.top-bar {
    background-color: #0a0a0a;
    color: #eeeeee;
    font-size: 10px;
    letter-spacing: 1.5px;
    padding: 10px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    text-transform: uppercase;
    position: relative;
    z-index: 20;
}

.top-bar-left {
    display: flex;
    align-items: center;
    gap: 25px;
    flex-wrap: wrap;
}

.top-bar-left i {
    margin-right: 6px;
    color: #d4af37;
}

/* --- Glassmorphism Navigation --- */
.navbar-wrapper {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(255,255,255,0.3);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
    transition: all 0.3s ease;
}

.navbar {
    padding: 15px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1600px;
    margin: 0 auto;
    position: relative;
}

.nav-group {
    display: flex;
    align-items: center;
    flex: 1;
}

.nav-group.left { justify-content: flex-start; }
.nav-group.right { justify-content: flex-end; gap: 30px; }

.nav-links {
    list-style: none;
    display: flex;
    gap: 25px;
    font-size: 11px;
    letter-spacing: 2px;
    font-weight: 500;
}

.nav-links li a {
    position: relative;
    padding-bottom: 5px;
    transition: color 0.3s ease;
}

.nav-links li a:hover { color: #d4af37; }

.nav-links li a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 1px;
    bottom: 0;
    left: 0;
    background-color: #d4af37;
    transition: width 0.3s ease;
}

.nav-links li a:hover::after,
.nav-links li a.active::after {
    width: 100%;
}

/* Brand Logo */
.brand-logo {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 0 10px;
    flex: 0 0 auto;
    z-index: 1002;
}

.brand-logo h1 {
    font-weight: 400;
    font-size: 19px;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: #111;
}

.brand-logo span {
    font-size: 9px;
    letter-spacing: 8px;
    margin-top: 6px;
    color: #777;
}

/* Modern Button */
.btn-reserve {
    border: 1px solid #111;
    background: transparent;
    color: #111;
    padding: 12px 28px;
    font-size: 11px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    transition: color 0.4s ease;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    white-space: nowrap;
}

.btn-reserve::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: #111;
    transition: left 0.4s ease;
    z-index: -1;
}

.btn-reserve:hover::before { left: 0; }
.btn-reserve:hover { color: #fff; border-color: #111; }

/* --- Hamburger Menu (Mobile) --- */
.hamburger {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 26px;
    height: 18px;
    cursor: pointer;
    z-index: 1002;
}

.hamburger span {
    display: block;
    height: 2px;
    width: 100%;
    background-color: #111;
    transition: all 0.3s ease;
    border-radius: 2px;
}

.hamburger.active span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
    transform: translateX(15px);
}

.hamburger.active span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}

/* --- Mobile Full Screen Menu --- */
.mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    height: 100vh;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    z-index: 1001;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transition: right 0.6s cubic-bezier(0.77, 0, 0.175, 1);
}

.mobile-menu.active {
    right: 0;
}

.mobile-nav-links {
    list-style: none;
    text-align: center;
    margin-bottom: 40px;
}

.mobile-nav-links li {
    margin: 25px 0;
    overflow: hidden;
}

.mobile-nav-links li a {
    display: inline-block;
    font-size: 16px;
    font-weight: 500;
    letter-spacing: 4px;
    color: #111;
    text-transform: uppercase;
    transform: translateY(100%);
    opacity: 0;
    transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.mobile-menu.active .mobile-nav-links li a {
    transform: translateY(0);
    opacity: 1;
}

/* Staggered animation for mobile menu links */
.mobile-menu.active .mobile-nav-links li:nth-child(1) a { transition-delay: 0.2s; }
.mobile-menu.active .mobile-nav-links li:nth-child(2) a { transition-delay: 0.3s; }
.mobile-menu.active .mobile-nav-links li:nth-child(3) a { transition-delay: 0.4s; }
.mobile-menu.active .mobile-nav-links li:nth-child(4) a { transition-delay: 0.5s; }
.mobile-menu.active .mobile-nav-links li:nth-child(5) a { transition-delay: 0.6s; }
.mobile-menu.active .mobile-nav-links li:nth-child(6) a { transition-delay: 0.7s; }
.mobile-menu.active .mobile-nav-links li:nth-child(7) a { transition-delay: 0.8s; }

.mobile-nav-links li a:hover,
.mobile-nav-links li a.active {
    color: #d4af37;
}

.mobile-menu .btn-reserve {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.5s ease;
}

.mobile-menu.active .btn-reserve {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.9s;
}

/* --- Menu Page Header --- */
.page-header {
    position: relative;
    height: 40vh;
    min-height: 300px;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

.page-header-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

.page-header-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.7));
    z-index: 2;
}

.page-header-content {
    position: relative;
    z-index: 3;
    text-align: center;
    color: #fff;
    animation: fadeInUp 1s ease-out;
}

.page-header-content h2 {
    font-size: 40px;
    font-weight: 500;
    letter-spacing: 6px;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.page-header-content p {
    font-family: 'Great Vibes', cursive;
    font-size: 30px;
    color: #d4af37;
}

/* --- Menu Layout Layout --- */
.menu-wrapper {
    max-width: 1400px;
    margin: 0 auto;
    padding: 60px 40px;
    display: flex;
    gap: 60px;
    align-items: flex-start;
}

/* Sticky Category Navigation */
.menu-sidebar {
    width: 260px;
    position: sticky;
    top: 120px; /* Offset for navbar */
    flex-shrink: 0;
    background: #faf9f6;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.03);
}

.menu-sidebar h3 {
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 2px;
    margin-bottom: 25px;
    text-transform: uppercase;
    border-bottom: 2px solid #d4af37;
    padding-bottom: 10px;
    display: inline-block;
}

.category-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.category-links a {
    font-size: 12px;
    font-weight: 500;
    color: #555;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
}

.category-links a::before {
    content: '•';
    color: #d4af37;
    margin-right: 10px;
    opacity: 0;
    transform: translateX(-10px);
    transition: all 0.3s ease;
}

.category-links a:hover, .category-links a.active {
    color: #111;
    font-weight: 600;
}

.category-links a:hover::before, .category-links a.active::before {
    opacity: 1;
    transform: translateX(0);
}

/* Menu Content Area */
.menu-content {
    flex: 1;
}

.menu-category {
    margin-bottom: 70px;
    /* Scroll offset so navbar doesn't cover title */
    scroll-margin-top: 100px; 
}

.menu-category-header {
    margin-bottom: 30px;
    padding-bottom: 15px;
    border-bottom: 1px solid #eee;
    display: flex;
    align-items: baseline;
    gap: 15px;
}

.menu-category-header h2 {
    font-size: 28px;
    font-weight: 500;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: #111;
}

.menu-category-header span {
    font-family: 'Great Vibes', cursive;
    font-size: 22px;
    color: #d4af37;
}

.menu-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 25px 50px;
}

.menu-item {
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease;
}

.menu-item:hover {
    transform: translateX(5px);
}

.menu-item-header {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    margin-bottom: 5px;
}

.menu-item-name {
    font-size: 14px;
    font-weight: 600;
    color: #222;
    text-transform: uppercase;
    letter-spacing: 1px;
    background: #fff;
    padding-right: 10px;
    z-index: 2;
}

.menu-item-dots {
    flex: 1;
    border-bottom: 1px dotted #ccc;
    margin: 0 10px;
    position: relative;
    top: -4px;
    z-index: 1;
}

.menu-item-price {
    font-size: 14px;
    font-weight: 600;
    color: #d4af37;
    background: #fff;
    padding-left: 10px;
    z-index: 2;
    white-space: nowrap;
}

/* --- Footer --- */
.site-footer {
    background-color: #050505;
    color: #aaaaaa;
    padding: 80px 40px 30px;
    font-size: 11px;
    line-height: 1.8;
}

.footer-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 40px;
}

.footer-col { flex: 1; min-width: 220px; }
.footer-col.brand { flex: 1.5; }

.footer-col h4 {
    color: #ffffff;
    font-size: 11px;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 25px;
    font-weight: 600;
}

.footer-logo {
    font-family: 'Montserrat', sans-serif;
    font-size: 18px;
    font-weight: 300;
    letter-spacing: 4px;
    color: #ffffff;
    margin-bottom: 20px;
    display: inline-block;
    text-transform: uppercase;
}

.footer-logo span {
    display: block;
    font-size: 8px;
    letter-spacing: 6px;
    margin-top: 5px;
    color: #777;
    text-align: center;
}

.footer-col p { margin-bottom: 15px; }
.footer-links { list-style: none; }
.footer-links li { margin-bottom: 12px; }
.footer-links a {
    transition: color 0.3s ease;
    text-transform: uppercase;
    font-size: 10px;
    letter-spacing: 1px;
}

.footer-links a:hover { color: #d4af37; }

.footer-socials {
    display: flex;
    gap: 15px;
    margin-bottom: 30px;
    font-size: 16px;
    color: #ffffff;
}

.footer-socials a { transition: color 0.3s ease; }
.footer-socials a:hover { color: #d4af37; }

.newsletter-form {
    display: flex;
    margin-top: 15px;
    border-bottom: 1px solid #444;
    padding-bottom: 5px;
}

.newsletter-input {
    flex: 1;
    padding: 8px 0;
    background: transparent;
    border: none;
    color: #ffffff;
    font-size: 11px;
    outline: none;
    font-family: 'Montserrat', sans-serif;
}

.newsletter-input::placeholder { color: #777; }

.newsletter-btn {
    background: transparent;
    color: #ffffff;
    border: none;
    font-size: 12px;
    cursor: pointer;
    padding: 0 10px;
    transition: color 0.3s ease;
}

.newsletter-btn:hover { color: #d4af37; }

.footer-bottom {
    border-top: 1px solid #1a1a1a;
    max-width: 1400px;
    margin: 60px auto 0;
    padding-top: 25px;
    text-align: center;
    font-size: 9px;
    letter-spacing: 1.5px;
    color: #555;
    text-transform: uppercase;
}

/* --- Floating Widgets --- */
.whatsapp-widget {
    position: fixed; 
    bottom: 30px;
    right: 30px;
    background-color: #25D366;
    color: white;
    width: 55px;
    height: 55px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 30px;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
    cursor: pointer;
    z-index: 90;
    transition: transform 0.3s ease;
    animation: pulseGlow 2s infinite;
}

.language-selector {
    position: fixed;
    bottom: 30px;
    left: 30px;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(8px);
    padding: 10px 18px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 11px;
    font-weight: 600;
    border-radius: 30px;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(0,0,0,0.15);
    z-index: 90;
    transition: all 0.3s ease;
    color: #333;
}

/* --- Super Mobile Responsiveness --- */
@media (max-width: 1200px) {
    .nav-group { display: none; }
    .navbar { justify-content: center; position: relative; }
    .brand-logo { margin: 0 auto; z-index: 1002; }
    .hamburger { display: flex; position: absolute; right: 40px; }
}

@media (max-width: 900px) {
    .menu-wrapper { flex-direction: column; padding: 40px 20px; gap: 30px; }
    
    /* Transform Sidebar into horizontal scroll menu */
    .menu-sidebar {
        width: 100%;
        position: sticky;
        top: 75px; 
        padding: 15px 20px;
        z-index: 90;
        box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    }
    .menu-sidebar h3 { display: none; } /* Hide title on mobile */
    .category-links {
        flex-direction: row;
        overflow-x: auto;
        gap: 20px;
        padding-bottom: 5px;
        /* Hide scrollbar */
        -ms-overflow-style: none;  
        scrollbar-width: none;  
    }
    .category-links::-webkit-scrollbar { display: none; }
    .category-links a { white-space: nowrap; font-size: 11px; }
    .category-links a::before { display: none; }
    
    .menu-category-header h2 { font-size: 24px; }
    .menu-category-header span { font-size: 18px; }
}

@media (max-width: 768px) {
    .top-bar { flex-direction: column; gap: 8px; text-align: center; padding: 10px 15px; }
    .top-bar-left { justify-content: center; gap: 10px; }
    .top-bar-left span { display: block; }

    .navbar { padding: 12px 20px; }
    .hamburger { right: 20px; }
    .brand-logo h1 { font-size: 16px; letter-spacing: 2px; }
    .brand-logo span { font-size: 8px; letter-spacing: 5px; }

    .page-header { height: 30vh; min-height: 250px; }
    .page-header-content h2 { font-size: 30px; }

    .menu-grid { grid-template-columns: 1fr; gap: 20px; }

    .site-footer { padding: 60px 20px 30px; text-align: center; }
    .footer-col { min-width: 100%; align-items: center; display: flex; flex-direction: column;}
    .footer-socials { justify-content: center; }
    .newsletter-form { width: 100%; max-width: 300px; margin: 15px auto 0; }

    .whatsapp-widget { width: 48px; height: 48px; font-size: 26px; bottom: 20px; right: 20px; }
    .language-selector { padding: 8px 14px; font-size: 10px; bottom: 25px; left: 20px; }
}

@media (max-width: 480px) {
    .top-bar-left { flex-direction: column; gap: 5px; }
    .mobile-nav-links li a { font-size: 14px; letter-spacing: 3px; }
}