/* Design Tokens & Theme Variables */
:root {
    --bg-dark: #0a0a0a;
    --bg-card: #141414;
    --bg-nav: rgba(10, 10, 10, 0.85);
    --primary-red: #8B0000;
    --accent-red: #C52222;
    --glow-red: rgba(197, 34, 34, 0.4);
    --gold: #D4AF37;
    --gold-glow: rgba(212, 175, 55, 0.4);
    --text-white: #ECEBE6;
    --text-grey: #a6a6a6;
    --text-muted: #666;
    --transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    
    /* Interactive Table Status Colors */
    --table-avail: #2e7d32;
    --table-selected: #D4AF37;
    --table-occupied: #c62828;
}

/* Reset & Global Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
    background-color: var(--bg-dark);
}

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

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

/* Typography Details */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', 'Prompt', serif;
    font-weight: 700;
    letter-spacing: 0.5px;
}

.accent-red {
    color: var(--accent-red);
}

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

.text-right {
    text-align: right;
}

.font-bold {
    font-weight: 700;
}

/* Reusable Components: Buttons, Badges */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 28px;
    border-radius: 30px;
    font-weight: 500;
    cursor: pointer;
    font-size: 15px;
    transition: var(--transition);
    border: none;
    outline: none;
}

.btn-primary {
    background-color: var(--primary-red);
    color: var(--text-white);
    box-shadow: 0 4px 15px var(--glow-red);
}

.btn-primary:hover {
    background-color: var(--accent-red);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(197, 34, 34, 0.6);
}

.btn-secondary {
    background-color: transparent;
    color: var(--text-white);
    border: 1px solid rgba(236, 235, 230, 0.2);
}

.btn-secondary:hover {
    background-color: rgba(236, 235, 230, 0.05);
    border-color: var(--text-white);
    transform: translateY(-2px);
}

.btn-line {
    background-color: #06C755;
    color: var(--text-white);
    border: 1px solid #06C755;
    box-shadow: 0 4px 15px rgba(6, 199, 85, 0.2);
}

.btn-line:hover {
    background-color: #05a848;
    border-color: #05a848;
    color: var(--text-white);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(6, 199, 85, 0.4);
}

.btn-full {
    width: 100%;
}

.btn-large {
    padding: 16px 36px;
    font-size: 17px;
}

.section-badge {
    display: inline-block;
    color: var(--gold);
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 12px;
}

.section-title {
    font-size: 38px;
    line-height: 1.25;
    margin-bottom: 20px;
}

.section-subtitle {
    color: var(--text-grey);
    font-size: 16px;
    max-width: 600px;
    margin: 0 auto 50px auto;
}

/* Glassmorphic Navbar */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background-color: var(--bg-nav);
    backdrop-filter: blur(15px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.03);
    transition: var(--transition);
}

.navbar.scrolled {
    padding: 10px 0;
    background-color: rgba(6, 6, 6, 0.95);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.8);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 15px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 700;
    font-size: 20px;
    font-family: 'Outfit', sans-serif;
}

#nav-logo-img {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--gold);
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 30px;
}

.nav-link {
    font-size: 14px;
    font-weight: 500;
    color: var(--text-grey);
    letter-spacing: 0.5px;
    position: relative;
    padding: 5px 0;
}

.nav-link:hover, .nav-link.active {
    color: var(--text-white);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--accent-red);
    transition: var(--transition);
}

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

.btn-book-nav {
    padding: 8px 20px;
    font-size: 13px;
    box-shadow: 0 3px 10px var(--glow-red);
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    color: var(--text-white);
    font-size: 24px;
    cursor: pointer;
}

/* Hero Section Styles */
.hero-section {
    position: relative;
    height: 100vh;
    min-height: 600px;
    background-image: url('./images/restaurant_13.jpg');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-bg-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        to right,
        rgba(5, 5, 5, 0.95) 0%,
        rgba(5, 5, 5, 0.8) 50%,
        rgba(5, 5, 5, 0.4) 100%
    );
    z-index: 1;
}

.hero-content-container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 2;
}

.hero-content {
    max-width: 650px;
    animation: fadeInUp 1s ease-out;
}

.hero-subtitle {
    display: block;
    color: var(--gold);
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 5px;
    margin-bottom: 20px;
}

.hero-title {
    font-size: 56px;
    line-height: 1.15;
    margin-bottom: 25px;
}

.hero-description {
    font-size: 18px;
    color: var(--text-grey);
    margin-bottom: 40px;
}

.hero-actions {
    display: flex;
    gap: 20px;
}

/* Motto Banner Section */
.motto-section {
    background-color: var(--bg-card);
    padding: 80px 20px;
    border-top: 1px solid rgba(197, 34, 34, 0.15);
    border-bottom: 1px solid rgba(197, 34, 34, 0.15);
    position: relative;
}

.motto-container {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.motto-quote-icon {
    font-size: 32px;
    color: var(--accent-red);
    opacity: 0.3;
    margin-bottom: 15px;
}

.motto-text {
    font-family: 'Playfair Display', serif;
    font-size: 22px;
    font-style: italic;
    line-height: 1.8;
    color: var(--text-white);
    letter-spacing: 0.5px;
}

/* About & Slider Section */
.about-section {
    padding: 100px 20px;
}

.about-container {
    max-width: 1200px;
    margin: 0 auto;
}

.about-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 60px;
    align-items: center;
}

.about-text-column {
    padding-right: 20px;
}

.section-text {
    color: var(--text-grey);
    font-size: 16px;
    margin-bottom: 25px;
    text-align: justify;
}

.hours-badge {
    display: inline-flex;
    align-items: center;
    gap: 15px;
    background-color: rgba(139, 0, 0, 0.1);
    border: 1px solid rgba(197, 34, 34, 0.2);
    padding: 15px 25px;
    border-radius: 12px;
    margin-top: 20px;
    font-size: 15px;
}

.hours-badge i {
    font-size: 24px;
    color: var(--accent-red);
}

/* Gallery Slider Components */
.about-gallery-column {
    position: relative;
}

.gallery-slider-container {
    position: relative;
    width: 100%;
    height: 450px;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.6);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

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

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.8s ease-in-out;
    background-size: cover;
    background-position: center;
}

.slide.active {
    opacity: 1;
}

.slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(10, 10, 10, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--text-white);
    width: 45px;
    height: 45px;
    border-radius: 50%;
    cursor: pointer;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.slider-btn:hover {
    background: var(--accent-red);
    border-color: var(--accent-red);
}

.prev-btn { left: 15px; }
.next-btn { right: 15px; }

.slider-dots {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
    z-index: 10;
}

.dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.4);
    cursor: pointer;
    transition: var(--transition);
}

.dot.active {
    background: var(--accent-red);
    width: 24px;
    border-radius: 4px;
}

/* Chef's Highlights Cards Grid */
.highlights-section {
    padding: 100px 20px;
    background-color: rgba(20, 20, 20, 0.5);
    border-top: 1px solid rgba(255, 255, 255, 0.02);
}

.highlights-container {
    max-width: 1200px;
    margin: 0 auto;
}

.highlights-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 30px;
}

.dish-card {
    background-color: var(--bg-card);
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.03);
    box-shadow: 0 4px 20px rgba(0,0,0,0.3);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
}

.dish-card:hover {
    transform: translateY(-8px);
    border-color: var(--primary-red);
    box-shadow: 0 10px 30px rgba(139, 0, 0, 0.25);
}

.dish-img-wrapper {
    position: relative;
    height: 250px;
    overflow: hidden;
}

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

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

.dish-tag {
    position: absolute;
    top: 15px;
    left: 15px;
    background-color: var(--accent-red);
    color: var(--text-white);
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.5px;
    box-shadow: 0 3px 8px rgba(0,0,0,0.4);
}

.dish-info {
    padding: 25px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.dish-header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    margin-bottom: 12px;
}

.dish-title {
    font-size: 20px;
    font-weight: 600;
}

.dish-price {
    font-size: 18px;
    color: var(--gold);
    font-weight: 700;
}

.dish-desc {
    color: var(--text-grey);
    font-size: 14px;
    line-height: 1.5;
}

/* Smash Burger Section */
.smash-section {
    padding: 100px 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.02);
}

.smash-container {
    max-width: 1200px;
    margin: 0 auto;
}

.smash-grid {
    display: grid;
    grid-template-columns: 0.85fr 1.15fr;
    gap: 60px;
    align-items: center;
}

.poster-card {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.6);
    border: 1px solid rgba(255,255,255,0.05);
    cursor: pointer;
}

.poster-img {
    width: 100%;
    display: block;
    transition: transform 0.5s ease;
}

.poster-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.5);
    opacity: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: var(--transition);
}

.poster-card:hover .poster-overlay {
    opacity: 1;
}

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

.poster-overlay i {
    font-size: 36px;
    color: var(--gold);
}

.smash-philosophy {
    font-family: 'Playfair Display', serif;
    font-size: 20px;
    font-style: italic;
    color: var(--gold);
    line-height: 1.6;
    margin-bottom: 25px;
    border-left: 4px solid var(--accent-red);
    padding-left: 20px;
}

.burger-menu-list {
    margin-top: 30px;
}

.burger-item {
    padding: 18px 0;
    border-bottom: 1px solid rgba(255,255,255,0.05);
}

.burger-item-header {
    display: flex;
    justify-content: space-between;
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 5px;
}

.burger-name {
    color: var(--text-white);
}

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

.burger-desc {
    font-size: 14px;
    color: var(--text-grey);
}

.burger-extras {
    margin-top: 25px;
    background: rgba(255, 255, 255, 0.02);
    padding: 15px 20px;
    border-radius: 8px;
    font-size: 13px;
    color: var(--text-grey);
    border-left: 3px solid var(--gold);
}

/* Digital Menu Gallery Box */
.menu-section {
    padding: 100px 20px;
    background-color: rgba(20, 20, 20, 0.5);
    border-top: 1px solid rgba(255, 255, 255, 0.02);
}

.menu-container {
    max-width: 1200px;
    margin: 0 auto;
}

.menu-book-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
    margin-top: 20px;
}

.menu-pages-slider {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    max-width: 500px;
    width: 100%;
}

.menu-current-page-container {
    background-color: var(--bg-card);
    padding: 10px;
    border-radius: 12px;
    border: 1px solid rgba(255,255,255,0.05);
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
    width: 100%;
    cursor: pointer;
    position: relative;
}

.menu-page-img {
    width: 100%;
    border-radius: 6px;
    display: block;
}

.menu-page-indicator {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(10, 10, 10, 0.85);
    color: var(--text-white);
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 500;
    backdrop-filter: blur(5px);
}

.menu-slider-btn {
    background: rgba(10, 10, 10, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--text-white);
    width: 45px;
    height: 45px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    z-index: 10;
    top: 50%;
    transform: translateY(-50%);
    transition: var(--transition);
}

.menu-slider-btn:hover {
    background-color: var(--accent-red);
}

.menu-slider-btn.prev-btn { left: -60px; }
.menu-slider-btn.next-btn { right: -60px; }

.menu-thumbs {
    display: flex;
    gap: 10px;
    max-width: 100%;
    overflow-x: auto;
    padding: 10px 0;
    scrollbar-width: thin;
    scrollbar-color: var(--accent-red) rgba(0,0,0,0.2);
}

.menu-thumbs::-webkit-scrollbar {
    height: 6px;
}

.menu-thumbs::-webkit-scrollbar-thumb {
    background: var(--accent-red);
    border-radius: 3px;
}

.menu-thumb-item {
    width: 60px;
    height: 80px;
    border-radius: 4px;
    cursor: pointer;
    object-fit: cover;
    opacity: 0.5;
    border: 1px solid rgba(255,255,255,0.1);
    transition: var(--transition);
}

.menu-thumb-item.active, .menu-thumb-item:hover {
    opacity: 1;
    border-color: var(--accent-red);
    transform: scale(1.05);
}

/* Visual Gallery Styles */
.visual-gallery-section {
    padding: 100px 20px;
    background-color: var(--bg-card);
    border-top: 1px solid rgba(255, 255, 255, 0.02);
}

.visual-gallery-container {
    max-width: 1200px;
    margin: 0 auto;
}

.gallery-header-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 40px;
}

.gallery-title-area {
    text-align: left;
}

.gallery-title-area .section-title {
    margin-bottom: 10px;
}

.gallery-nav-controls {
    display: flex;
    gap: 15px;
    margin-bottom: 5px;
}

.gallery-nav-btn {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--text-white);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
}

.gallery-nav-btn:hover {
    background: var(--gold);
    border-color: var(--gold);
    color: var(--bg-dark);
    transform: scale(1.05);
}

.gallery-nav-btn:active {
    transform: scale(0.95);
}

.visual-gallery-grid {
    display: flex;
    overflow-x: auto;
    gap: 30px;
    padding: 10px 5px 20px 5px;
    scroll-snap-type: x mandatory;
    scrollbar-width: none; /* Hide default scrollbar Firefox */
    -ms-overflow-style: none;  /* Hide scrollbar IE/Edge */
    -webkit-overflow-scrolling: touch;
}

/* Hide scrollbar for Chrome, Safari and Opera */
.visual-gallery-grid::-webkit-scrollbar {
    display: none;
}

/* Vertical Reel Card style (9:16 aspect ratio feel) */
.visual-item-card {
    position: relative;
    flex: 0 0 calc(33.333% - 20px); /* Exactly 3 cards visible on desktop */
    scroll-snap-align: start;
    height: 520px; /* Tall aspect ratio suitable for mobile reels */
    border-radius: 16px;
    overflow: hidden;
    background-color: #0c0c0c;
    border: 1px solid rgba(255, 255, 255, 0.05);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    transition: var(--transition);
    cursor: pointer;
    box-sizing: border-box;
}

.visual-item-card:hover {
    transform: translateY(-8px);
    border-color: var(--gold);
    box-shadow: 0 15px 35px rgba(212, 175, 55, 0.2);
}

.visual-media-wrapper {
    width: 100%;
    height: 100%;
    position: relative;
}

.visual-media-wrapper video,
.visual-media-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.6s ease;
}

.visual-item-card:hover .visual-media-wrapper video,
.visual-item-card:hover .visual-media-wrapper img {
    transform: scale(1.05);
}

/* Video controls overlay */
.video-overlay-play {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60px;
    height: 60px;
    background: rgba(10, 10, 10, 0.85);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: var(--gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    transition: var(--transition);
    z-index: 2;
    pointer-events: none;
}

.visual-item-card:hover .video-overlay-play {
    background: var(--accent-red);
    color: var(--text-white);
    border-color: var(--accent-red);
    transform: translate(-50%, -50%) scale(1.1);
    box-shadow: 0 0 15px rgba(197, 34, 34, 0.6);
}

.visual-item-info {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 30px 20px 20px 20px;
    background: linear-gradient(to top, rgba(5, 5, 5, 0.95) 0%, rgba(5, 5, 5, 0.5) 60%, transparent 100%);
    z-index: 2;
}

.visual-item-title {
    font-size: 18px;
    font-weight: 600;
    color: var(--text-white);
    margin-bottom: 5px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.visual-item-desc {
    font-size: 13px;
    color: var(--text-grey);
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
}

/* Tag (Video / Photo) */
.visual-tag {
    position: absolute;
    top: 15px;
    right: 15px;
    background-color: rgba(10, 10, 10, 0.85);
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--gold);
    padding: 4px 10px;
    border-radius: 12px;
    font-size: 11px;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 6px;
    z-index: 2;
}

/* Custom Lightbox for video play */
.video-lightbox {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(5, 5, 5, 0.95);
    backdrop-filter: blur(20px);
    z-index: 2000;
    align-items: center;
    justify-content: center;
}

.video-lightbox-container {
    position: relative;
    max-width: 420px; /* Suitable for vertical video */
    width: 90%;
    max-height: 85vh;
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.8);
    background: #000;
}

.video-lightbox-player {
    width: 100%;
    height: auto;
    display: block;
    max-height: 85vh;
}

.video-lightbox-close {
    position: absolute;
    top: 15px;
    right: 15px;
    color: var(--text-grey);
    background: rgba(10, 10, 10, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    cursor: pointer;
    transition: var(--transition);
    z-index: 10;
}

.video-lightbox-close:hover {
    color: var(--text-white);
    background: var(--accent-red);
    border-color: var(--accent-red);
}

/* Reviews Section Styles */
.reviews-section {
    padding: 100px 20px;
    background-color: var(--bg-card);
    border-top: 1px solid rgba(255, 255, 255, 0.02);
    position: relative;
    overflow: hidden;
}

.reviews-container {
    max-width: 1200px;
    margin: 0 auto;
}

.reviews-carousel-wrapper {
    position: relative;
    margin-top: 40px;
    padding: 0 50px; /* space for arrow buttons */
}

.reviews-carousel-track-container {
    width: 100%;
    overflow: hidden;
}

.reviews-carousel-track {
    display: flex;
    gap: 30px;
    width: 100%;
    transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.review-card {
    flex: 0 0 calc(33.333% - 20px); /* 3 cards on desktop */
    background: rgba(20, 20, 20, 0.6);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.03);
    border-radius: 16px;
    padding: 30px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.4);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: var(--transition);
}

.review-card:hover {
    border-color: var(--gold);
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(212, 175, 55, 0.1);
}

.review-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
    position: relative;
}

.reviewer-avatar {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    color: var(--text-white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    font-weight: 600;
    font-family: 'Outfit', sans-serif;
    border: 1px solid rgba(255,255,255,0.1);
}

.reviewer-meta {
    flex-grow: 1;
}

.reviewer-name {
    font-size: 15px;
    font-weight: 600;
    color: var(--text-white);
    margin-bottom: 4px;
}

.review-stars {
    display: flex;
    gap: 3px;
    color: var(--gold);
    font-size: 12px;
}

.google-g-logo {
    color: var(--text-muted);
    font-size: 18px;
    position: absolute;
    top: 0;
    right: 0;
    opacity: 0.5;
}

.review-text {
    font-size: 14px;
    line-height: 1.6;
    color: var(--text-grey);
    font-style: italic;
    flex-grow: 1;
}

/* Controls */
.reviews-slider-btn {
    background: rgba(10, 10, 10, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--text-white);
    width: 45px;
    height: 45px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    z-index: 10;
    top: 50%;
    transform: translateY(-50%);
    transition: var(--transition);
}

.reviews-slider-btn:hover {
    background-color: var(--accent-red);
    border-color: var(--accent-red);
}

.reviews-slider-btn.prev-btn { left: 0; }
.reviews-slider-btn.next-btn { right: 0; }

.reviews-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 35px;
}

.reviews-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    cursor: pointer;
    transition: var(--transition);
}

.reviews-dot.active {
    background: var(--gold);
    width: 20px;
    border-radius: 4px;
}

.reviews-more-action {
    margin-top: 50px;
}

/* Booking System Section & Wizard Card */
.booking-section {
    padding: 100px 20px;
    position: relative;
    background-image: url('./images/restaurant_11.jpg');
    background-size: cover;
    background-position: center;
}

.booking-bg-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(10, 10, 10, 0.9);
    z-index: 1;
}

.booking-container {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.booking-card-wrapper {
    background-color: rgba(20, 20, 20, 0.85);
    backdrop-filter: blur(15px);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    box-shadow: 0 15px 40px rgba(0,0,0,0.7);
    padding: 40px;
}

.booking-card-header {
    text-align: center;
    margin-bottom: 35px;
}

.booking-card-header h2 {
    font-size: 28px;
    margin-bottom: 10px;
}

.booking-card-header p {
    color: var(--text-grey);
    font-size: 15px;
}

/* Step Indicators CSS */
.step-indicators {
    display: flex;
    justify-content: space-between;
    margin-bottom: 40px;
    position: relative;
}

.step-indicators::before {
    content: '';
    position: absolute;
    top: 15px;
    left: 30px;
    width: calc(100% - 60px);
    height: 2px;
    background: #333;
    z-index: 1;
}

.step-indicator {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    width: 80px;
}

.step-indicator span {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: #222;
    border: 2px solid #444;
    color: var(--text-grey);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 14px;
    transition: var(--transition);
}

.step-indicator label {
    font-size: 12px;
    color: var(--text-grey);
    text-align: center;
    white-space: nowrap;
}

.step-indicator.active span {
    background: var(--primary-red);
    border-color: var(--accent-red);
    color: var(--text-white);
    box-shadow: 0 0 10px var(--glow-red);
}

.step-indicator.active label {
    color: var(--text-white);
    font-weight: 500;
}

.step-indicator.completed span {
    background: var(--table-avail);
    border-color: var(--table-avail);
    color: var(--text-white);
}

/* Wizard step display controls */
.wizard-step {
    display: none;
    animation: fadeIn 0.4s ease-in-out;
}

.wizard-step.active {
    display: block;
}

/* Form Styles */
.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 25px;
}

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

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

.form-group label {
    font-size: 14px;
    font-weight: 500;
    color: var(--text-white);
}

.form-group input, .form-group select, .form-group textarea {
    background-color: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 8px;
    color: var(--text-white);
    padding: 12px 16px;
    font-family: inherit;
    font-size: 15px;
    outline: none;
    transition: var(--transition);
}

.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
    border-color: var(--accent-red);
    background-color: rgba(255, 255, 255, 0.06);
    box-shadow: 0 0 8px rgba(197, 34, 34, 0.2);
}

.input-hint {
    font-size: 12px;
    color: var(--text-grey);
}

.step-actions {
    display: flex;
    justify-content: flex-end;
    gap: 15px;
    margin-top: 35px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 25px;
}

/* Step 2 layout map and details */
.booking-layout-container {
    display: flex;
    flex-direction: column;
    gap: 20px;
    align-items: center;
}

.layout-legend {
    display: flex;
    gap: 20px;
    font-size: 13px;
    flex-wrap: wrap;
    justify-content: center;
}

.legend-item {
    display: flex;
    align-items: center;
    gap: 8px;
}

.legend-color {
    width: 16px;
    height: 16px;
    border-radius: 4px;
    display: inline-block;
}

.color-available { background-color: var(--table-avail); }
.color-occupied { background-color: var(--table-occupied); }
.color-selected { background-color: var(--table-selected); }

.floor-plan-wrapper {
    background-color: #0f0f0f;
    border: 1px solid rgba(255,255,255,0.05);
    border-radius: 12px;
    padding: 10px;
    max-width: 550px;
    width: 100%;
}

/* Floor Plan SVG Styling */
.zone-kitchen { fill: rgba(135, 206, 250, 0.1); stroke: #87CEFA; stroke-width: 1.5; }
.zone-cashier { fill: rgba(30, 144, 255, 0.1); stroke: #1E90FF; stroke-width: 1.5; }
.zone-meat { fill: rgba(0, 191, 255, 0.1); stroke: #00BFFF; stroke-width: 1.5; }
.zone-entrance { fill: rgba(100, 149, 237, 0.1); stroke: #6495ED; stroke-width: 1.5; }
.zone-stage { fill: rgba(139, 0, 0, 0.6); stroke: var(--accent-red); stroke-width: 1.5; }
.zone-wine { fill: rgba(128, 128, 128, 0.15); stroke: #808080; stroke-width: 1.5; }

.zone-text {
    fill: var(--text-grey);
    font-size: 13px;
    font-weight: 500;
}

.table-group {
    cursor: pointer;
}

.svg-table {
    fill: var(--table-avail);
    stroke: rgba(255, 255, 255, 0.15);
    stroke-width: 2;
    transition: var(--transition);
}

.table-num-text {
    fill: var(--text-white);
    font-size: 15px;
    font-weight: 700;
    text-anchor: middle;
    pointer-events: none;
}

.table-cap-text {
    fill: rgba(255, 255, 255, 0.6);
    font-size: 11px;
    text-anchor: middle;
    pointer-events: none;
}

/* Interactive SVG States */
.table-group:hover .svg-table {
    filter: brightness(1.2);
}

.table-group.selected .svg-table {
    fill: var(--table-selected);
    filter: drop-shadow(0 0 8px var(--gold-glow));
    stroke: var(--text-white);
}

.table-group.occupied {
    cursor: not-allowed;
}

.table-group.occupied .svg-table {
    fill: var(--table-occupied);
}

.selected-table-info {
    font-size: 14px;
    background-color: rgba(255,255,255,0.02);
    padding: 12px 25px;
    border-radius: 8px;
    border-left: 3px solid var(--accent-red);
    width: 100%;
    text-align: center;
}

/* Step 3 summary details box */
.booking-summary-box {
    background-color: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    padding: 25px;
    margin: 30px 0;
}

.booking-summary-box h3 {
    font-size: 18px;
    margin-bottom: 15px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    padding-bottom: 8px;
}

.summary-details-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px 25px;
    font-size: 15px;
}

.summary-item {
    display: flex;
    justify-content: space-between;
}

.summary-item strong {
    color: var(--text-grey);
}

.confirm-checkbox {
    display: flex;
    gap: 12px;
    align-items: flex-start;
    font-size: 13px;
    color: var(--text-grey);
    margin-top: 15px;
    cursor: pointer;
}

.confirm-checkbox input {
    margin-top: 4px;
}

/* Step 4 Ticket success */
.success-ticket-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
    text-align: center;
}

.success-icon-circle {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: rgba(46, 125, 50, 0.2);
    color: #4CAF50;
    font-size: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px auto;
}

.digital-ticket {
    background: #1c1c1c;
    border-radius: 16px;
    width: 100%;
    max-width: 380px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
    border: 1px solid #333;
    overflow: hidden;
    position: relative;
}

.ticket-top {
    padding: 25px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.ticket-brand {
    display: flex;
    align-items: center;
    gap: 10px;
    text-align: left;
}

.ticket-logo {
    width: 40px;
    height: 40px;
    border-radius: 50%;
}

.ticket-brand h4 {
    font-size: 16px;
    margin-bottom: 2px;
}

.ticket-brand p {
    font-size: 10px;
    color: var(--text-grey);
}

.ticket-booking-id {
    text-align: right;
}

.ticket-booking-id span {
    font-size: 9px;
    color: var(--text-grey);
    display: block;
}

.ticket-booking-id strong {
    font-size: 15px;
    color: var(--gold);
}

.ticket-divider {
    position: relative;
    height: 2px;
    border-top: 2px dashed #333;
    margin: 0 20px;
}

.left-notch, .right-notch {
    position: absolute;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background-color: #121212;
    top: -10px;
    border: 1px solid #333;
}

.left-notch { left: -31px; }
.right-notch { right: -31px; }

.ticket-body {
    padding: 25px;
}

.ticket-info-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    text-align: left;
    margin-bottom: 25px;
}

.info-cell span {
    font-size: 11px;
    color: var(--text-grey);
    display: block;
    margin-bottom: 3px;
}

.info-cell strong {
    font-size: 14px;
}

.ticket-qr-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    border-top: 1px solid #333;
    padding-top: 25px;
}

.ticket-qr {
    background: #fff;
    padding: 5px;
    border-radius: 6px;
}

.qr-hint {
    font-size: 11px;
    color: var(--text-grey);
}

/* FAQ Section */
.faq-section {
    padding: 100px 20px;
    background-color: var(--bg-card);
    border-top: 1px solid rgba(255, 255, 255, 0.02);
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 15px; /* prevent text from touching screen edges on mobile */
}

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

.faq-item {
    background: rgba(20, 20, 20, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.03);
    border-radius: 12px;
    overflow: hidden;
    transition: var(--transition);
}

.faq-item:hover {
    border-color: rgba(212, 175, 55, 0.2);
}

.faq-item.active {
    border-color: var(--gold);
    box-shadow: 0 5px 15px rgba(212, 175, 55, 0.05);
}

.faq-question {
    width: 100%;
    background: none;
    border: none;
    padding: 20px 25px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    text-align: left;
    color: var(--text-white);
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    font-family: 'Prompt', sans-serif;
    transition: var(--transition);
    white-space: normal; /* Force text wrapping inside button */
    word-wrap: break-word; /* Wrap long words */
    appearance: none; /* Reset native browser button styling */
    -webkit-appearance: none;
    -moz-appearance: none;
    outline: none;
}

.faq-question span {
    padding-right: 20px; /* space between text and icon */
    line-height: 1.5;
}

.faq-question i {
    font-size: 14px;
    color: var(--gold);
    transition: transform 0.3s ease;
    flex-shrink: 0; /* prevent chevron icon from shrinking */
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
    padding: 0 25px;
}

.faq-item.active .faq-answer {
    max-height: 350px; /* increased to fit wrapped answer text */
    padding-bottom: 20px;
}

.faq-answer p {
    font-size: 14px;
    line-height: 1.6;
    color: var(--text-grey);
    white-space: normal;
    word-wrap: break-word;
}

/* Location Contact & Map */
.contact-section {
    padding: 100px 20px;
}

.contact-container {
    max-width: 1200px;
    margin: 0 auto;
}

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

.contact-methods {
    display: flex;
    flex-direction: column;
    gap: 25px;
    margin-top: 35px;
}

.contact-method-item {
    display: flex;
    gap: 20px;
}

.method-icon {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background-color: rgba(139, 0, 0, 0.1);
    color: var(--accent-red);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    flex-shrink: 0;
}

.method-details strong {
    display: block;
    font-size: 15px;
    margin-bottom: 5px;
}

.method-details p {
    color: var(--text-grey);
    font-size: 15px;
}

.method-details a:hover {
    color: var(--accent-red);
}

.method-icon-line {
    background-color: rgba(6, 199, 85, 0.1);
    color: #06C755;
}

.line-link {
    color: #06C755 !important;
    font-weight: 500;
}

.line-link:hover {
    color: #05a848 !important;
}

.map-card {
    background-color: var(--bg-card);
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid rgba(255,255,255,0.05);
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}

.map-iframe-container {
    height: 350px;
    width: 100%;
}

.map-card-footer {
    padding: 15px 25px;
    border-top: 1px solid rgba(255,255,255,0.05);
}

/* Footer Section */
.footer {
    background-color: #050505;
    padding: 50px 20px;
    border-top: 1px solid rgba(255,255,255,0.02);
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.footer-logo {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    margin-bottom: 25px;
}

.footer-logo img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    border: 2px solid var(--gold);
}

.footer-logo h3 {
    font-size: 20px;
    letter-spacing: 2px;
}

.footer-logo p {
    font-size: 11px;
    color: var(--text-grey);
    letter-spacing: 4px;
}

.copyright {
    font-size: 13px;
    color: var(--text-muted);
}

/* Image Lightbox Modal */
.lightbox {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(5,5,5,0.95);
    backdrop-filter: blur(10px);
    z-index: 10000;
    display: none;
    align-items: center;
    justify-content: center;
    animation: fadeIn 0.3s ease-out;
}

.lightbox-content {
    max-width: 90%;
    max-height: 85%;
}

.lightbox-content img {
    max-width: 100%;
    max-height: 85vh;
    border-radius: 8px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.8);
    display: block;
    margin: 0 auto;
}

.lightbox-close {
    position: absolute;
    top: 25px;
    right: 30px;
    color: var(--text-white);
    background: none;
    border: none;
    font-size: 44px;
    cursor: pointer;
    line-height: 1;
}

.lightbox-nav-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    color: var(--text-white);
    font-size: 36px;
    cursor: pointer;
    padding: 20px;
}

.lightbox-nav-btn:hover {
    color: var(--accent-red);
}

/* Keyframes for animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

/* Opening Soon Styles */
.booking-opening-soon {
    text-align: center;
    padding: 30px 10px;
    animation: fadeIn 0.8s ease-in-out;
}

.opening-soon-icon {
    font-size: 64px;
    color: var(--gold);
    margin-bottom: 20px;
    animation: pulse 2s infinite ease-in-out;
}

.booking-opening-soon h3 {
    font-size: 32px;
    font-family: 'Playfair Display', serif;
    color: var(--text-white);
    margin-bottom: 15px;
    letter-spacing: 1px;
}

.opening-soon-text {
    font-size: 16px;
    color: var(--text-white);
    margin-bottom: 15px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

.opening-soon-desc {
    font-size: 14px;
    color: var(--text-grey);
    margin-bottom: 30px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

.opening-soon-actions {
    display: flex;
    justify-content: center;
    gap: 15px;
}

@keyframes pulse {
    0% {
        transform: scale(1);
        opacity: 0.8;
    }
    50% {
        transform: scale(1.05);
        opacity: 1;
    }
    100% {
        transform: scale(1);
        opacity: 0.8;
    }
}

/* Responsive Media Queries (Mobile & Tablet) */
@media (max-width: 992px) {
    .about-grid, .smash-grid, .contact-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    
    .about-text-column {
        padding-right: 0;
    }
    
    .hero-title {
        font-size: 42px;
    }
    
    .review-card {
        flex: 0 0 calc(50% - 15px); /* 2 cards on tablet */
    }
    
    .visual-item-card {
        flex: 0 0 calc(50% - 15px); /* 2 cards visible on tablet */
    }
}

/* Language Switcher Styles */
.lang-switch-container {
    display: flex;
    align-items: center;
    gap: 5px;
    font-family: 'Outfit', sans-serif;
}

.desktop-lang-switch {
    margin-right: 15px;
}

.nav-links .mobile-lang-switch {
    display: none !important; /* hidden on desktop */
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    width: 100%;
    justify-content: center;
}

.btn-lang {
    background: none;
    border: none;
    color: var(--text-muted);
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    padding: 5px 8px;
    transition: var(--transition);
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    outline: none;
}

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

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

.lang-divider {
    color: rgba(255, 255, 255, 0.1);
    font-size: 12px;
}

/* Digital Menu warning banner */
.menu-warning-banner {
    background: rgba(212, 175, 55, 0.1);
    border: 1px solid var(--gold);
    color: var(--text-white);
    padding: 15px 20px;
    border-radius: 8px;
    font-size: 14px;
    margin-bottom: 25px;
    text-align: center;
    font-family: 'Prompt', sans-serif;
    line-height: 1.5;
    animation: fadeInUp 0.5s ease;
}

@media (max-width: 768px) {
    .navbar {
        padding: 15px 0;
    }
    
    .mobile-menu-btn {
        display: block;
    }
    
    .nav-links {
        position: fixed;
        top: 76px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 76px);
        background-color: rgba(6, 6, 6, 0.98);
        backdrop-filter: blur(20px);
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 35px;
        transition: left 0.4s ease;
    }
    
    .nav-links.active {
        left: 0;
    }
    
    .btn-book-nav {
        display: none; /* Hide on mobile in nav, use hero/floating book */
    }
    
    .hero-section {
        background-attachment: scroll; /* fixes lag on iOS */
    }
    
    .hero-title {
        font-size: 36px;
    }
    
    .hero-actions {
        flex-direction: column;
        gap: 15px;
    }
    
    .form-grid {
        grid-template-columns: 1fr;
    }
    
    .form-group.span-2 {
        grid-column: span 1;
    }
    
    .booking-card-wrapper {
        padding: 25px 20px;
    }
    
    .step-indicators {
        margin-bottom: 30px;
    }
    
    .step-indicator label {
        display: none; /* Hide step names on mobile screens */
    }
    
    .summary-details-grid {
        grid-template-columns: 1fr;
        gap: 10px;
    }
    
    .menu-slider-btn.prev-btn { left: -15px; }
    .menu-slider-btn.next-btn { right: -15px; }
    
    .review-card {
        flex: 0 0 100%; /* 1 card on mobile */
        padding: 20px;
    }

    .gallery-header-wrapper {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
        margin-bottom: 25px;
    }
    
    .gallery-title-area {
        text-align: center;
        width: 100%;
    }
    
    .gallery-nav-controls {
        display: none; /* Hide buttons on mobile, swipe is enough */
    }
    
    .visual-item-card {
        flex: 0 0 calc(100% - 40px); /* 1 card visible, peeking next */
    }
    
    .visual-gallery-grid {
        gap: 20px;
    }
    
    .reviews-carousel-wrapper {
        padding: 0 15px;
    }
    
    .reviews-slider-btn.prev-btn { left: -10px; }
    .reviews-slider-btn.next-btn { right: -10px; }
    
    .desktop-lang-switch {
        display: none; /* hide main switcher on mobile navbar */
    }
    
    .nav-links .mobile-lang-switch {
        display: flex !important; /* show inside drawer menu */
    }
}
