:root {
    --gold: #D4AF37;
    --gold-light: #FFE585;
    --gold-dim: #997f2b;
    --dark: #050505;
    /* Deepest black */
    --panel: #0F1115;
    /* Subtle panel */
    --text: #F0F0F0;
    --text-muted: #8899A6;
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Lato', sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    cursor: none;
}

html {
    scroll-behavior: smooth;
}

body {
    background-color: var(--dark);
    color: var(--text);
    font-family: var(--font-body);
    line-height: 1.8;
}

a {
    text-decoration: none;
    color: inherit;
    transition: 0.3s;
}

/* 1. TYPOGRAPHY & UTIL */
h1,
h2,
h3,
h4 {
    font-family: var(--font-heading);
    color: #fff;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Custom Cursor */
.cursor-dot {
    position: fixed;
    top: 0;
    left: 0;
    transform: translate(-50%, -50%);
    width: 6px;
    height: 6px;
    background: var(--gold);
    border-radius: 50%;
    z-index: 9999;
    pointer-events: none;
}

.cursor-outline {
    position: fixed;
    top: 0;
    left: 0;
    transform: translate(-50%, -50%);
    width: 40px;
    height: 40px;
    border: 1px solid rgba(212, 175, 55, 0.5);
    border-radius: 50%;
    z-index: 9999;
    pointer-events: none;
    transition: width 0.1s, height 0.1s, background-color 0.1s;
}

body.hovering .cursor-outline {
    width: 60px;
    height: 60px;
    background: rgba(212, 175, 55, 0.1);
    border-color: var(--gold);
}

/* 2. HEADER */
.demo-banner {
    position: fixed;
    top: 0;
    width: 100%;
    background: var(--gold);
    color: #000;
    text-align: center;
    padding: 8px 0;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 1px;
    text-transform: uppercase;
    z-index: 1000;
}

.savor-nav {
    position: fixed;
    top: 32px;
    width: 100%;
    padding: 2rem 0;
    z-index: 100;
    transition: 0.4s ease;
}

.savor-nav.scrolled {
    padding: 1rem 0;
    background: rgba(5, 5, 5, 0.9);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.savor-nav .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 2rem;
    color: var(--gold);
    font-weight: 700;
    letter-spacing: -1px;
}

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

.nav-links a {
    font-size: 0.85rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #ccc;
    position: relative;
}

.nav-links a:hover {
    color: #fff;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--gold);
    transition: 0.3s;
}

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

.btn-book {
    border: 1px solid var(--gold);
    padding: 1rem 2.5rem;
    color: var(--gold) !important;
    font-weight: 700;
    font-size: 0.8rem;
}

.btn-book:hover {
    background: var(--gold);
    color: #000 !important;
}

/* 3. HERO */
.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    overflow: hidden;
    background: radial-gradient(circle at 50% 50%, #15181E 0%, #000 100%);
}

.hero::after {
    content: '';
    position: absolute;
    inset: 0;
    background: url("data:image/svg+xml,%3Csvg width='40' height='40' viewBox='0 0 40 40' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M20 20h2v2h-2z' fill='%23ffffff' fill-opacity='0.03' fill-rule='evenodd'/%3E%3C/svg%3E");
    opacity: 0.5;
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 10;
    max-width: 900px;
    padding: 0 2rem;
    opacity: 0;
}

.subtitle {
    display: block;
    color: var(--gold);
    letter-spacing: 6px;
    text-transform: uppercase;
    font-size: 0.8rem;
    margin-bottom: 2rem;
    font-weight: 700;
}

.hero-title {
    font-size: 5.5rem;
    line-height: 1;
    margin-bottom: 2rem;
    background: linear-gradient(135deg, #fff 0%, #999 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-desc {
    font-size: 1.25rem;
    color: var(--text-muted);
    margin-bottom: 3.5rem;
    max-width: 600px;
    margin-inline: auto;
}

.btn-primary {
    background: var(--gold);
    color: #000;
    padding: 1.2rem 3rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: none;
    font-size: 0.9rem;
    display: inline-block;
    transition: transform 0.3s, box-shadow 0.3s;
}

.btn-primary:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.2);
    background: #fff;
}

.open-status {
    margin-top: 3rem;
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 0.6rem 1.5rem;
    border-radius: 50px;
    font-size: 0.8rem;
    background: rgba(255, 255, 255, 0.03);
    letter-spacing: 1px;
}

.status-dot {
    width: 6px;
    height: 6px;
    background: #2ecc71;
    border-radius: 50%;
    box-shadow: 0 0 15px #2ecc71;
}


/* 4. STORY */
.story-section {
    padding: 12rem 0;
    background: #08090B;
    border-bottom: 1px solid rgba(255, 255, 255, 0.03);
}

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

.story-content h2 {
    font-size: 3.5rem;
    margin-bottom: 2rem;
    color: var(--gold-light);
}

.story-content p {
    font-size: 1.1rem;
    color: var(--text-muted);
    margin-bottom: 2rem;
}

.signature {
    font-family: var(--font-heading);
    font-size: 2rem;
    color: var(--gold);
    font-style: italic;
    opacity: 0.8;
}

.story-image {
    height: 600px;
    background: var(--panel);
    border: 1px solid rgba(255, 255, 255, 0.05);
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.story-img-placeholder {
    width: 100%;
    height: 100%;
    /* Subtle geometric pattern */
    background-image: radial-gradient(circle at 1px 1px, rgba(255, 255, 255, 0.05) 1px, transparent 0);
    background-size: 40px 40px;
}

/* 5. MENU */
.menu-section {
    padding: 10rem 0;
    background: var(--dark);
    position: relative;
}

.section-header {
    text-align: center;
    margin-bottom: 5rem;
}

.section-header h2 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
}

.menu-filters {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 4rem;
}

.filter-btn {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 0.8rem 2rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.8rem;
    transition: 0.3s;
}

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

.menu-item {
    background: var(--panel);
    padding: 3rem 2.5rem;
    border: 1px solid rgba(255, 255, 255, 0.03);
    transition: 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    position: relative;
    overflow: hidden;
}

.menu-item:hover {
    transform: translateY(-8px);
    border-color: rgba(212, 175, 55, 0.3);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.item-badge {
    position: absolute;
    top: 1.5rem;
    left: 1.5rem;
    font-size: 0.65rem;
    font-weight: 800;
    text-transform: uppercase;
    color: var(--gold);
    letter-spacing: 1px;
}

.item-header {
    display: flex;
    justify-content: space-between;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    padding-bottom: 1rem;
    margin-bottom: 1.5rem;
    margin-top: 1rem;
}

.item-header h3 {
    font-size: 1.4rem;
    color: #fff;
}

.price {
    font-size: 1.2rem;
    color: var(--gold);
    font-family: var(--font-body);
    font-weight: 300;
}

.description {
    font-size: 1rem;
    color: #888;
    font-weight: 300;
    line-height: 1.6;
    padding-bottom: 2rem;
}

.btn-add {
    position: absolute;
    bottom: 2rem;
    right: 2rem;
    width: 40px;
    height: 40px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    transition: 0.3s;
}

.menu-item:hover .btn-add {
    background: var(--gold);
    color: #000;
    border-color: var(--gold);
}

/* 6. REVIEWS (Fixed) */
.reviews-section {
    padding: 10rem 0;
    background: #0B0D10;
    overflow: hidden;
}

.reviews-carousel {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
    /* Fallback for grid */
    padding: 2rem 0;
}

.review-track {
    display: flex;
    gap: 2rem;
    width: 100%;
    justify-content: center;
}

.review-card {
    background: rgba(255, 255, 255, 0.015);
    padding: 3rem;
    width: 400px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    text-align: center;
    margin: 1rem;
    position: relative;
    transition: transform 0.3s;
}

.review-card:hover {
    transform: translateY(-5px);
    border-color: var(--gold-dim);
}

.stars {
    color: var(--gold);
    letter-spacing: 4px;
    font-size: 0.8rem;
    margin-bottom: 1.5rem;
}

.review-card p {
    font-style: italic;
    font-size: 1.1rem;
    color: #ddd;
    margin-bottom: 2rem;
}

.reviewer {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--gold-dim);
}

/* 7. RESERVATIONS (Fixed) */
.reservation-section {
    position: relative;
    padding: 10rem 0;
    background: #000;
    overflow: hidden;
}

.parallax-bg-res {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at center, #1a1a1a 0%, #000 80%);
    opacity: 0.5;
    z-index: 0;
}

.relative-z {
    position: relative;
    z-index: 2;
}

.reservation-box {
    background: var(--panel);
    border: 1px solid var(--gold);
    padding: 5rem 3rem;
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.5);
}

.reservation-box h2 {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: var(--gold);
}

.reservation-box p {
    color: var(--text-muted);
    margin-bottom: 3rem;
}

.booking-form .form-row {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.booking-form .form-group {
    flex: 1;
}

.booking-form input,
.booking-form select {
    width: 100%;
    background: transparent;
    border: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    padding: 1rem 0.5rem;
    color: #fff;
    font-family: var(--font-body);
    font-size: 1rem;
    cursor: pointer;
    transition: 0.3s;
}

.booking-form input:focus,
.booking-form select:focus {
    border-color: var(--gold);
    outline: none;
}

.booking-form select option {
    background: #000;
    color: #fff;
}

.time-picker-container {
    margin-bottom: 3rem;
    text-align: left;
}

.time-picker-container label {
    display: block;
    margin-bottom: 1rem;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-muted);
}

.time-slots {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.time-slot {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #fff;
    padding: 0.8rem 1.5rem;
    cursor: pointer;
    transition: 0.3s;
}

.time-slot.active,
.time-slot:hover {
    background: var(--gold);
    border-color: var(--gold);
    color: #000;
}

.btn-primary.full-width {
    width: 100%;
}

/* Success Modal */
.modal {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.9);
    z-index: 10000;
    display: none;
    align-items: center;
    justify-content: center;
}

.modal.visible {
    display: flex;
}

.modal-content {
    background: var(--panel);
    border: 1px solid var(--gold);
    padding: 4rem;
    text-align: center;
    max-width: 500px;
    animation: modalIn 0.4s ease-out;
}

.success-icon {
    font-size: 4rem;
    color: var(--gold);
    margin-bottom: 2rem;
}

@keyframes modalIn {
    from {
        opacity: 0;
        transform: scale(0.9);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* 8. FOOTER */
.main-footer {
    padding: 8rem 0 3rem;
    background: #000;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

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

.footer-col h3 {
    font-size: 3rem;
    margin-bottom: 2rem;
    letter-spacing: -1px;
}

.footer-col p {
    font-size: 1.2rem;
    color: var(--text-muted);
    margin-bottom: 2rem;
}

.newsletter-form input {
    background: transparent;
    border: none;
    border-bottom: 1px solid #333;
    padding: 1.5rem 0;
    width: 100%;
    font-size: 1.2rem;
    color: #fff;
    transition: 0.3s;
}

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

.newsletter-form button {
    background: none;
    border: none;
    font-size: 2rem;
    color: var(--gold);
    cursor: pointer;
}

.copyright {
    text-align: center;
    padding-top: 3rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    color: #444;
    font-size: 0.85rem;
}

.tt-pride-badge {
    margin-top: 1rem;
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--gold);
    display: inline-block;
    padding: 0.3rem 1rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50px;
    letter-spacing: 1px;
}

/* 9. PRELOADER */
.preloader {
    position: fixed;
    inset: 0;
    background: #000;
    z-index: 99999;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.loader-text {
    font-family: var(--font-heading);
    font-size: 4rem;
    color: var(--gold);
    margin-bottom: 2rem;
    letter-spacing: 8px;
}

.loader-line {
    width: 0;
    height: 1px;
    background: var(--gold);
}

/* RESPONSIVE */
@media (max-width: 900px) {

    .story-grid,
    .footer-grid,
    .booking-form .form-row {
        grid-template-columns: 1fr;
        flex-direction: column;
        gap: 3rem;
    }

    .hero-title {
        font-size: 3.5rem;
    }

    .review-track {
        flex-direction: column;
        align-items: center;
    }

    .review-card {
        width: 100%;
    }
}