:root {
    --bg-dark: #0a0a0a;
    --text-light: #f5f5f3;
    --text-dim: #a0a09e;
    --accent: #c5a880; /* Muted gold */
    --border-color: rgba(245, 245, 243, 0.1);

    /* --- EASY FONT SWITCHING VARIABLES --- */
    --font-header: 'Playfair Display', serif;
    --font-body: 'Plus Jakarta Sans', sans-serif;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    background-color: var(--bg-dark);
    color: var(--text-light);
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
    letter-spacing: 0.03em;
}

h1, h2, h3, h4, h5, h6,
.section-title,
.concept-title-main,
.seating-type-title,
.review-name,
.access-block h3 {
    font-family: var(--font-header);
}

/* --- GLOBAL COMPONENTS --- */

header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 40px 60px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 100;
    background: linear-gradient(to bottom, rgba(10,10,10,0.8), rgba(10,10,10,0));
    backdrop-filter: blur(2px);
}

.logo {
    display: flex;
    align-items: center;
}

nav a {
    color: var(--text-light);
    text-decoration: none;
    font-size: 0.85rem;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-left: 40px;
    opacity: 0.7;
    transition: opacity 0.3s, color 0.3s;
    font-weight: 400;
}

nav a:hover {
    opacity: 1;
    color: var(--accent);
}

.section-spacing {
    padding: 50px 60px;
}

.section-title {
    font-size: 2.8rem;
    font-weight: 600;
    letter-spacing: 0.02em;
    margin-bottom: 50px;
}

.section-title em {
    color: var(--accent);
}

/* --- CONCEPT SECTION LAYOUT --- */

.concept-section {
    background-color: var(--bg-dark);
    padding-top: 60px;   
    padding-bottom: 50px; 
    border-bottom: 1px solid var(--border-color);
}

.concept-container.single-layout {
    max-width: 95%;
    margin: 0 auto;
    text-align: center;
}

.concept-title-main {
    font-size: 2rem;
    font-weight: 400;
    line-height: 1.6;
    margin-bottom: 35px;
    letter-spacing: 0.02em;
}

/* --- SECTION 1: HERO --- */

.hero-carousel {
    position: relative;
    width: 100%;
    height: 100vh;
    background-size: cover;
    transition: background 1s ease-in-out;
    display: flex;
    align-items: center;
}

.hero-carousel::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, transparent 20%, rgba(10, 10, 10, 0.6) 100%);
    pointer-events: none;
}

.hero-content {
    position: relative;
    left: 60px;
    z-index: 10;
    max-width: 900px;
}

.hero-title {
    font-size: 3.2rem;
    font-weight: 400;
    line-height: 1.35;
    margin-bottom: 0;
    letter-spacing: 0.02em;
    text-shadow: 0 2px 20px rgba(0,0,0,0.7);
}

.carousel-controls {
    position: absolute;
    bottom: 60px;
    right: 60px;
    z-index: 10;
    display: flex;
    align-items: center;
    gap: 20px;
}

.page-indicator {
    font-size: 0.85rem;
    letter-spacing: 2px;
    color: var(--text-dim);
}

.page-indicator span {
    color: var(--text-light);
}

.dots {
    display: flex;
    gap: 12px;
}

.dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: rgba(245, 245, 243, 0.3);
    cursor: pointer;
    transition: background 0.3s;
}

.dot.active {
    background: var(--accent);
    transform: scale(1.2);
}

/* --- SECTION 2: COCKTAILS (Carousel) --- */

.menu-section-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding-right: 60px;
    margin-bottom: 25px;
}

.menu-header-subtitle {
    font-size: 0.95rem;
    color: var(--text-dim);
    margin-top: 5px;
    font-weight: 300;
}

.menu-carousel-nav {
    display: flex;
    gap: 15px;
    margin-top: 10px;
}

.nav-arrow {
    width: 45px;
    height: 45px;
    border: 1px solid var(--border-color);
    background: transparent;
    color: var(--text-light);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

.nav-arrow:hover {
    border-color: var(--text-light);
    color: var(--accent);
}

.menu-carousel-container {
    width: 100vw;
    margin-left: -60px;
    padding-left: 60px;
    padding-right: 60px;
    overflow-x: auto;
    scroll-behavior: smooth;
    display: flex;
    gap: 40px;
    scrollbar-width: none;
    margin-bottom: 20px;
}

.menu-carousel-container::-webkit-scrollbar {
    display: none;
}

.menu-card {
    flex: 0 0 320px;
    display: flex;
    flex-direction: column;
    transition: transform 0.4s ease;
}

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

.menu-image-wrapper {
    width: 100%;
    height: 440px;
    overflow: hidden;
    border: 1px solid var(--border-color);
    margin-bottom: 12px;
    position: relative;
    background-color: #161616;
}

.menu-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(20%) brightness(90%);
    transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1);
}

.menu-card:hover .menu-image-wrapper img {
    transform: scale(1.04);
}

.menu-card-name {
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 500;
    letter-spacing: 1px;
}

.centralized-header {
    display: flex;
    justify-content: center;
    text-align: center;
}

.menu-dots-container {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 30px;
}

.menu-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: rgba(245, 245, 243, 0.3);
    cursor: pointer;
    transition: background 0.3s, transform 0.3s;
}

.menu-dot.active {
    background: var(--accent);
    transform: scale(1.2);
}

/* --- SECTION 3: SEATING --- */

.seating-section {
    background-color: var(--bg-dark);
    border-bottom: 1px solid var(--border-color);
}

.seating-header-block {
    max-width: 750px;
    margin: 0 auto 60px auto;
    text-align: center;
}

.seating-tag {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--accent);
    display: block;
    margin-bottom: 10px;
    font-weight: 500;
}

.seating-type-title {
    font-size: 2.2rem;
    font-weight: 600;
    margin-bottom: 20px;
    letter-spacing: 0.01em;
}

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

.split-container.reverse-layout .split-text {
    grid-column: 2;
}

.split-container.reverse-layout .seating-gallery-container {
    grid-column: 1;
    grid-row: 1;
}

.split-text p {
    font-size: 1rem;
    line-height: 2;
    color: var(--text-dim);
    font-weight: 300;
    margin-bottom: 30px;
}

.seating-gallery-container {
    position: relative;
    overflow: hidden;
    width: 100%;
    height: 500px;
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    border: 1px solid var(--border-color);
}

.seating-slider {
    width: 100%;
    height: 100%;
    position: relative;
}

.seating-slide, .vip-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    opacity: 0;
    transition: opacity 0.8s ease-in-out;
    z-index: 1;
}

.seating-slide.active, .vip-slide.active {
    opacity: 1;
    z-index: 2;
}

.gallery-dots {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    display: flex;
    gap: 10px;
    background: rgba(10, 10, 10, 0.4);
    padding: 8px 14px;
    backdrop-filter: blur(5px);
}

.g-dot, .v-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.25);
    cursor: pointer;
    transition: background 0.3s, transform 0.3s;
}

.g-dot.active, .v-dot.active {
    background: var(--accent);
    transform: scale(1.2);
}

.first-timer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    text-align: center;
}

.first-timer-grid p {
    font-size: 0.9rem;
    color: var(--text-dim);
    line-height: 1.6;
    margin: 0;
    padding: 10px;
    background: rgba(255, 255, 255, 0.02);
}

/* --- SECTION 4: ACCESS --- */

.access-container {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 80px;
    align-items: stretch;
}

.access-info {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
}

.access-details-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-top: 20px;
}

.access-block h3 {
    font-family: var(--font-body);
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--accent);
    margin-bottom: 15px;
    font-weight: 500;
}

.access-block p {
    font-size: 0.9rem;
    color: var(--text-dim);
    line-height: 1.8;
    font-weight: 300;
}

.access-block.full-width-block {
    grid-column: span 2;
    border-top: 1px solid var(--border-color);
    padding-top: 30px;
}

.access-image-frame {
    width: 100%;
    height: 100%;
    min-height: 550px;
    overflow: hidden;
    border: 1px solid var(--border-color);
}

.access-image-frame img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.map-wrapper {
    width: 100%;
    margin-top: 40px;
    border: 1px solid var(--border-color);
    background-color: #121212;
    filter: grayscale(100%) invert(92%) contrast(100%);
    opacity: 0.85;
    transition: opacity 0.3s ease;
}

.map-wrapper:hover {
    opacity: 1;
}

.map-text-link {
    display: inline-block;
    margin-top: 10px;
    font-size: 0.8rem;
    color: var(--accent);
    text-decoration: none;
    letter-spacing: 1px;
    border-bottom: 1px dashed rgba(197, 168, 128, 0.4);
    padding-bottom: 2px;
    transition: color 0.3s ease, border-color 0.3s ease;
}

.map-text-link:hover {
    color: var(--text-light);
    border-bottom-color: var(--text-light);
}

/* --- SECTION 5: REVIEWS MARQUEE --- */

.review-section {
    background-color: #0d0d0d;
    padding: 60px 0;
    overflow: hidden;
    border-top: 1px solid var(--border-color);
}

.review-marquee-container {
    width: 100%;
    position: relative;
    overflow: hidden;
}

.review-track {
    display: flex;
    gap: 30px;
    will-change: transform;
}

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

.review-rating-text {
    font-size: 1rem;
    color: var(--text-dim);
    font-weight: 300;
    line-height: 1.6;
    max-width: 600px;
    margin: 0 auto;
}

.review-card {
    flex: 0 0 350px;
    background-color: #121212;
    border: 1px solid var(--border-color);
    padding: 30px;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

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

.review-name {
    font-size: 1.2rem;
    color: var(--text-light);
    font-weight: 600;
}

.review-stars {
    color: var(--accent);
    letter-spacing: 2px;
    font-size: 0.9rem;
}

.review-text {
    font-size: 0.9rem;
    color: var(--text-dim);
    line-height: 1.8;
    font-weight: 300;
}

@keyframes marqueeScroll {
    from { transform: translateX(0); }
    to { transform: translateX(-50%); }
}

.review-track.animate {
    animation: marqueeScroll 40s linear infinite;
}

.review-marquee-container:hover .review-track.animate {
    animation-play-state: paused;
}

/* --- SECTION 6: FOUNDERS --- */

.founders-section {
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
    padding: 80px 60px;
}

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

.founders-image {
    width: 100%;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.6);
    display: block;
}

.founder-quote p {
    font-size: 1rem;
    line-height: 1.9;
    color: var(--text-dim);
    font-weight: 300;
    margin-bottom: 15px;
}

.founder-signature {
    font-size: 0.9rem !important;
    color: var(--text-light) !important;
    opacity: 0.8;
}

.founder-signature a {
    color: var(--accent);
    text-decoration: none;
    border-bottom: 1px dashed rgba(197, 168, 128, 0.4);
    transition: all 0.3s ease;
    padding-bottom: 1px;
}

.founder-signature a:hover {
    color: var(--text-light);
    border-bottom-color: var(--text-light);
}

/* --- SECTION 7: FAQ --- */

.faq-accordion {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

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

.accordion-trigger {
    background: transparent;
    border: none;
    width: 100%;
    padding: 25px 0;
    color: var(--text-light);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-family: var(--font-body);
    font-size: 1.05rem;
    font-weight: 500;
    text-align: left;
    transition: color 0.3s ease;
}

.accordion-trigger:hover {
    color: var(--accent);
}

.icon-plus {
    font-size: 1.5rem;
    font-weight: 300;
    transition: transform 0.3s ease;
    color: var(--accent);
}

.faq-item.active .icon-plus {
    transform: rotate(45deg);
}

.accordion-panel {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease-in-out, padding 0.4s ease-in-out;
    padding: 0 20px;
}

.faq-item.active .accordion-panel {
    max-height: 1000px;
    padding-bottom: 30px;
}

.accordion-panel p {
    font-size: 0.95rem;
    color: var(--text-dim);
    line-height: 1.8;
    font-weight: 300;
}

/* --- MODAL --- */

.modal-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(5, 5, 5, 0.85);
    backdrop-filter: blur(8px);
    z-index: 1000;
    align-items: center;
    justify-content: center;
    padding: 20px;
    overflow-y: auto;
}

.modal-overlay.active {
    display: flex;
}

.reserve-wrapper {
    position: relative;
    max-width: 580px;
    width: 100%;
    background: #121212;
    border: 1px solid var(--border-color);
    padding: 50px 40px;
    text-align: center;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
}

.reserve-wrapper p {
    color: var(--text-dim);
    font-size: 0.9rem;
    margin-bottom: 40px;
}

.modal-close-btn {
    position: absolute;
    top: 20px;
    right: 25px;
    background: transparent;
    border: none;
    color: var(--text-dim);
    font-size: 2rem;
    cursor: pointer;
    line-height: 1;
    transition: color 0.3s;
}

.modal-close-btn:hover {
    color: var(--text-light);
}

.booking-form {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 25px;
    text-align: left;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group.full-width {
    grid-column: span 2;
}

.booking-form label {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--accent);
    margin-bottom: 8px;
    font-weight: 400;
}

.booking-form input, .booking-form select {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border-color);
    padding: 14px;
    color: var(--text-light);
    font-family: var(--font-body);
    font-size: 0.9rem;
    transition: border-color 0.3s;
    border-radius: 0;
    -webkit-appearance: none;
}

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

.submit-btn {
    grid-column: span 2;
    margin-top: 20px;
    background: transparent;
    color: var(--text-light);
    border: 1px solid var(--accent);
    padding: 16px;
    text-transform: uppercase;
    letter-spacing: 3px;
    font-size: 0.85rem;
    cursor: pointer;
    transition: all 0.4s;
    font-family: var(--font-body);
}

.submit-btn:hover {
    background: var(--accent);
    color: var(--bg-dark);
}

/* --- FOOTER --- */

footer {
    border-top: 1px solid var(--border-color);
    padding: 40px 60px;
    display: flex;
    justify-content: space-between;
    font-size: 0.8rem;
    color: rgba(245, 245, 243, 0.4);
    font-weight: 300;
}

/* --- RESPONSIVE --- */

@media (max-width: 992px) {
    .split-container, .access-container, .founders-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .founders-text-content { text-align: center; }
}

@media (max-width: 768px) {
    header { padding: 30px; }
    nav { display: none; }
    .section-spacing { padding: 80px 30px; }
    .hero-content { left: 30px; right: 30px; }
    .menu-carousel-container { margin-left: -30px; padding-left: 30px; padding-right: 30px; }
    .access-details-grid { grid-template-columns: 1fr; }
    .access-block.full-width-block { grid-column: span 1; }
    .booking-form { grid-template-columns: 1fr; }
    .form-group.full-width { grid-column: span 1; }
    .submit-btn { grid-column: span 1; }
    footer { flex-direction: column; gap: 20px; }
}

.line-btn {
    display: inline-block;
    margin-top: 15px;
    background: transparent;
    color: var(--text-light);
    border: 1px solid var(--accent);
    padding: 12px 24px;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.75rem;
    text-decoration: none;
    transition: all 0.4s ease;
    font-family: var(--font-body);
}

.line-btn:hover {
    background: var(--accent);
    color: var(--bg-dark);
}

hr.section-divider {
    border: none;
    height: 1px;
    background-color: var(--accent);
    width: 120px;
    margin: 0 auto;
    opacity: 0.4;
    margin-top: 20px;
}

/* --- MOBILE RESPONSIVE TWEAKS --- */
@media (max-width: 768px) {
    /* Fix hero content positioning and overflow on mobile */
    .hero-content {
        left: 0;
        padding-left: 30px;
        padding-right: 30px;
        max-width: 100%;
    }
    
    .hero-title {
        font-size: 2.1rem;
        line-height: 1.4;
    }

    /* Reduce concept text font size */
    .concept-title-main {
        font-size: 1.3rem;
        line-height: 1.6;
        margin-bottom: 25px;
    }

    /* Hamburger Menu Icon Styling */
    .hamburger-btn {
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        width: 28px;
        height: 20px;
        background: transparent;
        border: none;
        cursor: pointer;
        z-index: 101;
    }

    .hamburger-btn span {
        display: block;
        width: 100%;
        height: 2px;
        background-color: var(--text-light);
        transition: all 0.3s ease;
    }

    /* Mobile Nav Overlay Panel */
    nav {
        display: flex;
        flex-direction: column;
        position: fixed;
        top: 0;
        right: -100%;
        width: 75%;
        height: 100vh;
        background-color: #121212;
        padding: 100px 40px;
        box-shadow: -10px 0 30px rgba(0, 0, 0, 0.8);
        transition: right 0.4s ease-in-out;
        z-index: 100;
    }

    nav.mobile-active {
        right: 0;
    }

    nav a {
        margin: 15px 0;
        font-size: 1.1rem;
        opacity: 0.9;
    }

    /* Hamburger to 'X' animation state */
    .hamburger-btn.active span:nth-child(1) {
        transform: translateY(9px) rotate(45deg);
    }
    .hamburger-btn.active span:nth-child(2) {
        opacity: 0;
    }
    .hamburger-btn.active span:nth-child(3) {
        transform: translateY(-9px) rotate(-45deg);
    }
}

/* Hide hamburger on desktop view */
@media (min-width: 769px) {
    .hamburger-btn {
        display: none;
    }
}

@media (max-width: 768px) {
    /* Reset reverse layout grid positioning on mobile so the image gallery renders below the text */
    .split-container.reverse-layout .split-text {
        grid-column: 1;
    }
    .split-container.reverse-layout .seating-gallery-container {
        grid-column: 1;
        grid-row: auto;
        height: 350px; /* Explicit height so background images show */
        margin-top: 30px;
    }
}

@media (max-width: 768px) {
    /* Turn the review track into a smooth touch-scrolling container */
    .review-marquee-container {
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        scroll-snap-type: x mandatory;
        scrollbar-width: none; /* Hide scrollbars for clean look */
    }

    .review-marquee-container::-webkit-scrollbar {
        display: none;
    }

    .review-track {
        display: flex;
        gap: 20px;
        /* Disable the automatic marquee animation on mobile so it waits for user touch */
        animation: none !important; 
        transform: none !important;
        padding: 0 30px;
    }

    .review-card {
        flex: 0 0 85%; /* Shows the main card and a peek of the next one */
        scroll-snap-align: center;
    }
}

/* Email links */
a[href^="mailto:"] {
    color: var(--accent);
    text-decoration: none;
    border-bottom: 1px dashed rgba(197, 168, 128, 0.4);
    padding-bottom: 2px;
    transition: color 0.3s ease, border-color 0.3s ease;
}

a[href^="mailto:"]:hover {
    color: var(--text-light);
    border-bottom-color: var(--text-light);
}