/* ==========================================================================
   ADVANCED ASYMMETRICAL LUXURY DESIGN - CULINARY & RETAILS
   Palette: Rich Obsidian Navy (#0a1529), Imperial Gold (#c5a059),
            Champagne Off-White (#f4f6f9), Slate Onyx (#141c28)
   ========================================================================== */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
    line-height: 1.8;
    color: #1e2530;
    background-color: #f4f6f9;
    overflow-x: hidden;
}

/* Elegant scrollbar styling */
body::-webkit-scrollbar {
    width: 8px;
}
body::-webkit-scrollbar-track {
    background: #f4f6f9;
}
body::-webkit-scrollbar-thumb {
    background: #c5a059;
    border-radius: 4px;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.gold-text {
    color: #c5a059 !important;
}

.font-bold {
    font-weight: 700;
}

/* INTERSECTION OBSERVER SCROLL ENTRY INITIAL STATE */
.animate-section {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 1.2s cubic-bezier(0.215, 0.610, 0.355, 1), 
                transform 1.2s cubic-bezier(0.215, 0.610, 0.355, 1);
    will-change: transform, opacity;
}

.animate-section.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ==========================================================================
   1. PREMIUM FIXED NAV BAR (MODERN VIP GLASS LAYOUT)
   ========================================================================== */
.main-header {
    background-color: rgba(10, 21, 41, 0.96);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    color: #ffffff;
    position: sticky;
    top: 0;
    z-index: 2000;
    border-bottom: 1px solid rgba(197, 160, 89, 0.2);
    padding: 10px 0;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 20px;
}

.logo a {
    font-size: 1.4rem;
    font-weight: 800;
    letter-spacing: 3px;
    color: #ffffff;
}

.nav-menu {
    display: flex;
    list-style: none;
    align-items: center;
    gap: 8px;
}

.nav-menu a {
    font-size: 0.85rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    padding: 10px 16px;
    color: #d1d5db;
    position: relative;
}

.nav-menu a:not(.nav-cta)::after {
    content: '';
    position: absolute;
    bottom: 4px;
    left: 16px;
    width: 0;
    height: 1.5px;
    background-color: #c5a059;
    transition: width 0.3s ease;
}

.nav-menu a:hover:not(.nav-cta)::after, 
.nav-menu a.active:not(.nav-cta)::after {
    width: calc(100% - 32px);
}

.nav-menu a:hover:not(.nav-cta),
.nav-menu a.active:not(.nav-cta) {
    color: #c5a059;
}

.nav-cta {
    background: transparent;
    border: 1px solid #c5a059;
    color: #c5a059 !important;
    padding: 10px 20px !important;
    font-weight: 600 !important;
}

.nav-cta:hover {
    background: #c5a059;
    color: #0a1529 !important;
    box-shadow: 0 4px 15px rgba(197, 160, 89, 0.3);
}

/* Premium Hamburger Trigger Asset (Hidden on Desktop) */
.menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 26px;
    height: 18px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 2100;
}

.menu-toggle .bar {
    width: 100%;
    height: 2px;
    background-color: #ffffff;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.menu-toggle .bar:nth-child(2) {
    width: 80%;
    align-self: flex-end;
}

/* Hamburger state transformations during toggle activation */
.menu-toggle.active .bar:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
    background-color: #c5a059;
}

.menu-toggle.active .bar:nth-child(2) {
    opacity: 0;
}

.menu-toggle.active .bar:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
    background-color: #c5a059;
}
/* CORE CONTENT HOUSING GRID */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px 20px 90px 20px;
}

.section-tag {
    display: block;
    color: #c5a059;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 12px;
}

.premium-heading {
    font-size: 2.2rem;
    color: #0a1529;
    margin-bottom: 35px;
    font-weight: 700;
    letter-spacing: -0.5px;
}

/* ==========================================================================
   NEW VIP SECTION 1: CINEMATIC HERO SPLIT SHOWCASE (ULTRA-PREMIUM)
   ========================================================================== */
.cinematic-hero-showcase {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    background: linear-gradient(135deg, #0a1529 0%, #060c18 100%);
    color: #ffffff;
    min-height: 520px;
    margin-bottom: 80px;
    box-shadow: 0 25px 60px rgba(6,12,24,0.15);
    position: relative;
    overflow: hidden;
}

.hero-text-pane {
    padding: 60px 50px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    z-index: 2;
}

.luxury-badge-glow {
    display: inline-flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(197, 160, 89, 0.25);
    padding: 6px 14px;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 2px;
    color: #cbd5e1;
    width: fit-content;
    margin-bottom: 25px;
    border-radius: 50px;
}

.badge-dot {
    width: 6px;
    height: 6px;
    background: #c5a059;
    border-radius: 50%;
    margin-right: 8px;
    box-shadow: 0 0 10px #c5a059;
}

.cinematic-hero-showcase h2 {
    font-size: 3.2rem;
    font-weight: 800;
    line-height: 1.15;
    letter-spacing: -1px;
    margin-bottom: 20px;
}

.gold-gradient-text {
    background: linear-gradient(90deg, #e5c07b 0%, #c5a059 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-decorative-divider {
    width: 60px;
    height: 3px;
    background: #c5a059;
    margin-bottom: 25px;
}

.cinematic-hero-showcase p {
    font-size: 1.1rem;
    color: #94a3b8;
    line-height: 1.7;
    max-width: 520px;
    margin-bottom: 35px;
    font-weight: 300;
}

.hero-stats-strip {
    display: flex;
    gap: 45px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding-top: 25px;
}

.stat-number {
    display: block;
    font-size: 1.8rem;
    font-weight: 700;
    color: #ffffff;
    line-height: 1;
    margin-bottom: 4px;
}

.stat-lbl {
    font-size: 0.8rem;
    color: #64748b;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Hero Right Visual Side */
.hero-visual-pane {
    position: relative;
    overflow: hidden;
    background: #060c18;
}

.hero-visual-pane img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.95);
    transition: transform 10s ease;
}

.cinematic-hero-showcase:hover .hero-visual-pane img {
    transform: scale(1.06);
}

.visual-glass-overlay-card {
    position: absolute;
    bottom: 30px;
    left: 30px;
    background: rgba(10, 21, 41, 0.75);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    padding: 20px 25px;
    max-width: 280px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.2);
}

.visual-glass-overlay-card span {
    font-size: 0.75rem;
    letter-spacing: 1.5px;
    display: block;
    margin-bottom: 4px;
}

.visual-glass-overlay-card p {
    font-size: 0.85rem;
    color: #e2e8f0;
    line-height: 1.4;
    margin: 0;
}

/* ==========================================================================
   SECTION 2: DYNAMIC BENTO GRID LAYOUT SYSTEM
   ========================================================================== */
.bento-layout-section {
    margin-bottom: 80px;
}

.bento-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    grid-template-rows: 200px 240px;
    gap: 25px;
}

.bento-cell {
    position: relative;
    background: #ffffff;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.02);
}

.cell-large {
    grid-column: 1;
    grid-row: 1 / span 2;
}

.cell-small-top {
    grid-column: 2;
    grid-row: 1;
    background: #0a1529;
    color: #ffffff;
    display: flex;
    align-items: center;
    padding: 35px;
    border-right: 4px solid #c5a059;
}

.cell-small-bottom {
    grid-column: 2;
    grid-row: 2;
}

.bento-cell img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s cubic-bezier(0.25, 1, 0.5, 1);
}

.bento-cell:hover img {
    transform: scale(1.04);
}

.bento-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(10, 21, 41, 0.98) 50%);
    padding: 40px;
    color: #ffffff;
}

.mini-overlay {
    padding: 20px;
    background: linear-gradient(transparent, rgba(10, 21, 41, 0.95) 30%);
}

.bento-badge {
    background: #c5a059;
    color: #0a1529;
    font-size: 0.65rem;
    font-weight: 700;
    padding: 4px 10px;
    letter-spacing: 1px;
    display: inline-block;
    margin-bottom: 12px;
}

.bento-overlay h4 {
    font-size: 1.6rem;
    margin-bottom: 8px;
    font-weight: 700;
}

.mini-overlay h4 {
    font-size: 1.2rem;
    margin-bottom: 4px;
    color: #c5a059;
}

.bento-overlay p {
    font-size: 0.95rem;
    color: #cbd5e1;
    line-height: 1.6;
}

.bento-text-only span {
    font-size: 2.2rem;
    display: block;
    margin-bottom: 4px;
    line-height: 1;
}

.bento-text-only h5 {
    font-size: 1.1rem;
    margin-bottom: 8px;
    font-weight: 600;
}

.bento-text-only p {
    font-size: 0.88rem;
    color: #94a3b8;
    line-height: 1.5;
}

/* ==========================================================================
   SECTION 3: ASYMMETRIC HERITAGE MATRIX (SOUKS)
   ========================================================================== */
.asymmetric-souks-section {
    margin-bottom: 80px;
}

.souk-split-matrix {
    display: grid;
    grid-template-columns: 0.95fr 1.05fr;
    gap: 60px;
    align-items: center;
}

.souk-media-frame {
    position: relative;
}

.souk-media-frame img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    box-shadow: 0 15px 35px rgba(0,0,0,0.06);
}

.floating-accent-box {
    position: absolute;
    bottom: -25px;
    right: -25px;
    background: #0a1529;
    color: #ffffff;
    padding: 25px 30px;
    border-left: 3px solid #c5a059;
    max-width: 280px;
    box-shadow: 0 10px 25px rgba(10,21,41,0.2);
}

.floating-accent-box span {
    font-size: 0.9rem;
    letter-spacing: 1px;
    display: block;
    margin-bottom: 4px;
}

.floating-accent-box p {
    font-size: 0.8rem;
    color: #94a3b8;
    line-height: 1.4;
}

.souk-context-frame h4 {
    font-size: 1.8rem;
    color: #0a1529;
    margin-bottom: 14px;
    font-weight: 700;
}

.souk-context-frame > p {
    font-size: 1.05rem;
    color: #4a5568;
    margin-bottom: 30px;
}

.heritage-split-cards {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.h-card {
    background: #ffffff;
    padding: 25px 30px;
    border-left: 3px solid rgba(197, 160, 89, 0.4);
    transition: border-color 0.3s ease;
}

.h-card:hover {
    border-left-color: #c5a059;
}

.h-card h5 {
    font-size: 1.15rem;
    color: #0a1529;
    margin-bottom: 6px;
    font-weight: 700;
}

.h-card p {
    font-size: 0.92rem;
    color: #4a5568;
    line-height: 1.6;
}

/* ==========================================================================
   SECTION 4: PREMIUM DARK BREAKOUT (GASTRONOMY CORE)
   ========================================================================= */
.dark-gastronomy-breakout {
    background: #0a1529;
    margin-left: calc(-50vw + 50%);
    margin-right: calc(-50vw + 50%);
    padding: 80px 0;
    margin-bottom: 80px;
}

.dark-panel-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 60px;
    align-items: center;
}

.dark-main-title {
    color: #ffffff;
    font-size: 2.4rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 12px;
}

.lead-gold-text {
    color: #c5a059;
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 20px;
}

.dark-description {
    color: #cbd5e1;
    font-size: 1.02rem;
    line-height: 1.75;
    margin-bottom: 35px;
}

.gastronomy-metrics {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 30px;
}

.m-title {
    font-size: 1.1rem;
    color: #ffffff;
    font-weight: 600;
    display: block;
    margin-bottom: 6px;
}

.m-desc {
    font-size: 0.88rem;
    color: #94a3b8;
    line-height: 1.5;
}

.luxury-image-reveal {
    position: relative;
    box-shadow: 0 20px 45px rgba(0,0,0,0.3);
}

.luxury-image-reveal img {
    width: 100%;
    height: 440px;
    object-fit: cover;
}

/* ==========================================================================
   SECTION 5: SIGNATURE LOCAL FOOD INTERMEDIATE MATRIX
   ========================================================================== */
.signature-tastes-section {
    margin-bottom: 20px;
}

.tastes-luxury-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.taste-card {
    background: #ffffff;
    box-shadow: 0 10px 30px rgba(10,21,41,0.02);
    transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.taste-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 15px 35px rgba(10,21,41,0.06);
}

.card-img-holder img {
    width: 100%;
    height: 230px;
    object-fit: cover;
}

.card-body-content {
    padding: 30px 25px;
    position: relative;
}

.item-number {
    position: absolute;
    top: -20px;
    right: 25px;
    font-size: 2.5rem;
    font-weight: 900;
    color: rgba(197, 160, 89, 0.15);
    line-height: 1;
}

.card-body-content h4 {
    color: #0a1529;
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.card-body-content p {
    font-size: 0.92rem;
    color: #4a5568;
    line-height: 1.6;
}

/* ==========================================================================
   UNIFORM BRAND FOOTER LAYOUT
   ========================================================================== */
.main-footer {
    background-color: #0a1529;
    color: #ffffff;
    border-top: 3px solid #c5a059;
    padding: 80px 0 30px 0;
}

.footer-grid {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px 50px 20px;
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 60px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-brand h3 {
    font-size: 1.4rem;
    letter-spacing: 3px;
    margin-bottom: 20px;
}

.footer-brand p {
    color: #94a3b8;
    font-size: 0.95rem;
    max-width: 380px;
}

.footer-links-col h4, 
.footer-academic h4 {
    color: #c5a059;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 22px;
}

.footer-links-col ul {
    list-style: none;
}

.footer-links-col ul li {
    margin-bottom: 12px;
}

.footer-links-col ul li a {
    color: #94a3b8;
    font-size: 0.95rem;
}

.footer-links-col ul li a:hover {
    color: #ffffff;
    padding-left: 5px;
}

.footer-academic p {
    color: #94a3b8;
    font-size: 0.95rem;
    margin-bottom: 10px;
}

.footer-academic .stu-info {
    color: #ffffff;
    font-weight: 600;
}

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    padding: 30px 20px 0 20px;
    text-align: center;
    font-size: 0.85rem;
    color: #64748b;
}

.image-attribution {
    font-size: 0.75rem;
    color: #475569;
    margin-top: 8px;
}

/* ==========================================================================
   RESPONSIVENESS BREAKPOINTS MATRIX
   ========================================================================== */
@media (max-width: 992px) {
        .menu-toggle {
        display: flex;
    }

    /* Transforming nav links block to sliding drawer layout */
    .nav-menu {
        position: fixed;
        top: 61px; /* Aligns perfectly right under the header */
        right: -100%;
        width: 280px;
        height: calc(100vh - 61px);
        background-color: rgba(10, 21, 41, 0.98);
        backdrop-filter: blur(15px);
        -webkit-backdrop-filter: blur(15px);
        flex-direction: column;
        align-items: flex-start;
        justify-content: flex-start;
        padding: 40px 30px;
        gap: 20px;
        transition: right 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
        border-left: 1px solid rgba(197, 160, 89, 0.15);
        box-shadow: -10px 0 30px rgba(0, 0, 0, 0.25);
        z-index: 1999;
    }

    /* Active drawer injection */
    .nav-menu.active {
        right: 0;
    }

    .nav-menu li {
        width: 100%;
    }

    .nav-menu a {
        display: block;
        font-size: 1rem;
        padding: 12px 0;
        width: 100%;
        text-align: left;
    }

    .nav-menu a:not(.nav-cta)::after {
        left: 0;
    }

    .nav-menu a:hover:not(.nav-cta)::after, 
    .nav-menu a.active:not(.nav-cta)::after {
        width: 40px; /* Short premium dynamic line marker */
    }

    .nav-cta {
        text-align: center;
        margin-top: 20px;
        width: 100%;
    }
    .container { padding: 40px 20px; }
    
    .cinematic-hero-showcase { grid-template-columns: 1fr; min-height: auto; }
    .hero-text-pane { padding: 45px 30px; }
    .hero-visual-pane { height: 360px; }
    
    .bento-grid { grid-template-columns: 1fr; grid-template-rows: auto; gap: 20px; }
    .cell-large, .cell-small-top, .cell-small-bottom { grid-column: auto; grid-row: auto; }
    .bento-cell img { height: 320px; }
    
    .souk-split-matrix, .dark-panel-wrapper, .tastes-luxury-grid { grid-template-columns: 1fr; gap: 40px; }
    .souk-media-frame img, .luxury-image-reveal img { height: 350px; }
    .floating-accent-box { position: static; margin-top: 15px; max-width: 100%; }
    
    .footer-grid { grid-template-columns: 1fr; gap: 40px; }
}

@media (max-width: 768px) {
    .menu-toggle {
        display: flex;
    }

    /* Transforming nav links block to sliding drawer layout */
    .nav-menu {
        position: fixed;
        top: 61px; /* Aligns perfectly right under the header */
        right: -100%;
        width: 280px;
        height: calc(100vh - 61px);
        background-color: rgba(10, 21, 41, 0.98);
        backdrop-filter: blur(15px);
        -webkit-backdrop-filter: blur(15px);
        flex-direction: column;
        align-items: flex-start;
        justify-content: flex-start;
        padding: 40px 30px;
        gap: 20px;
        transition: right 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
        border-left: 1px solid rgba(197, 160, 89, 0.15);
        box-shadow: -10px 0 30px rgba(0, 0, 0, 0.25);
        z-index: 1999;
    }

    /* Active drawer injection */
    .nav-menu.active {
        right: 0;
    }

    .nav-menu li {
        width: 100%;
    }

    .nav-menu a {
        display: block;
        font-size: 1rem;
        padding: 12px 0;
        width: 100%;
        text-align: left;
    }

    .nav-menu a:not(.nav-cta)::after {
        left: 0;
    }

    .nav-menu a:hover:not(.nav-cta)::after, 
    .nav-menu a.active:not(.nav-cta)::after {
        width: 40px; /* Short premium dynamic line marker */
    }

    .nav-cta {
        text-align: center;
        margin-top: 20px;
        width: 100%;
    }
    .cinematic-hero-showcase h2 { font-size: 2.3rem; }
    .premium-heading, .dark-main-title, .souk-context-frame h4 { font-size: 1.75rem; }
}