/* ==============================================
   MIRROR ALAÇATI — Japanese Geisha Luxury Design
   ============================================== */

/* ---- Google Fonts ---- */
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;0,700;1,400&family=Inter:wght@300;400;500;600;700&family=Noto+Sans+JP:wght@300;400;500;700&display=swap');

/* ---- CSS Variables ---- */
:root {
    --deep-red: #8B0000;
    --crimson: #DC143C;
    --blood-red: #6B0000;
    --black: #0A0A0A;
    --dark-bg: #111111;
    --darker-bg: #0D0D0D;
    --card-bg: #161616;
    --gold: #C9A94E;
    --gold-light: #E8D48B;
    --gold-dark: #A08930;
    --white: #F5F5F5;
    --white-pure: #FFFFFF;
    --gray: #888888;
    --gray-light: #AAAAAA;
    --gray-dark: #333333;
    --glass: rgba(255, 255, 255, 0.04);
    --glass-border: rgba(255, 255, 255, 0.08);
    --glass-hover: rgba(255, 255, 255, 0.08);
    --red-glow: rgba(139, 0, 0, 0.4);
    --gold-glow: rgba(201, 169, 78, 0.3);

    --font-heading: 'Cormorant Garamond', serif;
    --font-body: 'Inter', sans-serif;
    --font-jp: 'Noto Sans JP', sans-serif;

    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);

    --shadow-sm: 0 2px 8px rgba(0,0,0,0.3);
    --shadow-md: 0 4px 20px rgba(0,0,0,0.4);
    --shadow-lg: 0 8px 40px rgba(0,0,0,0.5);
    --shadow-red: 0 4px 30px rgba(139, 0, 0, 0.3);
    --shadow-gold: 0 4px 30px rgba(201, 169, 78, 0.2);

    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 16px;
    --radius-xl: 24px;

    --max-width: 1200px;
    --nav-height: 80px;
}

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: var(--font-body);
    background: var(--black);
    color: var(--white);
    line-height: 1.6;
    overflow-x: hidden;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; height: auto; display: block; }
ul, ol { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
input, select, textarea { font-family: inherit; }

/* ---- Japanese Pattern Background ---- */
.jp-pattern {
    position: relative;
}
.jp-pattern::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23C9A94E' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    pointer-events: none;
    z-index: 0;
}

/* ---- Container ---- */
.container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 24px;
    position: relative;
    z-index: 1;
}

/* ---- Section ---- */
.section {
    padding: 100px 0;
    position: relative;
}

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

.section-header h2 {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 300;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--white);
    margin-bottom: 12px;
}

.section-header .gold-line {
    width: 60px;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
    margin: 16px auto;
}

.section-header p {
    color: var(--gray);
    font-size: 1rem;
    font-weight: 300;
    letter-spacing: 1px;
}

/* ---- Navigation ---- */
.navbar {
    position: fixed;
    top: 0; left: 0; right: 0;
    height: var(--nav-height);
    z-index: 1000;
    transition: var(--transition);
    backdrop-filter: blur(0px);
}

.navbar.scrolled {
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--glass-border);
    box-shadow: var(--shadow-md);
}

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

.nav-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    z-index: 1001;
}

.nav-logo img {
    height: 48px;
    width: auto;
}

.nav-logo .logo-text {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    font-weight: 400;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--gold);
}

.nav-logo .logo-text span {
    display: block;
    font-size: 0.55rem;
    letter-spacing: 5px;
    color: var(--gray);
    font-family: var(--font-body);
    font-weight: 300;
    margin-top: 2px;
}

.nav-menu-desktop {
    display: flex;
    align-items: center;
    gap: 32px;
}

/* Mobile full-screen menu - hidden on desktop */
.nav-menu {
    display: none;
}

.nav-menu-desktop a {
    font-size: 0.8rem;
    font-weight: 400;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--white);
    transition: var(--transition);
    position: relative;
}

.nav-menu-desktop a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--gold);
    transition: var(--transition);
}

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

.nav-menu-desktop a:hover::after {
    width: 100%;
}

.nav-menu-desktop a.active {
    color: var(--gold);
}

.nav-menu-desktop a.active::after {
    width: 100%;
}

/* Language Switcher */
.lang-switcher {
    position: relative;
    z-index: 1001;
}

.lang-current {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 6px 12px;
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-sm);
    cursor: pointer;
    font-size: 0.75rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: var(--transition);
    background: transparent;
    color: var(--white);
}

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

.lang-dropdown {
    position: absolute;
    top: calc(100% + 8px);
    right: 0;
    background: var(--dark-bg);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-md);
    padding: 8px 0;
    min-width: 160px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: var(--transition);
    box-shadow: var(--shadow-lg);
}

.lang-switcher:hover .lang-dropdown,
.lang-switcher.open .lang-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.lang-dropdown a {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 16px;
    font-size: 0.85rem;
    color: var(--gray-light);
    transition: var(--transition);
}

.lang-dropdown a:hover {
    background: var(--glass-hover);
    color: var(--gold);
}

.lang-dropdown a.active {
    color: var(--gold);
}

/* Mobile CTA Bar (hidden on desktop) */
.mobile-cta-bar {
    display: none;
}

/* Mobile Menu Toggle */
.nav-toggle {
    display: none;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    cursor: pointer;
    z-index: 1001;
    padding: 6px 8px;
}

.nav-toggle span {
    width: 22px;
    height: 2px;
    background: var(--white);
    transition: var(--transition);
    display: block;
}

.nav-toggle-label {
    font-size: 0.5rem;
    letter-spacing: 2px;
    color: var(--gray);
    text-transform: uppercase;
    font-family: var(--font-body);
    margin-top: 1px;
}

@media (max-width: 768px) {
    .nav-toggle {
        z-index: 10000;
    }
    .nav-logo {
        z-index: 10000;
    }
}

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

.nav-toggle.active span:nth-child(2) {
    opacity: 0;
}

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

.nav-toggle.active .nav-toggle-label {
    display: none;
}

/* Nav Menu Footer (phone & lang - mobile only) */
.nav-menu-footer {
    display: none;
}

/* ---- Hero Section ---- */
.hero {
    position: relative;
    height: 100vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-video {
    position: absolute;
    top: 0; left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}

.hero-overlay {
    position: absolute;
    top: 0; left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        180deg,
        rgba(10, 10, 10, 0.4) 0%,
        rgba(10, 10, 10, 0.2) 40%,
        rgba(10, 10, 10, 0.5) 70%,
        rgba(10, 10, 10, 0.95) 100%
    );
    z-index: 1;
}

.hero-overlay::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: radial-gradient(ellipse at center, rgba(139, 0, 0, 0.15) 0%, transparent 70%);
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 0 24px;
}

.hero-content .hero-badge {
    display: inline-block;
    padding: 6px 20px;
    border: 1px solid var(--gold);
    border-radius: 2px;
    font-size: 0.65rem;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 24px;
    font-family: var(--font-body);
    animation: fadeInDown 1s ease 0.2s both;
}

.hero-content h1 {
    font-family: var(--font-heading);
    font-size: clamp(2.5rem, 7vw, 5.5rem);
    font-weight: 300;
    letter-spacing: 8px;
    text-transform: uppercase;
    line-height: 1.1;
    margin-bottom: 16px;
    animation: fadeInUp 1s ease 0.4s both;
}

.hero-content h1 .text-red {
    color: var(--deep-red);
    text-shadow: 0 0 40px var(--red-glow);
}

.hero-content .hero-subtitle {
    font-size: clamp(0.9rem, 2vw, 1.2rem);
    color: var(--gray-light);
    font-weight: 300;
    letter-spacing: 3px;
    margin-bottom: 40px;
    animation: fadeInUp 1s ease 0.6s both;
}

.hero-buttons {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
    animation: fadeInUp 1s ease 0.8s both;
}

/* ---- Buttons ---- */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 32px;
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
    border-radius: var(--radius-sm);
    transition: var(--transition);
    border: 1px solid transparent;
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: linear-gradient(135deg, var(--deep-red), var(--crimson));
    color: var(--white);
    border-color: var(--deep-red);
    box-shadow: var(--shadow-red);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 40px rgba(139, 0, 0, 0.5);
    background: linear-gradient(135deg, var(--crimson), var(--deep-red));
}

.btn-outline {
    background: transparent;
    color: var(--gold);
    border-color: var(--gold);
}

.btn-outline:hover {
    background: var(--gold);
    color: var(--black);
    transform: translateY(-2px);
    box-shadow: var(--shadow-gold);
}

.btn-gold {
    background: linear-gradient(135deg, var(--gold-dark), var(--gold), var(--gold-light));
    color: var(--black);
    font-weight: 600;
}

.btn-gold:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 40px rgba(201, 169, 78, 0.4);
}

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

.btn-glass:hover {
    background: var(--glass-hover);
    border-color: var(--gold);
    color: var(--gold);
}

.btn-sm {
    padding: 8px 20px;
    font-size: 0.7rem;
}

.btn-lg {
    padding: 18px 40px;
    font-size: 0.85rem;
}

.btn-icon {
    width: 48px;
    height: 48px;
    padding: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

/* ---- Cards ---- */
.card {
    background: var(--card-bg);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-lg);
    padding: 32px;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
    opacity: 0;
    transition: var(--transition);
}

.card:hover {
    border-color: rgba(201, 169, 78, 0.2);
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.card:hover::before {
    opacity: 1;
}

.card-glass {
    background: var(--glass);
    backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
}

/* ---- Tonight's Event ---- */
.tonight-section {
    padding: 80px 0;
    background: var(--darker-bg);
}

.tonight-card {
    display: flex;
    align-items: center;
    gap: 40px;
    background: linear-gradient(135deg, var(--card-bg), rgba(139, 0, 0, 0.1));
    border: 1px solid rgba(139, 0, 0, 0.2);
    border-radius: var(--radius-lg);
    padding: 40px;
    position: relative;
    overflow: hidden;
}

.tonight-card::after {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(139, 0, 0, 0.15) 0%, transparent 70%);
    pointer-events: none;
}

.tonight-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 4px 16px;
    background: var(--deep-red);
    border-radius: 2px;
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--white);
    margin-bottom: 12px;
}

.tonight-badge .pulse {
    width: 8px;
    height: 8px;
    background: #ff4444;
    border-radius: 50%;
    animation: pulse 2s ease-in-out infinite;
}

.tonight-info h3 {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 400;
    letter-spacing: 2px;
    margin-bottom: 8px;
}

.tonight-info .dj-name {
    color: var(--gold);
    font-size: 1.1rem;
    font-weight: 500;
    margin-bottom: 6px;
}

.tonight-info .genre {
    color: var(--gray);
    font-size: 0.9rem;
}

.tonight-info .event-time {
    font-size: 0.85rem;
    color: var(--gray-light);
    margin-top: 8px;
}

/* ---- FOMO Section ---- */
.fomo-section {
    padding: 60px 0;
    text-align: center;
    background: linear-gradient(180deg, var(--darker-bg), var(--black));
    position: relative;
}

.fomo-counter {
    display: inline-flex;
    align-items: center;
    gap: 20px;
    padding: 24px 48px;
    background: linear-gradient(135deg, rgba(139, 0, 0, 0.2), rgba(139, 0, 0, 0.05));
    border: 1px solid rgba(139, 0, 0, 0.3);
    border-radius: var(--radius-lg);
    margin-bottom: 24px;
    animation: fomoPulse 3s ease-in-out infinite;
}

.fomo-number {
    font-family: var(--font-heading);
    font-size: 4rem;
    font-weight: 700;
    color: var(--deep-red);
    line-height: 1;
    text-shadow: 0 0 30px var(--red-glow);
}

.fomo-text {
    text-align: left;
}

.fomo-text .label {
    font-size: 1.2rem;
    font-weight: 500;
    color: var(--white);
}

.fomo-text .sub {
    font-size: 0.8rem;
    color: var(--gray);
}

.fomo-warning {
    color: var(--crimson);
    font-size: 0.85rem;
    font-weight: 500;
    margin-bottom: 20px;
    animation: blink 2s ease-in-out infinite;
}

/* ---- Reviews Section ---- */
.reviews-section {
    padding: 80px 0;
    overflow: hidden;
}

.reviews-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin-bottom: 12px;
}

.google-stars {
    display: flex;
    gap: 4px;
    color: #FBBC04;
    font-size: 1.2rem;
}

.google-rating {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--white);
}

.google-count {
    font-size: 0.9rem;
    color: var(--gray);
}

.reviews-track {
    display: flex;
    gap: 24px;
    padding: 24px 0;
    animation: scrollReviews 30s linear infinite;
}

.review-card {
    min-width: 350px;
    padding: 28px;
    background: var(--card-bg);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-lg);
    flex-shrink: 0;
}

.review-stars {
    display: flex;
    gap: 3px;
    color: #FBBC04;
    font-size: 0.9rem;
    margin-bottom: 12px;
}

.review-text {
    font-size: 0.95rem;
    color: var(--gray-light);
    line-height: 1.7;
    margin-bottom: 16px;
    font-style: italic;
}

.review-author {
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--white);
}

/* ---- Events Page ---- */
.events-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 24px;
}

.event-card {
    background: var(--card-bg);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: var(--transition);
}

.event-card:hover {
    border-color: var(--gold);
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.event-card.highlight {
    border-color: var(--gold);
    box-shadow: var(--shadow-gold);
}

.event-card .event-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    background: var(--dark-bg);
}

.event-card .event-image-placeholder {
    width: 100%;
    height: 200px;
    background: linear-gradient(135deg, var(--deep-red), var(--blood-red));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
}

.event-body {
    padding: 24px;
}

.event-body .event-date {
    font-size: 0.75rem;
    color: var(--gold);
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 8px;
}

.event-body h3 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 400;
    letter-spacing: 1px;
    margin-bottom: 8px;
}

.event-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    font-size: 0.85rem;
    color: var(--gray);
}

.event-meta span {
    display: flex;
    align-items: center;
    gap: 6px;
}

.highlight-badge {
    display: inline-block;
    padding: 3px 10px;
    background: var(--gold);
    color: var(--black);
    font-size: 0.6rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    border-radius: 2px;
    margin-bottom: 8px;
}

/* ---- Reservation Form ---- */
.reservation-form {
    max-width: 600px;
    margin: 0 auto;
}

.form-group {
    margin-bottom: 24px;
}

.form-group label {
    display: block;
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--gray-light);
    margin-bottom: 8px;
}

.form-control {
    width: 100%;
    padding: 14px 18px;
    background: var(--card-bg);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-md);
    color: var(--white);
    font-size: 0.95rem;
    transition: var(--transition);
    outline: none;
}

.form-control:focus {
    border-color: var(--gold);
    box-shadow: 0 0 0 3px rgba(201, 169, 78, 0.1);
}

.form-control::placeholder {
    color: var(--gray-dark);
}

select.form-control {
    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='%23888' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    padding-right: 40px;
}

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

.form-note {
    text-align: center;
    color: var(--gray);
    font-size: 0.8rem;
    margin-top: 16px;
}

.form-note svg {
    vertical-align: middle;
    margin-right: 4px;
}

/* Radio group */
.radio-group {
    display: flex;
    gap: 16px;
}

.radio-option {
    flex: 1;
    position: relative;
}

.radio-option input {
    position: absolute;
    opacity: 0;
}

.radio-option label {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 14px;
    background: var(--card-bg);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-md);
    cursor: pointer;
    transition: var(--transition);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.8rem;
}

.radio-option input:checked + label {
    border-color: var(--gold);
    background: rgba(201, 169, 78, 0.1);
    color: var(--gold);
}

/* ---- VIP Packages ---- */
.vip-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    align-items: stretch;
}

.vip-card {
    background: var(--card-bg);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-xl);
    padding: 40px 32px;
    text-align: center;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.vip-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.vip-card.featured {
    border-color: var(--gold);
    transform: scale(1.05);
    box-shadow: var(--shadow-gold);
}

.vip-card.featured::before {
    height: 4px;
    background: var(--gold);
}

.vip-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.vip-card.featured:hover {
    transform: scale(1.05) translateY(-8px);
}

.vip-icon {
    font-size: 2.5rem;
    margin-bottom: 16px;
}

.vip-card h3 {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 400;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 8px;
}

.vip-price {
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--gold);
    margin-bottom: 4px;
    font-family: var(--font-heading);
}

.vip-price-label {
    font-size: 0.75rem;
    color: var(--gray);
    margin-bottom: 24px;
}

.vip-features {
    text-align: left;
    margin-bottom: 32px;
    flex-grow: 1;
}

.vip-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 0;
    font-size: 0.9rem;
    color: var(--gray-light);
    border-bottom: 1px solid var(--glass-border);
}

.vip-features li:last-child {
    border-bottom: none;
}

.vip-features li .check {
    color: var(--gold);
    font-size: 1rem;
}

.vip-max-guests {
    font-size: 0.8rem;
    color: var(--gray);
    margin-bottom: 20px;
}

/* ---- Menu ---- */
.menu-tabs {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-bottom: 48px;
    flex-wrap: wrap;
}

.menu-tab {
    padding: 10px 24px;
    font-size: 0.8rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--gray);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-sm);
    cursor: pointer;
    transition: var(--transition);
    background: transparent;
}

.menu-tab.active,
.menu-tab:hover {
    color: var(--gold);
    border-color: var(--gold);
    background: rgba(201, 169, 78, 0.05);
}

.menu-category {
    display: none;
}

.menu-category.active {
    display: block;
    animation: fadeIn 0.5s ease;
}

.menu-items-list {
    max-width: 700px;
    margin: 0 auto;
}

.menu-item {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding: 20px 0;
    border-bottom: 1px solid var(--glass-border);
    gap: 20px;
}

.menu-item:last-child {
    border-bottom: none;
}

.menu-item-info {
    flex: 1;
}

.menu-item-name {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    font-weight: 500;
    margin-bottom: 4px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.menu-item-desc {
    font-size: 0.85rem;
    color: var(--gray);
}

.menu-item-price {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--gold);
    white-space: nowrap;
}

.popular-badge {
    display: inline-block;
    padding: 2px 8px;
    background: var(--deep-red);
    color: var(--white);
    font-size: 0.55rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    border-radius: 2px;
    font-family: var(--font-body);
}

/* ---- Gallery ---- */
.gallery-filters {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-bottom: 40px;
}

.gallery-filter {
    padding: 8px 20px;
    font-size: 0.8rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--gray);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-sm);
    cursor: pointer;
    transition: var(--transition);
    background: transparent;
}

.gallery-filter.active,
.gallery-filter:hover {
    color: var(--gold);
    border-color: var(--gold);
}

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

.gallery-item {
    position: relative;
    border-radius: var(--radius-md);
    overflow: hidden;
    cursor: pointer;
    aspect-ratio: 4/3;
    background: var(--dark-bg);
}

.gallery-item img,
.gallery-item video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-slow);
}

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

.gallery-item .gallery-overlay {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: linear-gradient(180deg, transparent 50%, rgba(10,10,10,0.8) 100%);
    display: flex;
    align-items: flex-end;
    padding: 16px;
    opacity: 0;
    transition: var(--transition);
}

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

.gallery-play-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 56px;
    height: 56px;
    background: rgba(139, 0, 0, 0.8);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.2rem;
    backdrop-filter: blur(10px);
    transition: var(--transition);
}

.gallery-item:hover .gallery-play-icon {
    background: var(--deep-red);
    transform: translate(-50%, -50%) scale(1.1);
}

/* ---- Lightbox ---- */
.lightbox {
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(0, 0, 0, 0.95);
    z-index: 10000;
    display: none;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(20px);
}

.lightbox.active {
    display: flex;
}

.lightbox-content {
    max-width: 90vw;
    max-height: 85vh;
    position: relative;
}

.lightbox-content img,
.lightbox-content video {
    max-width: 90vw;
    max-height: 80vh;
    object-fit: contain;
    border-radius: var(--radius-md);
}

.lightbox-close {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--glass);
    border: 1px solid var(--glass-border);
    border-radius: 50%;
    color: var(--white);
    font-size: 1.5rem;
    cursor: pointer;
    transition: var(--transition);
    z-index: 10001;
}

.lightbox-close:hover {
    background: var(--deep-red);
    border-color: var(--deep-red);
}

.lightbox-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--glass);
    border: 1px solid var(--glass-border);
    border-radius: 50%;
    color: var(--white);
    font-size: 1.2rem;
    cursor: pointer;
    transition: var(--transition);
    z-index: 10001;
}

.lightbox-nav:hover {
    background: var(--deep-red);
    border-color: var(--deep-red);
}

.lightbox-prev { left: 20px; }
.lightbox-next { right: 20px; }

.lightbox-thumbs {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
    z-index: 10001;
    max-width: 80vw;
    overflow-x: auto;
    padding: 8px;
    scrollbar-width: none;
}

.lightbox-thumbs::-webkit-scrollbar { display: none; }

.lightbox-thumb {
    width: 60px;
    height: 45px;
    border-radius: 4px;
    overflow: hidden;
    cursor: pointer;
    opacity: 0.5;
    transition: var(--transition);
    flex-shrink: 0;
    border: 2px solid transparent;
}

.lightbox-thumb.active {
    opacity: 1;
    border-color: var(--gold);
}

.lightbox-thumb:hover {
    opacity: 0.8;
}

.lightbox-thumb img,
.lightbox-thumb video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.lightbox-thumb.is-video {
    position: relative;
}

.lightbox-thumb-play {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.55);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 9px;
    pointer-events: none;
}

/* ---- About Page ---- */
.about-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-image {
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid var(--glass-border);
}

.about-image img {
    width: 100%;
    height: auto;
    aspect-ratio: 3/4;
    object-fit: cover;
}

.about-text {
    font-size: 1rem;
    color: var(--gray-light);
    line-height: 1.8;
}

.about-text p {
    margin-bottom: 16px;
}

/* ---- Contact Page ---- */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.contact-card {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 24px;
    background: var(--card-bg);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-lg);
    transition: var(--transition);
}

.contact-card:hover {
    border-color: var(--gold);
    transform: translateY(-2px);
}

.contact-icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, var(--deep-red), var(--blood-red));
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.contact-card h4 {
    font-size: 0.75rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--gray);
    margin-bottom: 4px;
}

.contact-card p {
    font-size: 1rem;
    color: var(--white);
}

.contact-map {
    margin-top: 40px;
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid var(--glass-border);
    height: 400px;
}

.contact-map iframe {
    width: 100%;
    height: 100%;
    border: 0;
    filter: grayscale(80%) brightness(0.7) contrast(1.2);
}

/* ---- FAQ ---- */
.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    border-bottom: 1px solid var(--glass-border);
}

.faq-question {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
    font-size: 1rem;
    font-weight: 500;
    color: var(--white);
    cursor: pointer;
    text-align: left;
    background: transparent;
    border: none;
    transition: var(--transition);
}

.faq-question:hover {
    color: var(--gold);
}

.faq-question .faq-icon {
    font-size: 1.2rem;
    transition: var(--transition);
    color: var(--gold);
}

.faq-item.open .faq-question .faq-icon {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
}

.faq-answer-inner {
    padding: 0 0 20px;
    font-size: 0.95rem;
    color: var(--gray-light);
    line-height: 1.7;
}

/* ---- Footer ---- */
.footer {
    padding: 60px 0 30px;
    background: var(--darker-bg);
    border-top: 1px solid var(--glass-border);
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
    flex-wrap: wrap;
    gap: 24px;
}

.footer-logo .logo-text {
    font-family: var(--font-heading);
    font-size: 1.6rem;
    color: var(--gold);
    letter-spacing: 3px;
    text-transform: uppercase;
}

.footer-logo p {
    color: var(--gray);
    font-size: 0.85rem;
    margin-top: 4px;
}

.footer-links {
    display: flex;
    gap: 24px;
}

.footer-links a {
    font-size: 0.8rem;
    color: var(--gray);
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: var(--transition);
}

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

.footer-social {
    display: flex;
    gap: 12px;
}

.footer-social a {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--glass-border);
    border-radius: 50%;
    color: var(--gray);
    transition: var(--transition);
    font-size: 1rem;
}

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

.footer-bottom {
    text-align: center;
    padding-top: 24px;
    border-top: 1px solid var(--glass-border);
    font-size: 0.8rem;
    color: var(--gray-dark);
}

/* ---- Floating Action Buttons ---- */
.floating-buttons {
    position: fixed;
    bottom: 24px;
    right: 24px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    z-index: 999;
}

.float-btn {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    color: var(--white);
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    cursor: pointer;
    position: relative;
}

.float-btn:hover {
    transform: scale(1.1);
}

.float-btn.whatsapp {
    background: #25D366;
}

.float-btn.phone {
    background: var(--deep-red);
}

.float-btn.directions {
    background: var(--gold-dark);
}

.float-btn .float-tooltip {
    position: absolute;
    right: calc(100% + 12px);
    white-space: nowrap;
    padding: 6px 12px;
    background: var(--dark-bg);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-sm);
    font-size: 0.75rem;
    color: var(--white);
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    pointer-events: none;
}

.float-btn:hover .float-tooltip {
    opacity: 1;
    visibility: visible;
}

/* ---- Service Areas ---- */
.service-areas {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
    margin-top: 20px;
}

.service-area-tag {
    padding: 6px 16px;
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-sm);
    font-size: 0.8rem;
    color: var(--gray);
    transition: var(--transition);
}

.service-area-tag:hover {
    border-color: var(--gold);
    color: var(--gold);
}

/* ---- Animations ---- */
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

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

@keyframes fadeInDown {
    from { opacity: 0; transform: translateY(-20px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(1.5); }
}

@keyframes fomoPulse {
    0%, 100% { box-shadow: 0 0 20px rgba(139, 0, 0, 0.1); }
    50% { box-shadow: 0 0 40px rgba(139, 0, 0, 0.3); }
}

@keyframes blink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.4; }
}

@keyframes scrollReviews {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

@keyframes slideIn {
    from { opacity: 0; transform: translateX(20px); }
    to { opacity: 1; transform: translateX(0); }
}

/* Scroll reveal */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ---- Page Header (Subpages) ---- */
.page-header {
    padding: 160px 0 80px;
    text-align: center;
    background: var(--darker-bg);
    position: relative;
    overflow: hidden;
}

.page-header::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: radial-gradient(ellipse at top center, rgba(139, 0, 0, 0.1) 0%, transparent 60%);
}

.page-header h1 {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 300;
    letter-spacing: 6px;
    text-transform: uppercase;
    position: relative;
}

.page-header .gold-line {
    width: 60px;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
    margin: 20px auto;
    position: relative;
}

.page-header p {
    color: var(--gray);
    font-size: 1rem;
    font-weight: 300;
    letter-spacing: 2px;
    position: relative;
}

/* ---- Responsive ---- */
@media (max-width: 1024px) {
    .vip-grid {
        grid-template-columns: 1fr;
        max-width: 500px;
        margin: 0 auto;
    }

    .vip-card.featured {
        transform: none;
    }

    .vip-card.featured:hover {
        transform: translateY(-8px);
    }

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

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

@media (max-width: 768px) {
    :root {
        --nav-height: 64px;
    }

    /* Mobile CTA Buttons - fixed in navbar */
    .mobile-cta-bar {
        display: flex;
        gap: 6px;
        align-items: center;
        margin-left: auto;
        margin-right: 8px;
    }

    .mobile-cta-btn {
        display: flex;
        align-items: center;
        gap: 4px;
        padding: 6px 10px;
        border-radius: var(--radius-sm);
        font-size: 0.6rem;
        font-weight: 600;
        letter-spacing: 1px;
        text-transform: uppercase;
        text-decoration: none;
        white-space: nowrap;
        transition: var(--transition);
    }

    .mobile-cta-btn i {
        font-size: 0.65rem;
    }

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

    .mobile-cta-reserve {
        background: var(--red);
        border: 1px solid var(--red);
        color: var(--white);
    }

    .mobile-cta-reserve:hover {
        background: #a00000;
    }

    /* Hide desktop lang switcher on mobile */
    .lang-switcher {
        display: none;
    }

    .nav-menu-desktop {
        display: none;
    }

    .nav-menu {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: #0a0a0a;
        flex-direction: column;
        align-items: center;
        gap: 0;
        z-index: 9999;
        padding: 20px 24px 24px;
        box-sizing: border-box;
        overflow-y: auto;
    }

    .nav-menu.open {
        display: flex;
    }

    /* Logo inside mobile menu */
    .nav-menu-logo {
        display: flex;
        align-items: center;
        justify-content: center;
        margin-bottom: 20px;
        flex-shrink: 0;
    }

    .nav-menu-logo img {
        max-height: 45px;
        width: auto;
    }

    .nav-menu-logo-text {
        font-family: var(--font-heading);
        font-size: 1.4rem;
        color: var(--gold);
        letter-spacing: 3px;
        text-transform: uppercase;
    }

    /* Menu links container */
    .nav-menu-links {
        display: flex;
        flex-direction: column;
        align-items: center;
        width: 100%;
        max-width: 280px;
        gap: 6px;
    }

    .nav-menu-links a {
        display: block;
        width: 100%;
        font-size: 0.85rem;
        font-weight: 500;
        letter-spacing: 3px;
        text-transform: uppercase;
        color: var(--white);
        text-decoration: none;
        padding: 10px 16px;
        text-align: center;
        border: 1px solid var(--glass-border);
        border-radius: var(--radius-sm);
        background: rgba(255, 255, 255, 0.03);
        transition: var(--transition);
    }

    .nav-menu-links a.active {
        color: var(--gold);
        border-color: var(--gold-dark);
        background: rgba(201, 169, 78, 0.08);
    }

    .nav-menu-links a:hover {
        color: var(--gold);
        border-color: var(--gold-dark);
        background: rgba(201, 169, 78, 0.06);
    }

    /* Nav Menu Footer - phone & language */
    .nav-menu-footer {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 12px;
        margin-top: 20px;
        padding-top: 16px;
        border-top: 1px solid var(--glass-border);
        flex-shrink: 0;
        width: 100%;
        max-width: 280px;
    }

    .nav-menu-phone {
        display: flex;
        align-items: center;
        gap: 8px;
        color: var(--gold) !important;
        font-size: 0.95rem !important;
        letter-spacing: 1px !important;
        text-decoration: none;
    }

    .nav-menu-phone i {
        font-size: 0.9rem;
    }

    .nav-menu-lang {
        display: flex;
        gap: 12px;
    }

    .nav-menu-lang a {
        font-size: 0.85rem !important;
        letter-spacing: 1px !important;
        color: var(--gray) !important;
        text-decoration: none;
    }

    .nav-menu-lang a.active {
        color: var(--gold) !important;
    }

    .nav-toggle {
        display: flex;
    }

    .hero-content h1 {
        letter-spacing: 4px;
    }

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

    .hero-buttons .btn {
        width: 100%;
        max-width: 280px;
        justify-content: center;
    }

    .tonight-card {
        flex-direction: column;
        text-align: center;
    }

    .fomo-counter {
        flex-direction: column;
        padding: 20px 32px;
    }

    .fomo-text {
        text-align: center;
    }

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

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

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

    .section {
        padding: 60px 0;
    }

    .page-header {
        padding: 120px 0 60px;
    }

    .review-card {
        min-width: 280px;
    }

    .footer-content {
        flex-direction: column;
        text-align: center;
    }

    .footer-links {
        flex-wrap: wrap;
        justify-content: center;
    }

    .lightbox-nav {
        width: 40px;
        height: 40px;
    }

    .lightbox-prev { left: 8px; }
    .lightbox-next { right: 8px; }
}

@media (max-width: 480px) {
    .container {
        padding: 0 16px;
    }

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

    .menu-tabs {
        gap: 4px;
    }

    .menu-tab {
        padding: 8px 14px;
        font-size: 0.7rem;
    }

    .floating-buttons {
        bottom: 16px;
        right: 16px;
    }

    .float-btn {
        width: 46px;
        height: 46px;
    }
}

/* ---- Utility Classes ---- */
.text-center { text-align: center; }
.text-gold { color: var(--gold); }
.text-red { color: var(--deep-red); }
.text-gray { color: var(--gray); }
.mt-1 { margin-top: 8px; }
.mt-2 { margin-top: 16px; }
.mt-3 { margin-top: 24px; }
.mt-4 { margin-top: 32px; }
.mb-1 { margin-bottom: 8px; }
.mb-2 { margin-bottom: 16px; }
.mb-3 { margin-bottom: 24px; }
.mb-4 { margin-bottom: 32px; }
.hidden { display: none !important; }
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0,0,0,0);
    border: 0;
}
