/* ============================================================
   کافه دژبار — Premium Dark Theme
   Colors: Black · Gold · Emerald · Coffee
   ============================================================ */

:root {
    --bg-primary: #08080c;
    --bg-secondary: #0f0f14;
    --bg-card: rgba(255, 255, 255, 0.04);
    --bg-glass: rgba(255, 255, 255, 0.06);
    --border-glass: rgba(255, 255, 255, 0.1);
    --gold: #d4af37;
    --gold-light: #f0d060;
    --gold-dark: #a68a2a;
    --emerald: #2d6a4f;
    --emerald-light: #52b788;
    --coffee: #4a3728;
    --coffee-light: #8b6914;
    --text-primary: #f5f5f7;
    --text-secondary: rgba(245, 245, 247, 0.65);
    --text-muted: rgba(245, 245, 247, 0.4);
    --gradient-gold: linear-gradient(135deg, #d4af37 0%, #f0d060 50%, #a68a2a 100%);
    --gradient-hero: linear-gradient(180deg, rgba(8,8,12,0.3) 0%, rgba(8,8,12,0.85) 60%, #08080c 100%);
    --shadow-gold: 0 0 40px rgba(212, 175, 55, 0.15);
    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --radius-xl: 32px;
    --transition: 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    --font-display: 'Vazirmatn', system-ui, sans-serif;
}

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

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

body {
    font-family: var(--font-display);
    background: var(--bg-primary);
    color: var(--text-primary);
    line-height: 1.7;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

::selection {
    background: var(--gold);
    color: var(--bg-primary);
}

a {
    color: inherit;
    text-decoration: none;
    transition: color var(--transition);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

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

.section {
    padding: 6rem 0;
    position: relative;
}

.section-label {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 1rem;
}

.section-title {
    font-size: clamp(1.75rem, 4vw, 2.75rem);
    font-weight: 800;
    line-height: 1.25;
    margin-bottom: 1rem;
}

.section-subtitle {
    font-size: 1.05rem;
    color: var(--text-secondary);
    max-width: 600px;
}

.text-gold { color: var(--gold); }
.text-emerald { color: var(--emerald-light); }

/* ── Glass Card ── */
.glass-card {
    background: var(--bg-glass);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--border-glass);
    border-radius: var(--radius-lg);
    transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}

.glass-card:hover {
    transform: translateY(-4px);
    border-color: rgba(212, 175, 55, 0.25);
    box-shadow: var(--shadow-gold);
}

/* ── Buttons ── */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.85rem 2rem;
    font-family: var(--font-display);
    font-size: 0.95rem;
    font-weight: 600;
    border-radius: 50px;
    border: none;
    cursor: pointer;
    transition: all var(--transition);
    white-space: nowrap;
}

.btn-gold {
    background: var(--gradient-gold);
    color: var(--bg-primary);
    box-shadow: 0 4px 20px rgba(212, 175, 55, 0.3);
}

.btn-gold:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(212, 175, 55, 0.45);
    color: var(--bg-primary);
}

.btn-outline {
    background: transparent;
    color: var(--text-primary);
    border: 1px solid var(--border-glass);
    backdrop-filter: blur(10px);
}

.btn-outline:hover {
    border-color: var(--gold);
    color: var(--gold);
    background: rgba(212, 175, 55, 0.08);
}

.btn-sm {
    padding: 0.6rem 1.25rem;
    font-size: 0.85rem;
}

/* ── Header / Navbar ── */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 1rem 0;
    transition: all var(--transition);
}

.site-header.scrolled {
    background: rgba(8, 8, 12, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border-glass);
    padding: 0.65rem 0;
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1.35rem;
    font-weight: 800;
    letter-spacing: -0.02em;
}

.logo-icon {
    width: 42px;
    height: 42px;
    background: var(--gradient-gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: var(--bg-primary);
    box-shadow: var(--shadow-gold);
}

.logo span {
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

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

.nav-links a {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-secondary);
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    right: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-gold);
    transition: width var(--transition);
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--text-primary);
}

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

.nav-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.chip-badge {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.4rem 1rem;
    background: var(--bg-glass);
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--gold);
}

.chip-badge .chip-icon {
    width: 20px;
    height: 20px;
    background: var(--gradient-gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.6rem;
    color: var(--bg-primary);
}

/* Hamburger — Poker Chips */
.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    z-index: 1001;
}

.menu-toggle .chip-line {
    width: 28px;
    height: 3px;
    background: var(--gold);
    border-radius: 2px;
    transition: all var(--transition);
    transform-origin: center;
}

.menu-toggle.active .chip-line:nth-child(1) {
    transform: rotate(45deg) translate(5px, 6px);
}

.menu-toggle.active .chip-line:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
}

.menu-toggle.active .chip-line:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -6px);
}

/* Mobile Nav */
.mobile-nav {
    position: fixed;
    inset: 0;
    background: rgba(8, 8, 12, 0.97);
    backdrop-filter: blur(30px);
    z-index: 999;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    opacity: 0;
    visibility: hidden;
    transition: all var(--transition);
}

.mobile-nav.open {
    opacity: 1;
    visibility: visible;
}

.mobile-nav a {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-secondary);
    transform: translateY(20px);
    opacity: 0;
    transition: all 0.5s ease;
}

.mobile-nav.open a {
    transform: translateY(0);
    opacity: 1;
}

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

/* ── Hero ── */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

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

.hero-bg video,
.hero-bg .hero-fallback {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-fallback {
    background:
        radial-gradient(ellipse at 30% 50%, rgba(45, 106, 79, 0.3) 0%, transparent 60%),
        radial-gradient(ellipse at 70% 30%, rgba(212, 175, 55, 0.15) 0%, transparent 50%),
        linear-gradient(180deg, #0a0a10 0%, #08080c 100%);
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: var(--gradient-hero);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    padding: 8rem 0 4rem;
    max-width: 800px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1.25rem;
    background: var(--bg-glass);
    border: 1px solid var(--border-glass);
    border-radius: 50px;
    font-size: 0.85rem;
    color: var(--gold);
    margin-bottom: 1.5rem;
    backdrop-filter: blur(10px);
}

.hero-title {
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    letter-spacing: -0.03em;
}

.hero-title .highlight {
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-desc {
    font-size: 1.15rem;
    color: var(--text-secondary);
    margin-bottom: 2.5rem;
    max-width: 560px;
    line-height: 1.8;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 3rem;
}

.hero-stats {
    display: flex;
    gap: 3rem;
    flex-wrap: wrap;
}

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

.stat-number {
    font-size: 2rem;
    font-weight: 800;
    color: var(--gold);
    line-height: 1;
}

.stat-label {
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-top: 0.25rem;
}

.hero-scroll {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-muted);
    font-size: 0.75rem;
    animation: float 2s ease-in-out infinite;
}

.hero-scroll .scroll-line {
    width: 1px;
    height: 40px;
    background: linear-gradient(to bottom, var(--gold), transparent);
}

@keyframes float {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(8px); }
}

/* Floating suits */
.hero-suits {
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
    overflow: hidden;
}

.suit {
    position: absolute;
    font-size: 4rem;
    opacity: 0.04;
    animation: drift 20s linear infinite;
}

.suit:nth-child(1) { top: 15%; right: 10%; animation-delay: 0s; }
.suit:nth-child(2) { top: 60%; right: 25%; animation-delay: -5s; font-size: 6rem; }
.suit:nth-child(3) { top: 30%; left: 15%; animation-delay: -10s; }
.suit:nth-child(4) { bottom: 20%; left: 8%; animation-delay: -15s; font-size: 5rem; }

@keyframes drift {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-30px) rotate(10deg); }
}

/* ── Brand Section ── */
.brand-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.brand-image {
    position: relative;
    border-radius: var(--radius-xl);
    overflow: hidden;
    aspect-ratio: 4/5;
}

.brand-image-bg {
    width: 100%;
    height: 100%;
    background:
        linear-gradient(135deg, rgba(45, 106, 79, 0.4) 0%, rgba(74, 55, 40, 0.6) 100%),
        url('https://images.unsplash.com/photo-1495474472287-4d71bcdd2085?w=800&q=80') center/cover;
}

.brand-image-frame {
    position: absolute;
    inset: 1.5rem;
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: var(--radius-lg);
    pointer-events: none;
}

.brand-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-top: 2rem;
}

.brand-feature {
    padding: 1.25rem;
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
}

.brand-feature-icon {
    width: 40px;
    height: 40px;
    min-width: 40px;
    background: rgba(212, 175, 55, 0.12);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
}

/* ── Space Gallery ── */
.space-slider {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.space-card {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    aspect-ratio: 3/4;
    cursor: pointer;
}

.space-card-bg {
    width: 100%;
    height: 100%;
    transition: transform 0.6s ease;
}

.space-card:hover .space-card-bg {
    transform: scale(1.08);
}

.space-card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(8,8,12,0.9) 0%, transparent 60%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 1.5rem;
}

.space-card h3 {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 0.25rem;
}

.space-card p {
    font-size: 0.85rem;
    color: var(--text-secondary);
}

/* ── Menu Preview ── */
.menu-tabs {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
    margin-bottom: 2.5rem;
    justify-content: center;
}

.menu-tab {
    padding: 0.6rem 1.5rem;
    background: var(--bg-glass);
    border: 1px solid var(--border-glass);
    border-radius: 50px;
    font-family: var(--font-display);
    font-size: 0.9rem;
    color: var(--text-secondary);
    cursor: pointer;
    transition: all var(--transition);
}

.menu-tab.active,
.menu-tab:hover {
    background: rgba(212, 175, 55, 0.15);
    border-color: var(--gold);
    color: var(--gold);
}

.menu-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 1.5rem;
}

.menu-item {
    padding: 0;
    overflow: hidden;
}

.menu-item-image {
    height: 200px;
    background-size: cover;
    background-position: center;
    position: relative;
}

.menu-item-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    padding: 0.3rem 0.75rem;
    background: var(--emerald);
    color: #fff;
    font-size: 0.75rem;
    font-weight: 600;
    border-radius: 50px;
}

.menu-item-body {
    padding: 1.25rem;
}

.menu-item-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 0.5rem;
}

.menu-item-name {
    font-size: 1.05rem;
    font-weight: 700;
}

.menu-item-price {
    font-size: 1rem;
    font-weight: 700;
    color: var(--gold);
    white-space: nowrap;
}

.menu-item-desc {
    font-size: 0.85rem;
    color: var(--text-secondary);
    margin-bottom: 1rem;
}

.menu-item-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.menu-item-rating {
    display: flex;
    align-items: center;
    gap: 0.25rem;
    font-size: 0.85rem;
    color: var(--gold);
}

/* ── Popular Drinks ── */
.drinks-showcase {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 2rem;
    align-items: stretch;
}

.drink-featured {
    position: relative;
    border-radius: var(--radius-xl);
    overflow: hidden;
    min-height: 480px;
    display: flex;
    align-items: flex-end;
}

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

.drink-featured-overlay {
    position: relative;
    z-index: 1;
    padding: 2.5rem;
    background: linear-gradient(to top, rgba(8,8,12,0.95) 0%, transparent 100%);
    width: 100%;
}

.drink-featured h3 {
    font-size: 1.75rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
}

.drinks-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.drink-card {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 1.25rem;
}

.drink-thumb {
    width: 64px;
    height: 64px;
    border-radius: var(--radius-md);
    background-size: cover;
    background-position: center;
    flex-shrink: 0;
}

.drink-info h4 {
    font-size: 0.95rem;
    font-weight: 700;
    margin-bottom: 0.15rem;
}

.drink-info p {
    font-size: 0.8rem;
    color: var(--text-secondary);
}

.drink-price {
    margin-right: auto;
    font-weight: 700;
    color: var(--gold);
    font-size: 0.95rem;
}

/* ── Events ── */
.events-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.event-card {
    padding: 0;
    overflow: hidden;
}

.event-date {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.25rem;
    border-bottom: 1px solid var(--border-glass);
}

.event-date-day {
    font-size: 2rem;
    font-weight: 900;
    color: var(--gold);
    line-height: 1;
}

.event-date-month {
    font-size: 0.8rem;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.event-body {
    padding: 1.25rem;
}

.event-body h3 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

/* ── Discounts Banner ── */
.discount-banner {
    position: relative;
    border-radius: var(--radius-xl);
    overflow: hidden;
    padding: 3rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    background:
        radial-gradient(ellipse at 0% 50%, rgba(212, 175, 55, 0.2) 0%, transparent 60%),
        radial-gradient(ellipse at 100% 50%, rgba(45, 106, 79, 0.2) 0%, transparent 60%),
        var(--bg-secondary);
    border: 1px solid var(--border-glass);
}

.discount-percent {
    font-size: 4rem;
    font-weight: 900;
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
}

/* ── VIP Tables ── */
.vip-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

.vip-card {
    text-align: center;
    padding: 2rem 1.5rem;
}

.vip-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 1rem;
    background: rgba(212, 175, 55, 0.1);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
}

.vip-card h3 {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.vip-card p {
    font-size: 0.8rem;
    color: var(--text-secondary);
    margin-bottom: 1rem;
}

.vip-capacity {
    font-size: 0.75rem;
    color: var(--gold);
    font-weight: 600;
}

/* ── Chip Wallet / Loyalty ── */
.loyalty-section {
    background:
        radial-gradient(ellipse at 50% 0%, rgba(212, 175, 55, 0.08) 0%, transparent 60%),
        var(--bg-secondary);
}

.loyalty-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.chip-wallet-demo {
    padding: 2.5rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.chip-wallet-demo::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: conic-gradient(from 0deg, transparent, rgba(212,175,55,0.05), transparent);
    animation: rotate 10s linear infinite;
}

@keyframes rotate {
    to { transform: rotate(360deg); }
}

.chip-stack {
    position: relative;
    z-index: 1;
}

.chip-amount {
    font-size: 3.5rem;
    font-weight: 900;
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
}

.chip-label {
    font-size: 1rem;
    color: var(--text-secondary);
    margin-top: 0.5rem;
}

.rank-levels {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-top: 2rem;
}

.rank-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.85rem 1.25rem;
    border-radius: var(--radius-md);
    transition: all var(--transition);
}

.rank-item:hover,
.rank-item.active {
    background: rgba(212, 175, 55, 0.1);
    border-color: rgba(212, 175, 55, 0.3);
}

.rank-symbol {
    font-size: 1.5rem;
    width: 40px;
    text-align: center;
}

.rank-name {
    font-weight: 600;
    font-size: 0.95rem;
}

.rank-desc {
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-right: auto;
}

/* ── Testimonials ── */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.testimonial-card {
    padding: 2rem;
}

.testimonial-stars {
    color: var(--gold);
    font-size: 0.9rem;
    margin-bottom: 1rem;
    letter-spacing: 2px;
}

.testimonial-text {
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 1.5rem;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.author-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--gradient-gold);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    color: var(--bg-primary);
    font-size: 0.9rem;
}

.author-name {
    font-weight: 600;
    font-size: 0.9rem;
}

.author-rank {
    font-size: 0.75rem;
    color: var(--gold);
}

/* ── Reservation CTA ── */
.reservation-cta {
    text-align: center;
    padding: 5rem 2rem;
    border-radius: var(--radius-xl);
    background:
        linear-gradient(135deg, rgba(45, 106, 79, 0.2) 0%, rgba(212, 175, 55, 0.1) 100%),
        var(--bg-glass);
    border: 1px solid var(--border-glass);
    backdrop-filter: blur(20px);
}

.reservation-cta .section-title {
    margin-bottom: 1rem;
}

.reservation-form {
    display: flex;
    gap: 1rem;
    max-width: 600px;
    margin: 2rem auto 0;
    flex-wrap: wrap;
    justify-content: center;
}

.form-input {
    flex: 1;
    min-width: 200px;
    padding: 0.85rem 1.25rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border-glass);
    border-radius: 50px;
    color: var(--text-primary);
    font-family: var(--font-display);
    font-size: 0.9rem;
    outline: none;
    transition: border-color var(--transition);
}

.form-input:focus {
    border-color: var(--gold);
}

.form-input::placeholder {
    color: var(--text-muted);
}

/* ── Footer ── */
.site-footer {
    background: var(--bg-secondary);
    border-top: 1px solid var(--border-glass);
    padding: 4rem 0 2rem;
}

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

.footer-brand p {
    color: var(--text-secondary);
    font-size: 0.9rem;
    margin-top: 1rem;
    max-width: 300px;
}

.footer-heading {
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--gold);
    margin-bottom: 1.25rem;
}

.footer-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.65rem;
}

.footer-links a {
    font-size: 0.9rem;
    color: var(--text-secondary);
}

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

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

.social-link {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--bg-glass);
    border: 1px solid var(--border-glass);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    transition: all var(--transition);
}

.social-link:hover {
    background: rgba(212, 175, 55, 0.15);
    border-color: var(--gold);
    color: var(--gold);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 2rem;
    border-top: 1px solid var(--border-glass);
    font-size: 0.8rem;
    color: var(--text-muted);
    flex-wrap: wrap;
    gap: 1rem;
}

/* ── Section Divider ── */
.section-divider {
    width: 60px;
    height: 3px;
    background: var(--gradient-gold);
    border-radius: 2px;
    margin-bottom: 1.5rem;
}

/* ── Responsive ── */
@media (max-width: 1024px) {
    .brand-grid,
    .loyalty-grid,
    .drinks-showcase {
        grid-template-columns: 1fr;
    }

    .space-slider,
    .events-grid,
    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
    }

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

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

@media (max-width: 768px) {
    .section {
        padding: 4rem 0;
    }

    .nav-links,
    .nav-actions .btn-outline {
        display: none;
    }

    .menu-toggle {
        display: flex;
    }

    .space-slider,
    .events-grid,
    .testimonials-grid,
    .vip-grid {
        grid-template-columns: 1fr;
    }

    .brand-features {
        grid-template-columns: 1fr;
    }

    .hero-stats {
        gap: 1.5rem;
    }

    .discount-banner {
        flex-direction: column;
        text-align: center;
        padding: 2rem;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .reservation-form {
        flex-direction: column;
    }

    .form-input {
        min-width: 100%;
    }
}

/* ── AOS overrides ── */
[data-aos] {
    pointer-events: auto;
}

/* ── Preloader ── */
.preloader {
    position: fixed;
    inset: 0;
    background: var(--bg-primary);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 1.5rem;
    transition: opacity 0.6s ease, visibility 0.6s ease;
}

.preloader.hidden {
    opacity: 0;
    visibility: hidden;
}

.preloader-chip {
    width: 60px;
    height: 60px;
    background: var(--gradient-gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--bg-primary);
    animation: pulse-chip 1.2s ease-in-out infinite;
    box-shadow: var(--shadow-gold);
}

@keyframes pulse-chip {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

.preloader-text {
    font-size: 0.85rem;
    color: var(--text-muted);
    letter-spacing: 0.2em;
}
