/* ═══════════════════════════════════════════
   THE ROOM KARAOKE & LOUNGE — DESIGN SYSTEM
   ═══════════════════════════════════════════ */

/* CSS CUSTOM PROPERTIES */
:root {
    --bg-primary: #0D0D0D;
    --bg-secondary: #0A1628;
    --bg-alt: #1B2B1B;
    --gold: #C5A059;
    --gold-hover: #D4B068;
    --gold-dim: rgba(197, 160, 89, 0.3);
    --text-primary: #FFFFFF;
    --text-secondary: #E8DCC8;
    --text-dark: #1a1a1a;
    --white: #FFFFFF;

    --font-serif: 'Cormorant Garamond', Georgia, serif;
    --font-sans: 'Montserrat', 'Inter', sans-serif;
    --font-script: 'Great Vibes', cursive;

    --section-padding: 120px;
    --container-max: 1400px;
    --transition: 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* RESET & BASE */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    font-family: var(--font-sans);
    font-weight: 300;
    color: var(--text-primary);
    background: var(--bg-primary);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

img {
    display: block;
    max-width: 100%;
    height: auto;
}

a {
    text-decoration: none;
    color: inherit;
    transition: color var(--transition);
}

/* ─── LOADER ─── */
.loader {
    position: fixed;
    inset: 0;
    z-index: 10000;
    background: var(--bg-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.8s ease, visibility 0.8s ease;
}

.loader.hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.loader-content {
    text-align: center;
    animation: loaderFade 1s ease forwards;
}

.loader-logo {
    font-family: var(--font-serif);
    font-size: 3rem;
    font-weight: 600;
    letter-spacing: 8px;
    color: var(--gold);
}

.loader-sub {
    font-family: var(--font-sans);
    font-size: 0.8rem;
    letter-spacing: 6px;
    color: var(--text-secondary);
    margin-top: 8px;
}

.loader-bar {
    width: 200px;
    height: 2px;
    background: rgba(197, 160, 89, 0.2);
    margin: 30px auto 0;
    border-radius: 2px;
    overflow: hidden;
}

.loader-bar-fill {
    width: 0;
    height: 100%;
    background: var(--gold);
    animation: loaderProgress 2s ease forwards;
}

@keyframes loaderFade {
    from {
        opacity: 0;
        transform: scale(0.95);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes loaderProgress {
    to {
        width: 100%;
    }
}

/* ─── SCROLL PROGRESS ─── */
.scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    width: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--gold), var(--gold-hover));
    z-index: 9999;
    transition: width 0.1s linear;
}

/* ─── NAVBAR ─── */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 20px 40px;
    transition: all var(--transition);
    background: transparent;
}

.navbar.scrolled {
    background: rgba(13, 13, 13, 0.92);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 14px 40px;
    box-shadow: 0 2px 40px rgba(0, 0, 0, 0.3);
}

.nav-container {
    max-width: var(--container-max);
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-links-left,
.nav-links-right {
    display: flex;
    align-items: center;
    gap: 32px;
}

.nav-link {
    font-family: var(--font-sans);
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 3px;
    color: var(--text-primary);
    position: relative;
    padding: 4px 0;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--gold);
    transition: width var(--transition);
}

.nav-link:hover::after {
    width: 100%;
}

.nav-link:hover {
    color: var(--gold);
}

.nav-link-cta {
    color: var(--gold);
    border: 1px solid var(--gold);
    padding: 8px 20px;
    font-size: 0.7rem;
    letter-spacing: 2px;
}

.nav-link-cta::after {
    display: none;
}

.nav-link-cta:hover {
    background: var(--gold);
    color: var(--bg-primary);
}

.nav-logo {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 4px 24px;
}

.logo-main {
    font-family: var(--font-serif);
    font-size: 2.4rem;
    font-weight: 600;
    letter-spacing: 10px;
    color: var(--text-primary);
    line-height: 1;
}

.logo-sub {
    font-family: var(--font-sans);
    font-size: 0.65rem;
    letter-spacing: 5px;
    color: var(--gold);
    margin-top: 6px;
}

/* Logo in hero — large branded element */
.hero-brand {
    margin-bottom: 24px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.hero-brand .logo-main {
    font-size: clamp(3rem, 7vw, 5rem);
    letter-spacing: 14px;
    color: var(--text-primary);
    text-shadow: 0 2px 40px rgba(0, 0, 0, 0.5);
    line-height: 1;
}

.hero-brand .logo-sub {
    font-size: clamp(0.65rem, 1.2vw, 0.9rem);
    letter-spacing: 8px;
    margin-top: 8px;
}

.nav-social {
    display: flex;
    gap: 12px;
}

.nav-icon {
    color: var(--text-secondary);
    transition: color var(--transition);
    display: flex;
    align-items: center;
}

.nav-icon:hover {
    color: var(--gold);
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 6px;
}

.hamburger span {
    width: 24px;
    height: 2px;
    background: var(--text-primary);
    transition: all 0.3s ease;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* ─── MOBILE MENU ─── */
.mobile-menu {
    position: fixed;
    inset: 0;
    z-index: 999;
    background: rgba(13, 13, 13, 0.97);
    backdrop-filter: blur(30px);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.5s ease;
}

.mobile-menu.active {
    opacity: 1;
    visibility: visible;
}

.mobile-menu-content {
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.mobile-link {
    font-family: var(--font-serif);
    font-size: 2rem;
    font-weight: 400;
    letter-spacing: 4px;
    color: var(--text-primary);
    transition: color var(--transition);
    transform: translateY(20px);
    opacity: 0;
    animation: none;
}

.mobile-menu.active .mobile-link {
    animation: mobileSlide 0.5s ease forwards;
}

.mobile-menu.active .mobile-link:nth-child(1) {
    animation-delay: 0.1s;
}

.mobile-menu.active .mobile-link:nth-child(2) {
    animation-delay: 0.15s;
}

.mobile-menu.active .mobile-link:nth-child(3) {
    animation-delay: 0.2s;
}

.mobile-menu.active .mobile-link:nth-child(4) {
    animation-delay: 0.25s;
}

.mobile-menu.active .mobile-link:nth-child(5) {
    animation-delay: 0.3s;
}

@keyframes mobileSlide {
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.mobile-link:hover {
    color: var(--gold);
}

.mobile-social {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-top: 20px;
}

.mobile-social a {
    color: var(--gold);
    transition: transform var(--transition);
}

.mobile-social a:hover {
    transform: scale(1.2);
}

/* ─── HERO SECTION ─── */
.hero {
    position: relative;
    width: 100%;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    animation: kenBurns 25s ease infinite alternate;
}

@keyframes kenBurns {
    0% {
        transform: scale(1);
    }

    100% {
        transform: scale(1.1);
    }
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg,
            rgba(0, 0, 0, 0.4) 0%,
            rgba(0, 0, 0, 0.55) 40%,
            rgba(0, 0, 0, 0.7) 100%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 900px;
    padding: 0 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.hero-tagline {
    font-family: var(--font-script);
    font-size: 1.3rem;
    color: var(--gold);
    margin-bottom: 16px;
}

.hero-title {
    font-family: var(--font-serif);
    font-weight: 300;
    line-height: 1.15;
    margin-bottom: 20px;
}

.hero-title span {
    display: block;
    font-size: clamp(2rem, 5vw, 4rem);
    letter-spacing: 2px;
}

.hero-subtitle {
    font-family: var(--font-sans);
    font-size: 1rem;
    font-weight: 300;
    letter-spacing: 3px;
    color: var(--text-secondary);
    margin-bottom: 40px;
}

.hero-cta {
    display: flex;
    gap: 24px;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    margin-top: 8px;
}

/* ─── BUTTONS ─── */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 15px 40px;
    min-height: 50px;
    font-family: var(--font-sans);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    cursor: pointer;
    transition: all var(--transition);
    border: none;
    position: relative;
    overflow: hidden;
}

.btn-gold {
    background: var(--gold);
    color: var(--bg-primary);
}

.btn-gold::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg,
            transparent,
            rgba(255, 255, 255, 0.2),
            transparent);
    animation: shimmer 3s infinite;
}

@keyframes shimmer {
    0% {
        left: -100%;
    }

    50% {
        left: 100%;
    }

    100% {
        left: 100%;
    }
}

.btn-gold:hover {
    background: var(--gold-hover);
    transform: scale(1.02);
    box-shadow: 0 8px 30px rgba(197, 160, 89, 0.3);
}

.btn-outline {
    background: transparent;
    color: var(--gold);
    border: 1px solid var(--gold);
}

.btn-outline:hover {
    background: var(--gold);
    color: var(--bg-primary);
    transform: scale(1.02);
}

.btn-full {
    width: 100%;
    text-align: center;
}

/* ─── SCROLL INDICATOR ─── */
.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    animation: scrollBounce 2s ease infinite;
}

@keyframes scrollBounce {

    0%,
    100% {
        transform: translateX(-50%) translateY(0);
    }

    50% {
        transform: translateX(-50%) translateY(10px);
    }
}

/* ─── ABOUT SECTION ─── */
.about {
    background: var(--white);
    padding: var(--section-padding) 20px;
    display: flex;
    justify-content: center;
}

.about-content {
    max-width: 700px;
    text-align: center;
}

.script-text {
    font-family: var(--font-script);
    font-size: 2rem;
    color: var(--gold);
    margin-bottom: 8px;
}

.section-title-dark {
    font-family: var(--font-serif);
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 400;
    letter-spacing: 4px;
    color: var(--text-dark);
    margin-bottom: 30px;
}

.about-text {
    font-family: var(--font-sans);
    font-size: 1rem;
    font-weight: 300;
    line-height: 1.9;
    color: #444;
    margin-bottom: 40px;
}

.gold-divider {
    width: 80px;
    height: 2px;
    background: var(--gold);
    margin: 0 auto;
}

/* ─── SECTION COMMON ─── */
.script-text-gold {
    font-family: var(--font-script);
    font-size: 2.2rem;
    color: var(--gold);
    margin-bottom: 4px;
}

.section-title {
    font-family: var(--font-serif);
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 400;
    letter-spacing: 4px;
    color: var(--text-primary);
    margin-bottom: 24px;
}

.section-body {
    font-family: var(--font-sans);
    font-size: 0.95rem;
    font-weight: 300;
    line-height: 1.85;
    color: var(--text-secondary);
    margin-bottom: 36px;
}

/* ─── SPLIT SECTIONS ─── */
.split-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 600px;
}

.split-section.split-reverse {
    direction: ltr;
}

.split-image {
    position: relative;
    overflow: hidden;
}

.split-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s ease;
}

.split-image:hover img {
    transform: scale(1.05);
}

.split-content {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 80px 60px;
}

.split-content.dark-bg {
    background: var(--bg-secondary);
}

.split-content.dark-bg-alt {
    background: var(--bg-alt);
}

.split-text {
    max-width: 480px;
}

/* ─── CUISINE SECTION ─── */
.cuisine-section {
    background: var(--bg-primary);
    padding: var(--section-padding) 20px;
}

.cuisine-header {
    text-align: center;
    max-width: var(--container-max);
    margin: 0 auto 60px;
    padding: 0 20px;
}

.cuisine-subtitle {
    font-family: var(--font-sans);
    font-size: 1rem;
    font-weight: 300;
    color: var(--text-secondary);
    letter-spacing: 1px;
    max-width: 600px;
    margin: 0 auto;
}

/* Cuisine Showcase — Hero Feature + Rich Grid */
.cuisine-showcase {
    max-width: 1200px;
    margin: 0 auto;
}

.cuisine-feature {
    position: relative;
    overflow: hidden;
    border-radius: 6px;
    aspect-ratio: 21/9;
    margin-bottom: 20px;
}

.cuisine-feature img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s ease;
}

.cuisine-feature:hover img {
    transform: scale(1.04);
}

.cuisine-feature-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 40px 40px 32px;
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.75) 0%, rgba(0, 0, 0, 0.3) 60%, transparent 100%);
}

.cuisine-label {
    font-family: var(--font-serif);
    font-size: 2rem;
    font-weight: 400;
    letter-spacing: 4px;
    color: var(--gold);
    display: block;
    margin-bottom: 6px;
}

.cuisine-feature-caption p {
    font-family: var(--font-sans);
    font-size: 0.9rem;
    font-weight: 300;
    color: var(--text-secondary);
    letter-spacing: 1px;
}

.cuisine-grid-rich {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 16px;
}

.cuisine-card-rich {
    position: relative;
    overflow: hidden;
    border-radius: 6px;
    aspect-ratio: 3/4;
    cursor: pointer;
}

.cuisine-card-rich img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.cuisine-card-rich:hover img {
    transform: scale(1.08);
}

.cuisine-card-info {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 20px 16px;
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.8) 0%, transparent 100%);
    opacity: 0;
    transform: translateY(8px);
    transition: opacity 0.4s ease, transform 0.4s ease;
}

.cuisine-card-rich:hover .cuisine-card-info {
    opacity: 1;
    transform: translateY(0);
}

.cuisine-card-info span {
    font-family: var(--font-serif);
    font-size: 1rem;
    font-weight: 400;
    letter-spacing: 2px;
    color: var(--gold);
}

.cuisine-cta {
    text-align: center;
    margin-top: 50px;
}

/* ─── CUISINE GALLERY PANEL (Expandable) ─── */
.cuisine-card-rich.active {
    border: 2px solid var(--gold);
    box-shadow: 0 0 20px rgba(197, 160, 89, 0.25);
}

.cuisine-gallery-panel {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    margin-top: 20px;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(197, 160, 89, 0.12);
}

.cuisine-gallery-panel.open {
    overflow: visible;
}

.cuisine-gallery-inner {
    padding: 32px;
}

.cuisine-gallery-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 24px;
}

.cuisine-gallery-header h3 {
    font-family: var(--font-serif);
    font-size: 1.8rem;
    font-weight: 400;
    letter-spacing: 3px;
    color: var(--gold);
}

.cuisine-gallery-close {
    background: none;
    border: 1px solid rgba(197, 160, 89, 0.3);
    color: var(--text-secondary);
    font-size: 1.5rem;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cuisine-gallery-close:hover {
    background: var(--gold);
    color: var(--bg-primary);
    border-color: var(--gold);
}

.cuisine-gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

.cuisine-gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 6px;
    aspect-ratio: 4/3;
}

.cuisine-gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.cuisine-gallery-item:hover img {
    transform: scale(1.06);
}

.cuisine-gallery-item-label {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 16px;
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.75) 0%, transparent 100%);
    font-family: var(--font-sans);
    font-size: 0.8rem;
    font-weight: 400;
    letter-spacing: 1.5px;
    color: var(--text-secondary);
    text-transform: uppercase;
}

/* ─── GALLERY SECTION ─── */
.gallery-section {
    background: var(--bg-primary);
    padding: var(--section-padding) 20px;
}

.gallery-header {
    text-align: center;
    margin-bottom: 50px;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-auto-rows: 280px;
    gap: 12px;
    max-width: 1300px;
    margin: 0 auto;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 4px;
    cursor: pointer;
}

.gallery-item-tall {
    grid-row: span 2;
}

.gallery-item-wide {
    grid-column: span 2;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.gallery-item:hover img {
    transform: scale(1.05);
}

.gallery-item::after {
    content: '';
    position: absolute;
    inset: 0;
    border: 2px solid transparent;
    border-radius: 4px;
    transition: border-color var(--transition);
    pointer-events: none;
}

.gallery-item:hover::after {
    border-color: var(--gold);
    box-shadow: 0 0 20px rgba(197, 160, 89, 0.3);
}

.gallery-cta {
    text-align: center;
    margin-top: 50px;
}

/* ─── TESTIMONIALS SECTION ─── */
.testimonials-section {
    background: var(--bg-secondary);
    padding: var(--section-padding) 20px;
    overflow: hidden;
}

.testimonials-header {
    text-align: center;
    margin-bottom: 50px;
}

.rating-badge {
    margin-top: 16px;
}

.rating-stars {
    font-size: 1.5rem;
    color: var(--gold);
    letter-spacing: 4px;
}

.rating-text {
    display: block;
    font-family: var(--font-sans);
    font-size: 1rem;
    color: var(--text-secondary);
    margin-top: 8px;
    letter-spacing: 2px;
}

.testimonials-carousel {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
}

.testimonial-track {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    align-items: stretch;
}

.testimonial-card {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(197, 160, 89, 0.15);
    padding: 44px 32px 36px;
    border-radius: 10px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    height: 100%;
    transition: border-color var(--transition), box-shadow var(--transition);
}

.testimonial-card:hover {
    border-color: rgba(197, 160, 89, 0.35);
    box-shadow: 0 8px 40px rgba(197, 160, 89, 0.08);
}

.testimonial-stars {
    font-size: 1.1rem;
    color: var(--gold);
    letter-spacing: 5px;
    margin-bottom: 22px;
}

.testimonial-text {
    font-family: var(--font-sans);
    font-size: 0.9rem;
    font-weight: 300;
    font-style: italic;
    line-height: 1.85;
    color: var(--text-secondary);
    margin-bottom: 28px;
    flex: 1;
}

.testimonial-author {
    font-family: var(--font-serif);
    font-size: 1.15rem;
    color: var(--text-primary);
    margin-bottom: 4px;
}

.testimonial-source {
    font-family: var(--font-sans);
    font-size: 0.72rem;
    font-weight: 400;
    color: var(--gold);
    letter-spacing: 1.5px;
    text-transform: uppercase;
}

.testimonial-dots {
    display: none;
}

/* ─── CONTACT SECTION ─── */
.contact-section {
    background: var(--bg-primary);
}

.contact-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 700px;
}

.contact-map {
    position: relative;
}

.contact-map iframe {
    width: 100%;
    height: 100%;
    filter: grayscale(0.8) invert(0.92) contrast(0.85);
}

.contact-form-container {
    padding: 80px 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    max-width: 600px;
}

.contact-heading {
    font-family: var(--font-serif);
    font-size: 2.5rem;
    font-weight: 400;
    letter-spacing: 3px;
    color: var(--gold);
    margin-bottom: 36px;
}

.reservation-form {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 36px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.form-group {
    width: 100%;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px 16px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 4px;
    color: var(--text-primary);
    font-family: var(--font-sans);
    font-size: 0.9rem;
    font-weight: 300;
    outline: none;
    transition: border-color var(--transition);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: rgba(255, 255, 255, 0.4);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--gold);
    box-shadow: 0 0 0 2px rgba(197, 160, 89, 0.15);
}

.form-group select {
    appearance: none;
    -webkit-appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23C5A059' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    padding-right: 36px;
}

.form-group select option {
    background: var(--bg-primary);
    color: var(--text-primary);
}

.form-group textarea {
    resize: vertical;
    min-height: 80px;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.contact-info-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.9rem;
    color: var(--text-secondary);
}

.contact-info-item a {
    color: var(--text-secondary);
}

.contact-info-item a:hover {
    color: var(--gold);
}

.contact-icon {
    font-size: 1.1rem;
}

.contact-social {
    display: flex;
    gap: 12px;
    margin-top: 12px;
}

.contact-social-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    border: 1px solid rgba(197, 160, 89, 0.3);
    border-radius: 4px;
    color: var(--gold);
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 1px;
    transition: all var(--transition);
}

.contact-social-btn:hover {
    background: rgba(197, 160, 89, 0.1);
    border-color: var(--gold);
}

/* ─── NEWSLETTER SECTION ─── */
.newsletter-section {
    background: var(--bg-secondary);
    padding: 60px 20px;
    text-align: center;
}

.newsletter-container {
    max-width: 600px;
    margin: 0 auto;
}

.newsletter-title {
    font-family: var(--font-serif);
    font-size: 1.8rem;
    font-weight: 400;
    letter-spacing: 3px;
    color: var(--text-primary);
    margin-bottom: 8px;
}

.newsletter-subtitle {
    font-family: var(--font-sans);
    font-size: 0.9rem;
    font-weight: 300;
    color: var(--text-secondary);
    margin-bottom: 24px;
}

.newsletter-form {
    display: flex;
    gap: 12px;
    max-width: 500px;
    margin: 0 auto;
}

.newsletter-form input {
    flex: 1;
    padding: 14px 16px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 4px;
    color: var(--text-primary);
    font-family: var(--font-sans);
    font-size: 0.9rem;
    font-weight: 300;
    outline: none;
    transition: border-color var(--transition);
}

.newsletter-form input::placeholder {
    color: rgba(255, 255, 255, 0.4);
}

.newsletter-form input:focus {
    border-color: var(--gold);
}

/* ─── FOOTER ─── */
.footer {
    background: var(--bg-primary);
    padding-top: 0;
}

.footer-gold-line {
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.footer-container {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 40px;
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 80px 40px 40px;
}

.footer-logo {
    display: flex;
    flex-direction: column;
}

.footer-logo .logo-main {
    font-size: 1.4rem;
}

.footer-tagline {
    font-family: var(--font-script);
    font-size: 1.1rem;
    color: var(--gold);
    margin-top: 12px;
    margin-bottom: 20px;
}

.footer-social {
    display: flex;
    gap: 16px;
}

.footer-social a {
    color: var(--text-secondary);
    transition: color var(--transition), transform var(--transition);
}

.footer-social a:hover {
    color: var(--gold);
    transform: scale(1.1);
}

.footer-heading {
    font-family: var(--font-sans);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 20px;
}

.footer-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links a {
    font-family: var(--font-sans);
    font-size: 0.9rem;
    font-weight: 300;
    color: var(--text-secondary);
    transition: color var(--transition);
}

.footer-links a:hover {
    color: var(--gold);
}

.footer-text {
    font-family: var(--font-sans);
    font-size: 0.9rem;
    font-weight: 300;
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 4px;
}

.footer-text a {
    color: var(--text-secondary);
}

.footer-text a:hover {
    color: var(--gold);
}

.footer-text-highlight {
    font-family: var(--font-serif);
    font-size: 1.2rem;
    color: var(--gold);
    margin-top: 4px;
}

.footer-bottom {
    text-align: center;
    padding: 24px 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    margin-top: 40px;
}

.footer-bottom p {
    font-family: var(--font-sans);
    font-size: 0.8rem;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.4);
    letter-spacing: 1px;
}

/* ─── EVENTS GALLERY ─── */
.events-gallery {
    background: var(--bg-secondary);
    padding: 80px 40px;
}

.events-gallery-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.events-card {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    cursor: pointer;
    aspect-ratio: 3/4;
}

.events-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.events-card:hover img {
    transform: scale(1.06);
}

.events-card-info {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 32px 24px;
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.85) 0%, rgba(0, 0, 0, 0.4) 60%, transparent 100%);
}

.events-card-info h3 {
    font-family: var(--font-serif);
    font-size: 1.4rem;
    font-weight: 400;
    letter-spacing: 2px;
    color: var(--gold);
    margin-bottom: 8px;
}

.events-card-info p {
    font-family: var(--font-sans);
    font-size: 0.8rem;
    font-weight: 300;
    color: var(--text-secondary);
    line-height: 1.6;
    opacity: 0.85;
}

/* ─── GSAP ANIMATION INITIAL STATES ─── */
/* GSAP sets inline styles — these are fallback initial states */
[data-animate] {
    opacity: 0;
    will-change: opacity, transform, filter;
}

/* ─── RESPONSIVE ─── */
@media (max-width: 1024px) {
    :root {
        --section-padding: 80px;
    }

    .nav-links-left,
    .nav-links-right {
        display: none;
    }

    .nav-container {
        display: grid;
        grid-template-columns: 1fr auto 1fr;
        align-items: center;
        gap: 12px;
    }

    .nav-logo {
        grid-column: 2;
        justify-self: center;
    }

    .hamburger {
        grid-column: 3;
        justify-self: end;
    }

    .hamburger {
        display: flex;
    }

    .navbar {
        padding: 16px 24px;
    }

    .split-section {
        grid-template-columns: 1fr;
    }

    .split-section.split-reverse {
        direction: ltr;
    }

    .split-section.split-reverse .split-content {
        order: 2;
    }

    .split-section.split-reverse .split-image {
        order: 1;
    }

    .split-image {
        min-height: 400px;
    }

    .split-content {
        padding: 60px 40px;
    }

    .contact-container {
        grid-template-columns: 1fr;
    }

    .contact-map {
        min-height: 350px;
    }

    .contact-form-container {
        max-width: 100%;
        padding: 60px 40px;
    }

    .footer-container {
        grid-template-columns: 1fr 1fr;
    }

    .gallery-grid {
        grid-template-columns: repeat(3, 1fr);
        grid-auto-rows: 220px;
    }

    .testimonial-track {
        grid-template-columns: repeat(2, 1fr);
    }

    .testimonial-card:nth-child(n+5) {
        display: none;
    }

    .cuisine-grid-rich {
        grid-template-columns: repeat(3, 1fr);
    }

    .cuisine-feature {
        aspect-ratio: 16/7;
    }

    .events-gallery-inner {
        grid-template-columns: repeat(2, 1fr);
    }

    .events-card:last-child {
        grid-column: span 2;
    }
}

@media (max-width: 768px) {
    :root {
        --section-padding: 60px;
    }

    .hero-title span {
        font-size: 2.2rem;
    }

    .hero-tagline {
        font-size: 1.1rem;
    }

    .hero-subtitle {
        font-size: 0.85rem;
        letter-spacing: 2px;
    }

    .hero-cta {
        flex-direction: column;
        align-items: center;
        gap: 12px;
    }

    .hero-cta .btn {
        width: 260px;
        text-align: center;
    }

    .cuisine-grid-rich {
        grid-template-columns: repeat(2, 1fr);
    }

    .cuisine-feature {
        aspect-ratio: 16/9;
    }

    .cuisine-label {
        font-size: 1.5rem;
    }

    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .gallery-item-wide {
        grid-column: span 2;
    }

    .gallery-item-tall {
        grid-row: span 1;
        aspect-ratio: 1;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .testimonial-track {
        grid-template-columns: 1fr;
    }

    .testimonial-card:nth-child(n+4) {
        display: none;
    }

    .newsletter-form {
        flex-direction: column;
    }

    .footer-container {
        grid-template-columns: 1fr;
        gap: 30px;
        padding: 60px 24px 30px;
    }

    .split-content {
        padding: 50px 24px;
    }

    .contact-social {
        flex-direction: column;
    }

    .section-title {
        font-size: 2.2rem;
    }

    .section-title-dark {
        font-size: 2.2rem;
    }

    .events-gallery {
        padding: 50px 20px;
    }

    .events-gallery-inner {
        grid-template-columns: 1fr;
    }

    .events-card {
        aspect-ratio: 16/9;
    }

    .events-card:last-child {
        grid-column: span 1;
    }
}

@media (max-width: 480px) {
    .logo-main {
        font-size: 1.8rem;
        letter-spacing: 8px;
    }

    .logo-sub {
        letter-spacing: 4px;
    }

    .hero-title span {
        font-size: 1.8rem;
    }

    .script-text-gold,
    .script-text {
        font-size: 1.6rem;
    }

    .section-title,
    .section-title-dark {
        font-size: 1.8rem;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
    }

    .gallery-item-wide {
        grid-column: span 1;
    }

    .btn {
        padding: 12px 28px;
        font-size: 0.7rem;
    }
}