/* =========================================
   VARIABLES & SETUP (LUXURY MIDNIGHT & GOLD)
   ========================================= */
:root {
    /* Luxury Midnight & Gold Theme */
    --clr-bg-base: #0B0C10;     /* Deep Midnight Navy */
    --clr-bg-main: #0B0C10;     /* Alias for bg-base */
    --clr-bg: #0B0C10;          /* Alias for bg-base */
    --clr-bg-light: #1A1D26;    /* Elevated surface */
    --clr-bg-card: #14161C;     /* Card surface */
    --clr-text-main: #F3F3F5;   /* Crisp off-white */
    --clr-text-muted: #9A9FA8;  /* Elegant grey */
    --clr-accent: #D4AF37;      /* Metallic Gold/Bronze */
    --clr-primary: #D4AF37;     /* Alias for accent */
    --clr-accent-hover: #F8D153;/* Bright Gold */
    --clr-border: rgba(212, 175, 55, 0.2); /* Subtle gold border */

    /* Fonts */
    --font-heading: 'Cormorant Garamond', serif;
    --ff-heading: 'Cormorant Garamond', serif;
    --font-body: 'Outfit', sans-serif;
    --ff-body: 'Outfit', sans-serif;

    /* Spacing */
    --spacing-sm: 1rem;
    --spacing-md: 2rem;
    --spacing-lg: 4rem;
    --spacing-xl: 8rem;

    /* Transitions */
    --trans-fast: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --trans-slow: 1.2s cubic-bezier(0.16, 1, 0.3, 1);
}

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    background-color: var(--clr-bg-base);
    color: var(--clr-text-main);
    font-family: var(--font-body);
    line-height: 1.6;
    overflow-x: hidden;
    width: 100%;
}

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

/* =========================================
   TYPOGRAPHY
   ========================================= */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 500;
    line-height: 1.2;
    color: var(--clr-text-main);
}

.section-padding {
    padding: var(--spacing-xl) 0;
}

.section-title {
    font-size: 3rem;
    text-align: center;
    margin-bottom: 0.5rem;
    letter-spacing: 2px;
    color: var(--clr-accent);
}

.section-subtitle {
    font-size: 1.1rem;
    text-align: center;
    color: var(--clr-text-muted);
    text-transform: uppercase;
    letter-spacing: 4px;
    margin-bottom: var(--spacing-lg);
    font-family: var(--font-body);
}

/* =========================================
   BUTTONS (MAGNETIC WOW EFFECT)
   ========================================= */
.btn {
    display: inline-block;
    padding: 1.1rem 2.5rem;
    font-family: var(--font-body);
    font-size: 0.92rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-decoration: none;
    border: 1px solid transparent;
    cursor: pointer;
    transition: all var(--trans-fast);
    border-radius: 50px;
    text-align: center;
    position: relative;
    overflow: hidden;
    z-index: 1;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.btn::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: 0.6s ease;
    z-index: -1;
}

.btn:hover {
    transform: translateY(-3px) scale(1.02);
}

.btn:hover::after {
    left: 100%;
}

.btn-primary {
    background: linear-gradient(135deg, var(--clr-accent) 0%, #AA8529 100%);
    color: #0B0C10;
    font-weight: 700;
    box-shadow: 0 6px 20px rgba(212, 175, 55, 0.3);
}

.btn-primary:hover {
    background: linear-gradient(135deg, #F8D153 0%, var(--clr-accent) 100%);
    color: #000;
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.6);
}

.btn-outline {
    background: rgba(212, 175, 55, 0.05);
    border: 1.5px solid var(--clr-accent);
    color: var(--clr-accent);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
}

.btn-outline:hover {
    background: var(--clr-accent);
    color: #0B0C10;
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.4);
}

.btn-block {
    width: 100%;
}

/* =========================================
   HEADER & NAVIGATION
   ========================================= */
#header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 100;
    background-color: rgba(11, 12, 16, 0.85);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border-bottom: 1px solid rgba(255,255,255,0.05);
    transition: var(--trans-fast);
    padding: 1.8rem 0;
}

#header.scrolled {
    padding: 1rem 0;
    background-color: rgba(11, 12, 16, 0.98);
    border-bottom: 1px solid var(--clr-border);
}

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

.logo {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    color: var(--clr-text-main);
    text-decoration: none;
    letter-spacing: 5px;
    font-weight: 600;
    text-shadow: 0 0 10px rgba(255,255,255,0.1);
}

.desktop-nav {
    display: flex;
    align-items: center;
    gap: 3.5rem;
}

/* Animated Underline WOW effect */
.desktop-nav .nav-link {
    color: var(--clr-text-main);
    text-decoration: none;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    transition: color var(--trans-fast);
    position: relative;
    padding-bottom: 5px;
}

.desktop-nav .nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0%;
    height: 1px;
    background-color: var(--clr-accent);
    transition: width 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.desktop-nav .nav-link:hover {
    color: var(--clr-accent);
}

.desktop-nav .nav-link:hover::after,
.desktop-nav .nav-link.active::after {
    width: 100%;
}
.desktop-nav .nav-link.active {
    color: var(--clr-accent);
}

.lang-switcher {
    display: flex;
    gap: 0.8rem;
    margin-left: 1rem;
    padding-left: 1rem;
    border-left: 1px solid rgba(255,255,255,0.1);
}

.lang-switcher a {
    color: var(--clr-text-muted);
    text-decoration: none;
    font-size: 0.8rem;
    padding: 0.3rem 0.6rem;
    transition: var(--trans-fast);
    border-radius: 4px;
}

.lang-switcher a:hover {
    color: var(--clr-text-main);
    background: rgba(255,255,255,0.05);
}

.lang-switcher a.active {
    color: var(--clr-bg-base);
    background: var(--clr-accent);
    font-weight: 600;
}

/* Mobile Nav - Smooth & Safe */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 6px;
    background: none;
    border: none;
    cursor: pointer;
    z-index: 102;
    padding: 10px;
}

.hamburger span {
    width: 28px;
    height: 2.5px;
    background-color: var(--clr-text-main);
    transition: var(--trans-fast);
    border-radius: 2px;
}

.hamburger.active span:nth-child(1) { transform: translateY(8.5px) rotate(45deg); background-color: var(--clr-accent); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: translateY(-8.5px) rotate(-45deg); background-color: var(--clr-accent); }

.mobile-nav {
    position: fixed;
    top: 0;
    right: 0;
    width: 100%;
    height: 100vh;
    height: 100dvh;
    background-color: rgba(11, 12, 16, 0.98);
    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 1.8rem;
    padding: 5rem 1.5rem 3rem;
    transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.5s ease;
    z-index: 101;
    transform: translateX(100%);
    opacity: 0;
    pointer-events: none;
    overflow-y: auto;
}

.mobile-nav.open {
    transform: translateX(0);
    opacity: 1;
    pointer-events: auto;
}

.mobile-top-actions {
    display: flex;
    justify-content: center;
    width: 100%;
    margin-bottom: 0.5rem;
}

.lang-switcher-mobile {
    display: flex;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.05);
    padding: 0.4rem 0.8rem;
    border-radius: 30px;
    border: 1px solid rgba(212, 175, 55, 0.25);
}

.lang-switcher-mobile a {
    color: var(--clr-text-muted);
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 600;
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    transition: var(--trans-fast);
}

.lang-switcher-mobile a.active,
.lang-switcher-mobile a:hover {
    color: var(--clr-bg-base);
    background: var(--clr-accent);
}

.mobile-nav .nav-link {
    font-size: clamp(1.6rem, 5vw, 2.2rem);
    font-family: var(--font-heading);
    color: var(--clr-text-main);
    text-decoration: none;
    letter-spacing: 2px;
    transition: all 0.3s ease;
}

.mobile-nav .nav-link:hover {
    color: var(--clr-accent);
    transform: translateX(8px);
}

/* =========================================
   HERO SECTION
   ========================================= */
.hero-carousel-section {
    position: relative;
    height: 100vh;
    min-height: 500px;
    width: 100%;
    overflow: hidden;
}

.heroSwiper {
    width: 100%;
    height: 100%;
}

.slide-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    z-index: -2;
    transform: scale(1.05); /* Slight scale for depth */
}

/* Subtle zooming animation for hero slides */
.swiper-slide-active .slide-bg {
    animation: slowZoom 20s linear infinite alternate;
}

@keyframes slowZoom {
    0% { transform: scale(1.05); }
    100% { transform: scale(1.15); }
}

.hero-overlay-gradient {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(11,12,16,0.3) 0%, rgba(11,12,16,1) 100%);
    z-index: -1;
}

.hero-content {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    z-index: 2;
}

.hero-title {
    font-size: clamp(3.5rem, 10vw, 7rem);
    color: #FFF;
    margin-bottom: 1rem;
    text-shadow: 0 5px 25px rgba(0,0,0,0.8);
    line-height: 1.1;
}

.hero-subtitle {
    font-size: clamp(1.2rem, 3vw, 1.8rem);
    color: var(--clr-accent);
    margin-bottom: 3.5rem;
    font-weight: 300;
    letter-spacing: 2px;
}

/* =========================================
   HIGHLIGHTS CARDS (WOW GLOW & ZOOM)
   ========================================= */
.highlights-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
    margin-top: -100px; /* Overlap hero */
    position: relative;
    z-index: 10;
}

.highlight-card {
    background: linear-gradient(145deg, rgba(20, 22, 28, 0.85), rgba(11, 12, 16, 0.95));
    border: 1px solid rgba(212, 175, 55, 0.18);
    transition: all var(--trans-fast);
    overflow: hidden;
    border-radius: 12px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.6);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}

.highlight-card:hover {
    transform: translateY(-12px);
    border-color: rgba(212, 175, 55, 0.6);
    box-shadow: 0 25px 50px rgba(0,0,0,0.8), 0 0 35px rgba(212, 175, 55, 0.25);
}

.highlight-img {
    width: 100%;
    height: 300px;
    background-size: cover;
    background-position: center;
    transition: var(--trans-slow); /* WOW Zoom effect */
}

.highlight-card:hover .highlight-img {
    transform: scale(1.1) rotate(1deg);
}

.highlight-content {
    padding: 2.5rem;
    text-align: center;
    background: var(--clr-bg-card);
    position: relative;
    z-index: 2; /* Sits above zooming image */
}

.highlight-content h4 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: var(--clr-text-main);
    transition: var(--trans-fast);
}

.highlight-card:hover .highlight-content h4 {
    color: var(--clr-accent);
}

.highlight-content p {
    color: var(--clr-text-muted);
    font-size: 1rem;
    line-height: 1.8;
}

/* =========================================
   ABOUT PREVIEW
   ========================================= */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
}

.about-text {
    padding: 2rem 0;
}

.about-text p {
    margin-bottom: 1.5rem;
    color: var(--clr-text-muted);
    font-size: 1.1rem;
}

.about-image-wrapper {
    position: relative;
    overflow: hidden;
    border-radius: 4px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.5);
}

.about-image-wrapper::before {
    content: '';
    position: absolute;
    top: -10px; right: -10px; bottom: -10px; left: -10px;
    border: 1px solid var(--clr-accent);
    z-index: -1;
    opacity: 0.3;
}

.about-image {
    width: 100%;
    aspect-ratio: 4/5;
    background-size: cover !important;
    transition: var(--trans-slow);
}

.about-image-wrapper:hover .about-image {
    transform: scale(1.05);
}

/* =========================================
   MENU LAYOUT (DOT LEADER ELEGANCE)
   ========================================= */
.menu-category-row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 5rem;
    margin-bottom: 5rem;
}

.category-title {
    font-size: 2.5rem;
    color: var(--clr-accent);
    margin-bottom: 2.5rem;
    text-align: left;
    border-bottom: 1px solid var(--clr-border);
    padding-bottom: 1.5rem;
    letter-spacing: 2px;
}

.menu-item-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.menu-item {
    padding: 1.8rem;
    border: 1px solid rgba(212, 175, 55, 0.12);
    border-radius: 8px;
    background: linear-gradient(135deg, rgba(20, 22, 28, 0.7) 0%, rgba(15, 17, 23, 0.85) 100%);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    transition: all var(--trans-fast);
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.menu-item:hover {
    background: linear-gradient(135deg, rgba(25, 28, 38, 0.85) 0%, rgba(20, 22, 28, 0.95) 100%);
    transform: translateY(-4px) translateX(6px);
    border-color: rgba(212, 175, 55, 0.45);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.6), 0 0 20px rgba(212, 175, 55, 0.12);
}

.menu-item::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 4px;
    background: var(--clr-accent);
    transform: scaleY(0);
    transition: transform var(--trans-fast);
    transform-origin: bottom;
    box-shadow: 0 0 10px var(--clr-accent);
}

.menu-item:hover::before {
    transform: scaleY(1);
}

.item-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.6rem;
}

.item-name {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    color: var(--clr-text-main);
    letter-spacing: 0.5px;
    font-weight: 600;
}

.item-price {
    font-size: 1.15rem;
    color: var(--clr-bg-base);
    font-weight: 600;
    font-family: var(--font-body);
    background: var(--clr-accent);
    padding: 0.25rem 0.9rem;
    border-radius: 20px;
    box-shadow: 0 2px 10px rgba(212, 175, 55, 0.3);
}

.item-desc {
    color: var(--clr-text-muted);
    font-size: 0.98rem;
    font-style: italic;
    line-height: 1.6;
}

/* =========================================
   HOMEPAGE MENU GRID (WOW EFFECT)
   ========================================= */
.menu-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-bottom: 3rem;
}

.menu-item-card {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.8rem;
    background: linear-gradient(135deg, rgba(20, 22, 28, 0.8) 0%, rgba(14, 16, 20, 0.9) 100%);
    border: 1px solid rgba(212, 175, 55, 0.15);
    border-radius: 8px;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    transition: all var(--trans-fast);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
}

.menu-item-card:hover {
    transform: translateY(-6px);
    border-color: rgba(212, 175, 55, 0.5);
    box-shadow: 0 15px 35px rgba(0,0,0,0.7), inset 3px 0 0 var(--clr-accent), 0 0 25px rgba(212, 175, 55, 0.15);
}

.menu-item-info {
    flex-grow: 1;
    padding-right: 1.5rem;
}

.menu-item-title {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    color: var(--clr-text-main);
    margin-bottom: 0.5rem;
    transition: color var(--trans-fast);
}

.menu-item-card:hover .menu-item-title {
    color: var(--clr-accent);
}

.menu-item-desc {
    color: var(--clr-text-muted);
    font-size: 0.95rem;
    line-height: 1.6;
}

.menu-item-price {
    font-size: 1.2rem;
    color: var(--clr-accent);
    font-weight: 500;
    font-family: var(--font-body);
    background: rgba(212, 175, 55, 0.1);
    padding: 0.3rem 1rem;
    border-radius: 20px;
    white-space: nowrap;
}

/* =========================================
   GALLERY MASONRY (MIDNIGHT & BRONZE)
   ========================================= */
.gallery-masonry {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    grid-auto-rows: 250px;
    gap: 1.5rem;
    grid-auto-flow: dense;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 4px;
    cursor: pointer;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
    transition: all var(--trans-fast);
    background: var(--clr-bg-card);
    border: 1px solid rgba(255,255,255,0.05);
}

.gallery-item.item-tall {
    grid-row: span 2;
}

.gallery-item.item-wide {
    grid-column: span 2;
}

.gallery-image {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    transition: transform var(--trans-slow);
}

.gallery-item:hover {
    box-shadow: 0 15px 40px rgba(0,0,0,0.8), 0 0 20px rgba(212, 175, 55, 0.15);
    border-color: rgba(212, 175, 55, 0.3);
    z-index: 2;
}

.gallery-item:hover .gallery-image,
.gallery-item:hover .gallery-video {
    transform: scale(1.08);
}

.gallery-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(11, 12, 16, 0.9) 0%, rgba(11, 12, 16, 0.2) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity var(--trans-fast);
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-overlay span {
    color: var(--clr-accent);
    font-family: var(--font-heading);
    font-size: 1.5rem;
    letter-spacing: 2px;
    transform: translateY(20px);
    transition: transform var(--trans-fast);
}

.gallery-item:hover .gallery-overlay span {
    transform: translateY(0);
}

/* =========================================
   FOOTER (HAUTE COUTURE)
   ========================================= */
.footer {
    background: var(--clr-bg-card);
    border-top: 1px solid rgba(212, 175, 55, 0.3) !important;
    padding: 5rem 0 2rem;
    position: relative;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--clr-accent), transparent);
    box-shadow: 0 0 10px var(--clr-accent);
}

.footer-top {
    display: grid;
    grid-template-columns: 2fr 2fr 1fr 1fr;
    gap: 4rem;
    margin-bottom: 4rem;
}

.newsletter-form {
    display: flex;
    gap: 10px;
    margin-top: 1rem;
}

.newsletter-form button {
    background: linear-gradient(135deg, var(--clr-accent), #AA8529) !important;
    color: #000 !important;
    border: none !important;
    font-weight: bold;
    letter-spacing: 1px;
    box-shadow: 0 5px 15px rgba(212, 175, 55, 0.3);
    transition: all var(--trans-fast);
}

.newsletter-form button:hover {
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.6);
    transform: translateY(-2px);
}

.newsletter-form input {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    padding: 0.8rem 1rem;
    color: var(--clr-text-main);
    border-radius: 2px;
    flex-grow: 1;
    font-family: var(--font-body);
}

.newsletter-form input:focus {
    outline: none;
    border-color: var(--clr-accent);
}

.footer-brand h2 {
    font-size: 2.5rem;
    letter-spacing: 4px;
    margin-bottom: 1.5rem;
    color: var(--clr-accent);
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}

.footer-social {
    display: flex;
    gap: 1.5rem;
}

.legal-links {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
    justify-content: center;
}

.footer-links a, .footer-social a, .legal-links a {
    color: var(--clr-text-muted);
    text-decoration: none;
    transition: var(--trans-fast);
    font-size: 1rem;
    position: relative;
    width: max-content;
}

/* Link hover animation */
.footer-links a::after, .footer-social a::after, .legal-links a::after {
    content: '';
    position: absolute;
    bottom: -3px;
    left: 0;
    width: 0%;
    height: 1px;
    background-color: var(--clr-accent);
    transition: width 0.3s ease;
}

.footer-links a:hover, .footer-social a:hover, .legal-links a:hover {
    color: var(--clr-text-main);
}
.footer-links a:hover::after, .footer-social a:hover::after, .legal-links a:hover::after {
    width: 100%;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    border-top: 1px solid rgba(255,255,255,0.05);
    padding-top: 2rem;
    font-size: 0.9rem;
    color: var(--clr-text-muted);
}

/* =========================================
   CONTACT FORM
   ========================================= */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
}

/* =========================================
   CONTACT FORM PREMIUM STYLING
   ========================================= */
.form-row {
    display: flex;
    gap: 2rem;
    margin-bottom: 1.5rem;
}

.form-group {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.form-group label {
    font-family: var(--font-heading);
    color: var(--clr-accent);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 0.5rem;
}

.form-control {
    width: 100%;
    padding: 1.2rem;
    background: rgba(20, 22, 28, 0.4);
    border: 1px solid rgba(212, 175, 55, 0.15);
    border-radius: 4px;
    color: var(--clr-text-main);
    font-family: var(--font-body);
    font-size: 1rem;
    transition: all var(--trans-fast);
}

.form-control:focus {
    outline: none;
    border-color: rgba(212, 175, 55, 0.6);
    background: rgba(20, 22, 28, 0.8);
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.15);
}

textarea.form-control {
    resize: vertical;
    min-height: 120px;
}

.form-note {
    font-size: 0.85rem;
    color: var(--clr-text-muted);
    font-style: italic;
    text-align: center;
}

/* =========================================
   FOOTER SOCIAL ICONS PREMIUM
   ========================================= */
.social-icon {
    display: flex !important;
    justify-content: center;
    align-items: center;
    width: 45px !important;
    height: 45px;
    border-radius: 50%;
    background: rgba(20, 22, 28, 0.8);
    color: var(--clr-text-muted) !important;
    font-size: 1.2rem !important;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all var(--trans-fast);
    text-decoration: none;
}

.social-icon::after {
    display: none !important;
}

.social-icon:hover {
    color: var(--clr-accent) !important;
    border-color: rgba(212, 175, 55, 0.4);
    box-shadow: 0 0 15px rgba(212, 175, 55, 0.3);
    transform: translateY(-5px);
}

/* =========================================
   SAFE & MODERN MOBILE RESPONSIVENESS
   ========================================= */
@media (max-width: 1024px) {
    .container {
        padding: 0 1.5rem;
    }
    .highlights-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    .about-grid, .contact-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    .footer-top {
        grid-template-columns: 1fr 1fr;
        gap: 2.5rem;
    }
    .hero-title {
        font-size: clamp(2.5rem, 7vw, 3.8rem);
    }
}

@media (max-width: 992px) {
    .desktop-nav {
        display: none !important;
    }
    .hamburger {
        display: flex !important;
    }
    .menu-category-row {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
}

@media (max-width: 768px) {
    body, html {
        overflow-x: hidden;
        width: 100%;
    }
    .section-padding {
        padding: 4rem 0;
    }
    .page-hero {
        padding-top: 70px;
        min-height: 280px;
        height: 40vh;
    }
    .hero-title {
        font-size: clamp(2.2rem, 8vw, 3.2rem);
    }
    .hero-subtitle {
        font-size: 1rem;
        padding: 0 1rem;
    }
    .highlights-grid,
    .menu-grid,
    .footer-top {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    .gallery-item.item-wide {
        grid-column: span 1;
    }
    .about-text {
        padding: 0;
    }
    .footer-bottom {
        flex-direction: column;
        gap: 1.2rem;
        text-align: center;
        align-items: center;
    }
    .category-title {
        font-size: 2.4rem;
        margin-bottom: 2rem;
    }
    .menu-item {
        flex-direction: column;
        align-items: flex-start;
    }
    .item-header {
        width: 100%;
        display: flex;
        justify-content: space-between;
        align-items: baseline;
        gap: 1rem;
    }
    .cookie-banner {
        width: 95%;
        padding: 1.8rem 1.2rem;
        bottom: 1rem;
    }
    .cookie-buttons {
        flex-direction: column;
        gap: 0.8rem;
        width: 100%;
    }
    .cookie-buttons .btn {
        width: 100%;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 1rem;
    }
    .hero-title {
        font-size: 2.2rem;
    }
    .btn {
        padding: 0.8rem 1.4rem;
        font-size: 0.9rem;
    }
    .item-header {
        flex-direction: column;
        gap: 0.2rem;
    }
    .item-price {
        font-size: 1.1rem;
        color: var(--clr-accent);
    }
}

/* =========================================
   UTILITIES & FIXES
   ========================================= */
/* Cookie Banner (Midnight & Bronze Theme) */
.cookie-banner {
    position: fixed;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%) translateY(150%);
    width: 90%;
    max-width: 800px;
    background: rgba(11, 12, 16, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 4px;
    z-index: 10000;
    padding: 2.5rem;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.8);
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.6s ease;
    opacity: 0;
    pointer-events: none; /* Safe when hidden */
}

.cookie-banner.show {
    transform: translateX(-50%) translateY(0);
    opacity: 1;
    pointer-events: auto; /* Clickable when visible */
}

.cookie-content h4 {
    color: var(--clr-accent);
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.cookie-content p {
    color: var(--clr-text-muted);
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
}

.cookie-buttons {
    display: flex;
    gap: 1rem;
}

.cursor-dot, .cursor-outline {
    display: none; /* Disable custom cursor for clarity */
}
.page-hero {
    height: 50vh;
    min-height: 350px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    padding-top: 80px;
    background-size: cover;
    background-position: center;
    overflow: hidden; /* Crucial for safe zooming background */
}
.hero-overlay {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(11,12,16,0.6);
}

/* =========================================
   UTILITY & COOKIE MODAL (CRITICAL FIXES)
   ========================================= */
.hidden {
    display: none !important;
}

.cookie-modal {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 90%;
    max-width: 600px;
    background: var(--clr-bg-card);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 4px;
    padding: 3rem;
    z-index: 10001;
    box-shadow: 0 30px 100px rgba(0,0,0,0.9);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s ease;
}

.cookie-modal.show {
    opacity: 1;
    pointer-events: auto;
}

.cookie-modal::before {
    content: '';
    position: fixed;
    top: -50vh; left: -50vw;
    width: 200vw; height: 200vh;
    background: rgba(11, 12, 16, 0.8);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    z-index: -1;
}

.cookie-modal-close {
    position: absolute;
    top: 1rem;
    right: 1.5rem;
    background: none;
    border: none;
    color: var(--clr-text-muted);
    font-size: 2rem;
    cursor: pointer;
    transition: var(--trans-fast);
}

.cookie-modal-close:hover {
    color: var(--clr-accent);
    transform: rotate(90deg);
}

.cookie-modal h4 {
    color: var(--clr-accent);
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
}

.cookie-modal-desc {
    color: var(--clr-text-muted);
    margin-bottom: 2rem;
}

.cookie-option {
    background: rgba(255,255,255,0.02);
    border: 1px solid rgba(255,255,255,0.05);
    padding: 1.5rem;
    border-radius: 4px;
    margin-bottom: 1rem;
}

.cookie-option-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.5rem;
}

.cookie-option-header h5 {
    font-family: var(--font-body);
    font-size: 1.1rem;
    color: var(--clr-text-main);
}

.cookie-option p {
    font-size: 0.9rem;
    color: var(--clr-text-muted);
}

/* Toggle Switch Styling */
.toggle-switch {
    position: relative;
    display: inline-block;
    width: 50px;
    height: 24px;
}

.toggle-switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.toggle-slider {
    position: absolute;
    cursor: pointer;
    top: 0; left: 0; right: 0; bottom: 0;
    background-color: rgba(255,255,255,0.1);
    transition: .4s;
    border-radius: 24px;
}

.toggle-slider:before {
    position: absolute;
    content: "";
    height: 16px;
    width: 16px;
    left: 4px;
    bottom: 4px;
    background-color: var(--clr-text-muted);
    transition: .4s;
    border-radius: 50%;
}

input:checked + .toggle-slider {
    background-color: rgba(212, 175, 55, 0.2);
    border: 1px solid var(--clr-accent);
}

input:checked + .toggle-slider:before {
    transform: translateX(26px);
    background-color: var(--clr-accent);
}

/* Cookie Trigger (Shield button) */
.cookie-trigger {
    position: fixed;
    bottom: 2rem;
    left: 2rem;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--clr-bg-card);
    border: 1px solid rgba(212, 175, 55, 0.2);
    color: var(--clr-accent);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 9999;
    box-shadow: 0 5px 15px rgba(0,0,0,0.5);
    transition: all var(--trans-fast);
}

.cookie-trigger:hover {
    transform: scale(1.1);
    box-shadow: 0 10px 25px rgba(212, 175, 55, 0.2);
}

/* =========================================
   ANIMATIONS & EFFECTS
   ========================================= */
.fade-in-up {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-in-up.visible,
.fade-in-up:not(.js-enabled) {
    opacity: 1;
    transform: translateY(0);
}

.reveal-text {
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0% 100%);
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 1s ease, transform 1s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal-text.visible,
.reveal-text:not(.js-enabled) {
    opacity: 1;
    transform: translateY(0);
    clip-path: none;
}

.delay-1 { transition-delay: 0.2s; }
.delay-2 { transition-delay: 0.4s; }
.delay-3 { transition-delay: 0.6s; }

/* =========================================
   GLASS PANEL DESIGN (Midnight & Bronze)
   ========================================= */
.glass-panel {
    background: linear-gradient(135deg, rgba(20, 22, 28, 0.75) 0%, rgba(12, 14, 18, 0.85) 100%);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(212, 175, 55, 0.22);
    border-radius: 12px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.5);
    transition: all var(--trans-fast);
}

.glass-panel:hover {
    border-color: rgba(212, 175, 55, 0.55);
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.7), 0 0 25px rgba(212, 175, 55, 0.18);
    transform: translateY(-4px);
}

/* =========================================
   CUSTOM SCROLLBAR
   ========================================= */
::-webkit-scrollbar {
    width: 8px;
}
::-webkit-scrollbar-track {
    background: var(--clr-bg-main);
}
::-webkit-scrollbar-thumb {
    background: rgba(212, 175, 55, 0.3);
    border-radius: 10px;
}
::-webkit-scrollbar-thumb:hover {
    background: rgba(212, 175, 55, 0.6);
}

/* =========================================
   SWIPER CAROUSEL PREMIUM STYLING
   ========================================= */
.swiper-button-next, .swiper-button-prev {
    color: var(--clr-accent) !important;
    background: rgba(11, 12, 16, 0.5);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    width: 60px !important;
    height: 60px !important;
    border-radius: 50%;
    border: 1px solid rgba(212, 175, 55, 0.3);
    transition: all var(--trans-fast);
}

.swiper-button-next:hover, .swiper-button-prev:hover {
    background: rgba(212, 175, 55, 0.2);
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.4);
    transform: scale(1.1);
}

.swiper-button-next::after, .swiper-button-prev::after {
    font-size: 24px !important;
}

.swiper-pagination-bullet {
    background: rgba(255, 255, 255, 0.5) !important;
    width: 12px !important;
    height: 12px !important;
    transition: all var(--trans-fast);
}

.swiper-pagination-bullet-active {
    background: var(--clr-accent) !important;
    width: 30px !important;
    border-radius: 6px !important;
    box-shadow: 0 0 10px rgba(212, 175, 55, 0.8);
}

/* =========================================
   CONTACT PAGE & TYPOGRAPHY
   ========================================= */
.detail-item {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 2.5rem;
}

.detail-icon {
    font-size: 2.5rem;
    color: var(--clr-accent);
    background: rgba(212, 175, 55, 0.1);
    width: 60px;
    height: 60px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    border: 1px solid rgba(212, 175, 55, 0.2);
    box-shadow: 0 0 15px rgba(212, 175, 55, 0.1);
    transition: all var(--trans-fast);
}

.detail-item:hover .detail-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 0 25px rgba(212, 175, 55, 0.3);
}

.detail-item h4 {
    font-family: var(--font-heading);
    color: var(--clr-accent);
    font-size: 1.4rem;
    margin-bottom: 0.2rem;
    letter-spacing: 1px;
}

.detail-item p {
    color: var(--clr-text-main);
    font-size: 1.1rem;
    line-height: 1.4;
}

.contact-info-panel h3.section-subtitle {
    margin-bottom: 3rem;
    text-align: left;
}

/* =========================================
   MENU PAGE CATEGORY TITLES
   ========================================= */
.category-title {
    font-family: var(--font-heading);
    color: var(--clr-accent);
    font-size: 3.5rem;
    margin-bottom: 3rem;
    border-bottom: 1px solid rgba(212, 175, 55, 0.2);
    padding-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 4px;
    text-shadow: 0 0 20px rgba(212, 175, 55, 0.2);
    position: relative;
    display: inline-block;
}

.category-title::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100px;
    height: 2px;
    background: var(--clr-accent);
    box-shadow: 0 0 10px var(--clr-accent);
}

/* =========================================
   WOW THEATRICAL PRELOADER (INDEX ONLY)
   ========================================= */
.preloader {
    position: fixed;
    top: 0; left: 0;
    width: 100vw; height: 100vh;
    z-index: 99999;
    display: flex;
    justify-content: center;
    align-items: center;
    pointer-events: none; /* allows clicks to pass through after animation */
}

.preloader-bg {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    display: flex;
    flex-direction: column;
    z-index: 1;
}

.preloader-bg-left, .preloader-bg-right {
    width: 100%;
    height: 50vh;
    background: #0B0C10;
    transition: transform 1.2s cubic-bezier(0.77, 0, 0.175, 1);
}

/* When .loaded is added, top half goes up, bottom half goes down */
.preloader.loaded .preloader-bg-left {
    transform: translateY(-100%);
}
.preloader.loaded .preloader-bg-right {
    transform: translateY(100%);
}

.loader-inner {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: opacity 0.5s ease;
}

.preloader.loaded .loader-inner {
    opacity: 0;
}

.loader-logo {
    font-family: var(--font-heading);
    font-size: 3rem;
    color: var(--clr-accent);
    letter-spacing: 10px;
    text-transform: uppercase;
    margin-bottom: 20px;
    animation: glowLogo 2s infinite alternate ease-in-out;
}

.loader-line {
    width: 0px;
    height: 2px;
    background: var(--clr-accent);
    box-shadow: 0 0 10px var(--clr-accent);
    animation: expandLine 1s forwards ease-out 0.5s;
}

@keyframes glowLogo {
    0% { text-shadow: 0 0 10px rgba(212,175,55,0.2); opacity: 0.8; }
    100% { text-shadow: 0 0 30px rgba(212,175,55,0.8); opacity: 1; }
}

@keyframes expandLine {
    0% { width: 0px; }
    100% { width: 200px; }
}

