/* =============================================
   NANA CLUB - Premium Nightclub CSS
   Deep Black · Gold · Purple Palette
   ============================================= */

@import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@400;600;700;900&family=Montserrat:wght@300;400;500;600;700;800&family=Playfair+Display:wght@400;700;900&display=swap');

/* ─── RESET & BASE ─── */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

:root {
    --gold: #d4af37;
    --gold-light: #f0d060;
    --gold-dark: #a07820;
    --purple: #6b21a8;
    --purple-light: #9b51e0;
    --dark: #050508;
    --dark-card: #0d0d14;
    --dark-alt: #0a0a0f;
    --text: #e8e8f0;
    --text-muted: #8888aa;
    --border: rgba(212, 175, 55, 0.15);
    --transition: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    font-family: 'Montserrat', sans-serif;
    background: var(--dark);
    color: var(--text);
    overflow-x: hidden;
    line-height: 1.6;
}

.gold {
    color: var(--gold);
}

/* ─── PARTICLES CANVAS ─── */
#particles-canvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
}

/* ─── NOISE OVERLAY ─── */
.noise-overlay {
    position: fixed;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.04'/%3E%3C/svg%3E");
    pointer-events: none;
    z-index: 1;
}

/* ─── TOP TICKER ─── */
.top-ticker {
    background: linear-gradient(90deg, #0a090a, #1a1008, #0a090a);
    border-bottom: 1px solid var(--border);
    overflow: hidden;
    height: 32px;
    position: relative;
    z-index: 100;
}

.ticker-track {
    display: flex;
    white-space: nowrap;
    animation: ticker 30s linear infinite;
    align-items: center;
    height: 100%;
    gap: 60px;
    padding-left: 100%;
}

.ticker-track span {
    font-size: 0.65rem;
    font-weight: 600;
    letter-spacing: 3px;
    color: var(--gold);
    text-transform: uppercase;
    flex-shrink: 0;
}

@keyframes ticker {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

/* ─── NAVBAR ─── */
.navbar {
    position: fixed;
    top: 32px;
    left: 0;
    right: 0;
    z-index: 200;
    padding: 16px 0;
    transition: var(--transition);
}

.navbar.scrolled {
    background: rgba(5, 5, 8, 0.96);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 10px 0;
    border-bottom: 1px solid var(--border);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.5);
}

.nav-inner {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 30px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 14px;
    text-decoration: none;
}

.logo-emblem {
    position: relative;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.logo-diamond {
    position: absolute;
    width: 36px;
    height: 36px;
    border: 2px solid var(--gold);
    transform: rotate(45deg);
    background: rgba(212, 175, 55, 0.05);
}

.logo-n {
    font-family: 'Cinzel', serif;
    font-size: 1.3rem;
    font-weight: 900;
    color: var(--gold);
    position: relative;
    z-index: 1;
    text-shadow: 0 0 20px rgba(212, 175, 55, 0.5);
}

.logo-text-wrap {
    display: flex;
    flex-direction: column;
    line-height: 1;
}

.logo-name {
    font-family: 'Cinzel', serif;
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--gold);
    letter-spacing: 4px;
}

.logo-sub {
    font-size: 0.55rem;
    letter-spacing: 3px;
    color: var(--text-muted);
    text-transform: uppercase;
}

.nav-links {
    list-style: none;
    display: flex;
    align-items: center;
    gap: 8px;
}

.nav-link {
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--text-muted);
    text-decoration: none;
    padding: 8px 14px;
    border-radius: 4px;
    transition: var(--transition);
}

.nav-link:hover {
    color: var(--gold);
}

.nav-reserve {
    background: linear-gradient(135deg, var(--gold-dark), var(--gold));
    color: #000 !important;
    border-radius: 100px;
    padding: 8px 20px;
}

.nav-reserve:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 20px rgba(212, 175, 55, 0.4);
    color: #000 !important;
}

.lang-switcher {
    display: flex;
    align-items: center;
    gap: 6px;
    margin-left: 10px;
    font-size: 0.70rem;
    font-weight: 600;
    color: var(--text-muted);
}

.lang-btn {
    cursor: pointer;
    padding: 2px 4px;
    border-radius: 4px;
    transition: var(--transition);
}

.lang-btn:hover {
    color: var(--gold);
}

.lang-btn.active {
    color: var(--gold);
    font-weight: 700;
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
    z-index: 210;
}

.hamburger span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--gold);
    transition: var(--transition);
    border-radius: 2px;
}

.hamburger.open span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.open span:nth-child(2) {
    opacity: 0;
}

.hamburger.open span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* ─── SECTION HELPERS ─── */
.container {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 30px;
    z-index: 2;
}

section {
    position: relative;
    overflow: hidden;
}

.section-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 0.65rem;
    letter-spacing: 5px;
    text-transform: uppercase;
    color: var(--gold);
    font-weight: 700;
    margin-bottom: 24px;
    padding: 6px 16px;
    border: 1px solid rgba(212, 175, 55, 0.2);
    background: rgba(212, 175, 55, 0.03);
    border-radius: 4px;
}

.section-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2rem, 5vw, 3.8rem);
    font-weight: 900;
    line-height: 1.1;
    color: #fff;
    margin-bottom: 24px;
}

.section-subtitle {
    font-size: 1rem;
    color: var(--text-muted);
    max-width: 500px;
    margin: 0 auto;
}

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

.section-glow-left {
    position: absolute;
    left: -200px;
    top: 50%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(107, 33, 168, 0.12) 0%, transparent 70%);
    pointer-events: none;
    z-index: 0;
}

.section-glow-right {
    position: absolute;
    right: -200px;
    top: 50%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.08) 0%, transparent 70%);
    pointer-events: none;
    z-index: 0;
}

/* ─── CTA BUTTONS ─── */
.cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 32px;
    border-radius: 100px;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    text-decoration: none;
    transition: var(--transition);
    cursor: pointer;
    border: none;
    font-family: 'Montserrat', sans-serif;
}

.cta-primary {
    background: linear-gradient(135deg, #1a7a3a, #25d366);
    color: #fff;
    box-shadow: 0 4px 25px rgba(37, 211, 102, 0.35);
}

.cta-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 35px rgba(37, 211, 102, 0.5);
}

.cta-ghost {
    background: transparent;
    border: 1px solid var(--gold);
    color: var(--gold);
}

.cta-ghost:hover {
    background: var(--gold);
    color: #000;
    transform: translateY(-3px);
}

.cta-gold {
    background: linear-gradient(135deg, var(--gold-dark), var(--gold));
    color: #000;
    box-shadow: 0 4px 25px rgba(212, 175, 55, 0.35);
}

.cta-gold:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 35px rgba(212, 175, 55, 0.5);
}

.cta-wa {
    background: linear-gradient(135deg, #1a7a3a, #25d366);
    color: #fff;
    box-shadow: 0 4px 25px rgba(37, 211, 102, 0.3);
}

.cta-wa:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(37, 211, 102, 0.5);
}

/* ─── HERO ─── */
.hero-section {
    height: 100vh;
    min-height: 700px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-bg-slider {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero-slide {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 1.5s ease-in-out;
}

.hero-slide.active {
    opacity: 1;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(0deg,
            rgba(5, 5, 8, 1) 0%,
            rgba(5, 5, 8, 0.7) 30%,
            rgba(5, 5, 8, 0.4) 60%,
            rgba(5, 5, 8, 0.6) 100%);
    z-index: 1;
}

.hero-lasers {
    position: absolute;
    inset: 0;
    z-index: 2;
    overflow: hidden;
}

.laser {
    position: absolute;
    bottom: 0;
    width: 2px;
    height: 60%;
    transform-origin: bottom center;
    animation: laserSweep 6s ease-in-out infinite;
}

.l1 {
    left: 20%;
    background: linear-gradient(to top, rgba(212, 175, 55, 0.4), transparent);
    animation-delay: 0s;
}

.l2 {
    left: 40%;
    background: linear-gradient(to top, rgba(107, 33, 168, 0.4), transparent);
    animation-delay: 1.5s;
}

.l3 {
    left: 65%;
    background: linear-gradient(to top, rgba(212, 175, 55, 0.3), transparent);
    animation-delay: 3s;
}

.l4 {
    left: 85%;
    background: linear-gradient(to top, rgba(107, 33, 168, 0.35), transparent);
    animation-delay: 4.5s;
}

@keyframes laserSweep {

    0%,
    100% {
        transform: rotate(-20deg);
        opacity: 0.3;
    }

    50% {
        transform: rotate(20deg);
        opacity: 0.8;
    }
}

.hero-content {
    position: relative;
    z-index: 5;
    text-align: center;
    padding: 0 20px;
    max-width: 900px;
}

.hero-badge {
    font-size: 0.6rem;
    letter-spacing: 5px;
    color: var(--gold);
    font-weight: 700;
    margin-bottom: 20px;
    text-transform: uppercase;
    animation: fadeInDown 1s ease forwards;
}

.hero-title {
    font-family: 'Cinzel', serif;
    display: flex;
    flex-direction: column;
    align-items: center;
    line-height: 0.9;
    margin-bottom: 24px;
    animation: fadeInUp 1s ease 0.2s both;
}

.ht-nana {
    font-size: clamp(5rem, 15vw, 11rem);
    font-weight: 900;
    color: transparent;
    -webkit-text-stroke: 2px var(--gold);
    line-height: 1;
}

.ht-club {
    font-size: clamp(2.5rem, 8vw, 6rem);
    font-weight: 400;
    color: #fff;
    letter-spacing: 20px;
}

.hero-subtitle {
    font-size: clamp(0.9rem, 1.8vw, 1.1rem);
    letter-spacing: 5px;
    text-transform: uppercase;
    color: var(--gold);
    margin: 0 auto 24px;
    padding: 10px 30px;
    border: 1px solid rgba(212, 175, 55, 0.3);
    background: rgba(212, 175, 55, 0.05);
    backdrop-filter: blur(5px);
    display: inline-block;
    border-radius: 50px;
    animation: fadeInUp 1s ease 0.4s both;
}

.hero-desc {
    color: var(--text-muted);
    margin-bottom: 40px;
    font-size: 0.95rem;
    animation: fadeInUp 1s ease 0.5s both;
}

.hero-cta-group {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
    animation: fadeInUp 1s ease 0.6s both;
}

.hero-scroll-hint {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    font-size: 0.6rem;
    letter-spacing: 4px;
    color: var(--text-muted);
    animation: fadeInUp 1s ease 1s both;
}

.scroll-line {
    width: 1px;
    height: 50px;
    background: linear-gradient(to bottom, var(--gold), transparent);
    animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {

    0%,
    100% {
        height: 30px;
        opacity: 0.5;
    }

    50% {
        height: 60px;
        opacity: 1;
    }
}

.hero-social {
    position: absolute;
    right: 40px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 5;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.hero-social a {
    width: 36px;
    height: 36px;
    border: 1px solid var(--border);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
    font-size: 0.85rem;
    text-decoration: none;
    transition: var(--transition);
}

.hero-social a:hover {
    border-color: var(--gold);
    color: var(--gold);
    transform: scale(1.15);
}

/* ─── ABOUT ─── */
.about-section {
    padding: 120px 0;
    background: var(--dark-alt);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.about-desc {
    color: var(--text-muted);
    margin-bottom: 24px;
    font-size: 0.95rem;
    line-height: 1.8;
}

.about-stats {
    display: flex;
    gap: 40px;
    margin-top: 40px;
    padding-top: 40px;
    border-top: 1px solid var(--border);
}

.stat-item {
    text-align: center;
}

.stat-num {
    font-family: 'Cinzel', serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--gold);
    display: block;
}

.stat-label {
    font-size: 0.7rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--text-muted);
}

.about-visual {
    position: relative;
}

.about-img-frame {
    position: relative;
}

.about-img {
    width: 100%;
    border-radius: 8px;
    display: block;
}

.about-img-border {
    position: absolute;
    inset: -8px;
    border: 1px solid var(--gold);
    border-radius: 12px;
    opacity: 0.4;
}

.about-float-badge {
    position: absolute;
    bottom: -20px;
    left: -20px;
    background: linear-gradient(135deg, var(--gold-dark), var(--gold));
    color: #000;
    padding: 14px 20px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 1px;
    box-shadow: 0 8px 30px rgba(212, 175, 55, 0.3);
}

/* ─── GOLD BAR ─── */
.gold-section {
    padding: 140px 0;
    min-height: 600px;
}

.gold-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
}

.gold-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(5, 5, 8, 0.97) 0%, rgba(20, 14, 5, 0.9) 50%, rgba(5, 5, 8, 0.97) 100%);
}

.gold-content {
    max-width: 680px;
}

.gold-badge {
    border: 1px solid var(--gold);
    padding: 4px 14px;
    border-radius: 100px;
}

.gold-desc {
    color: var(--text-muted);
    font-size: 1rem;
    line-height: 1.9;
    margin-bottom: 40px;
}

.gold-features {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-bottom: 40px;
}

.gf-item {
    text-align: center;
    padding: 20px 10px;
    border: 1px solid var(--border);
    border-radius: 8px;
    background: rgba(212, 175, 55, 0.03);
    transition: var(--transition);
}

.gf-item:hover {
    border-color: var(--gold);
    background: rgba(212, 175, 55, 0.06);
    transform: translateY(-4px);
}

.gf-icon {
    font-size: 1.8rem;
    color: var(--gold);
    margin-bottom: 10px;
}

.gf-label {
    font-size: 0.65rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--text-muted);
}

/* ─── VIP SECTION ─── */
.vip-section {
    padding: 120px 0;
    background: var(--dark);
}

.vip-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.vip-card {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    height: 420px;
    border: 1px solid var(--border);
    transition: var(--transition);
}

.vip-card:hover {
    transform: translateY(-8px);
    border-color: var(--gold);
    box-shadow: 0 20px 60px rgba(212, 175, 55, 0.15);
}

.vip-card-img {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    transition: transform 0.6s ease;
}

.vip-card:hover .vip-card-img {
    transform: scale(1.08);
}

.vip-card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(0deg, rgba(5, 5, 8, 0.95) 0%, rgba(5, 5, 8, 0.4) 50%, transparent 100%);
    display: flex;
    align-items: flex-end;
    padding: 30px;
    transition: var(--transition);
}

.vip-card-content {
    color: #fff;
}

.vip-card-content i {
    font-size: 1.8rem;
    color: var(--gold);
    margin-bottom: 12px;
    display: block;
}

.vip-card-content h3 {
    font-family: 'Cinzel', serif;
    font-size: 1.3rem;
    margin-bottom: 8px;
}

.vip-card-content p {
    font-size: 0.85rem;
    color: var(--text-muted);
}

/* ─── EVENTS ─── */
.events-section {
    padding: 120px 0;
    background: var(--dark-alt);
    position: relative;
    overflow: hidden;
}

.events-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.event-card {
    position: relative;
    height: 480px;
    background: #0a0a12;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
    display: flex;
    flex-direction: column;
}

.event-card:hover {
    transform: translateY(-10px);
    border-color: var(--gold);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.6), 0 0 20px rgba(212, 175, 55, 0.1);
}

.event-poster {
    position: absolute;
    inset: 0;
    z-index: 1;
}

.event-poster img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s ease;
}

.event-card:hover .event-poster img {
    transform: scale(1.1);
}

.event-poster::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top,
            rgba(5, 5, 10, 1) 0%,
            rgba(5, 5, 10, 0.8) 30%,
            rgba(5, 5, 10, 0) 60%,
            rgba(5, 5, 10, 0.1) 100%);
    z-index: 2;
}

.event-content {
    position: relative;
    z-index: 3;
    margin-top: auto;
    padding: 30px;
    width: 100%;
}

.event-date-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: rgba(10, 10, 18, 0.8);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(212, 175, 55, 0.3);
    padding: 8px 15px;
    border-radius: 12px;
    text-align: center;
    z-index: 4;
}

.ev-day {
    display: block;
    font-size: 0.6rem;
    font-weight: 800;
    letter-spacing: 2px;
    color: var(--gold);
    margin-bottom: 2px;
}

.ev-date-num {
    display: block;
    font-family: 'Cinzel', serif;
    font-size: 1.2rem;
    font-weight: 700;
    color: #fff;
}

.ev-music-tag {
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 2px;
    color: var(--gold);
    text-transform: uppercase;
    margin-bottom: 10px;
}

.event-content h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    font-weight: 900;
    color: #fff;
    margin-bottom: 15px;
    line-height: 1.2;
}

.event-content p {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 20px;
    line-height: 1.6;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.ev-reserve-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    padding: 14px;
    background: var(--gold);
    color: #000;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 700;
    font-size: 0.8rem;
    letter-spacing: 1px;
    transition: all 0.3s ease;
}

.ev-reserve-btn:hover {
    background: #fff;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(212, 175, 55, 0.2);
}

.ev-reserve-btn i {
    font-size: 1rem;
}

/* ─── GALLERY ─── */
.gallery-section {
    padding: 120px 0;
    background: var(--dark);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(2, 280px);
    gap: 12px;
}

.gal-item {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    cursor: zoom-in;
    border: 1px solid var(--border);
    transition: var(--transition);
}

.gal-item.large {
    grid-column: span 2;
    grid-row: span 2;
}

.gal-item:hover {
    border-color: var(--gold);
    transform: scale(1.01);
}

.gal-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.gal-item:hover img {
    transform: scale(1.08);
}

.gal-overlay {
    position: absolute;
    inset: 0;
    background: rgba(5, 5, 8, 0);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    color: #fff;
    font-size: 1.5rem;
    opacity: 0;
}

.gal-item:hover .gal-overlay {
    background: rgba(5, 5, 8, 0.4);
    opacity: 1;
}

/* ─── CONTACT / RESERVE ─── */
.contact-section {
    padding: 140px 0;
}

.contact-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
}

.contact-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(5, 5, 8, 0.98) 0%, rgba(5, 5, 8, 0.85) 50%, rgba(20, 10, 35, 0.95) 100%);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
}

.contact-detail {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    margin-bottom: 28px;
}

.cd-icon {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: rgba(212, 175, 55, 0.1);
    border: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    font-size: 1rem;
    flex-shrink: 0;
}

.cd-text strong {
    display: block;
    font-size: 0.7rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 4px;
}

.cd-text span {
    color: var(--text-muted);
    font-size: 0.9rem;
}

.social-links {
    display: flex;
    gap: 12px;
    margin-top: 32px;
    flex-wrap: wrap;
}

.social-btn {
    width: 44px;
    height: 44px;
    border: 1px solid var(--border);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
    font-size: 1rem;
    text-decoration: none;
    transition: var(--transition);
}

.social-btn:hover {
    border-color: var(--gold);
    color: var(--gold);
    transform: translateY(-3px);
}

.wa-btn {
    background: rgba(37, 211, 102, 0.1);
    border-color: rgba(37, 211, 102, 0.3);
    color: #25d366;
}

.wa-btn:hover {
    background: #25d366;
    color: #fff;
    border-color: #25d366;
}

.reserve-form-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 40px;
    backdrop-filter: blur(10px);
}

.reserve-form-card h3 {
    font-family: 'Cinzel', serif;
    font-size: 1.3rem;
    color: var(--gold);
    margin-bottom: 28px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.rf-group {
    margin-bottom: 18px;
}

.rf-group label {
    display: block;
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-bottom: 8px;
}

.rf-group input,
.rf-group select,
.rf-group textarea {
    width: 100%;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid var(--border);
    border-radius: 8px;
    padding: 12px 16px;
    color: #fff;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.9rem;
    transition: var(--transition);
    outline: none;
}

.rf-group input:focus,
.rf-group select:focus,
.rf-group textarea:focus {
    border-color: var(--gold);
    background: rgba(212, 175, 55, 0.04);
}

.rf-group select option {
    background: #1a1a2e;
}

.rf-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

/* ─── FOOTER ─── */
.footer {
    background: var(--dark-card);
    border-top: 1px solid var(--border);
    padding: 50px 0 20px;
}

.footer-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 30px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
    text-align: center;
}

.footer-logo-wrap {
    display: flex;
    align-items: center;
    gap: 16px;
}

.footer-copy {
    font-size: 0.75rem;
    color: var(--text-muted);
    letter-spacing: 1px;
}

.footer-links {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
    justify-content: center;
}

.footer-links a {
    font-size: 0.7rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--text-muted);
    text-decoration: none;
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--gold);
}

/* ─── ANIMATIONS ─── */
@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-up {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.fade-up.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ─── RESPONSIVE ─── */
@media (max-width: 1024px) {
    .about-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .contact-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .vip-grid {
        grid-template-columns: 1fr 1fr;
    }

    .gold-features {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    .nav-links-wrapper {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: rgba(5, 5, 8, 0.98);
        display: flex;
        align-items: center;
        justify-content: center;
        opacity: 0;
        pointer-events: none;
        transition: var(--transition);
        z-index: 199;
    }

    .nav-links-wrapper.open {
        opacity: 1;
        pointer-events: all;
    }

    .nav-links {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }

    .nav-link {
        font-size: 1.1rem;
    }

    .hero-social {
        display: none;
    }

    .gallery-grid {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: auto;
    }

    .gal-item.large {
        grid-column: span 2;
        height: 220px;
        grid-row: span 1;
    }

    .vip-grid {
        grid-template-columns: 1fr;
    }

    .event-card {
        flex-direction: column;
        align-items: flex-start;
    }

    .about-stats {
        flex-direction: column;
        gap: 20px;
    }

    .rf-row {
        grid-template-columns: 1fr;
    }

    .gold-features {
        grid-template-columns: repeat(2, 1fr);
    }

    .hero-cta-group {
        flex-direction: column;
        align-items: center;
    }

    .events-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
}

@media (max-width: 580px) {
    .events-grid {
        grid-template-columns: 1fr;
    }
}

/* Lightbox Responsive */
@media (max-width: 768px) {
    #lightbox .lb-container button {
        width: 36px !important;
        height: 36px !important;
        font-size: 0.9rem !important;
    }

    #lightbox .lb-container button:first-of-type {
        left: 10px !important;
    }

    #lightbox .lb-container button:last-of-type {
        right: 10px !important;
    }
}

/* ─── RTL SUPPORT (Arabic) ─── */
[dir="rtl"] {
    text-align: right;
    font-family: 'Cairo', sans-serif;
}

[dir="rtl"] .hero-social {
    right: auto;
    left: 40px;
}

[dir="rtl"] .section-title {
    font-family: 'Cairo', sans-serif;
    font-weight: 700;
}

[dir="rtl"] .section-badge {
    letter-spacing: 1px;
}

[dir="rtl"] .about-float-badge {
    left: auto;
    right: -20px;
}

[dir="rtl"] .cd-icon {
    margin-right: 0;
    margin-left: 15px;
}

[dir="rtl"] .cd-text strong,
[dir="rtl"] .cd-text span {
    text-align: right;
    display: block;
}

[dir="rtl"] .lang-switcher {
    margin-left: 0;
    margin-right: 15px;
}

[dir="rtl"] .event-card img {
    margin-left: 0;
    margin-right: auto;
}

[dir="rtl"] .fa-chevron-right::before {
    content: "\f053";
    /* fontawesome left chevron */
}

[dir="rtl"] .fa-arrow-right::before {
    content: "\f060";
    /* fontawesome left arrow */
}

[dir="rtl"] .ev-reserve-btn i,
[dir="rtl"] .cta-btn i {
    margin-right: 0;
    margin-left: 10px;
}