/* ==========================================================================
   CSS Design Tokens & Core Settings
   ========================================================================== */
:root {
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Outfit', sans-serif;

    /* Theme Colors */
    --bg-deep: #0b0705;
    --bg-primary: #120b08;
    --bg-secondary: #1a100c;
    --bg-card: rgba(26, 16, 12, 0.75);
    --border-color: rgba(224, 122, 27, 0.15);
    --border-color-glow: rgba(224, 122, 27, 0.4);

    --accent-amber: #e07a1b;
    --accent-gold: #e5a93b;
    --accent-gold-dark: #b87b14;
    --text-primary: #f8f4f0;
    --text-secondary: #c2b4aa;
    --text-muted: #8c7d73;
    
    --success: #2ecc71;
    --success-glow: rgba(46, 204, 113, 0.3);

    /* Animation and Shadows */
    --transition-smooth: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    --transition-quick: all 0.2s ease;
    --glow-shadow: 0 0 20px rgba(224, 122, 27, 0.25);
    --glow-shadow-strong: 0 0 35px rgba(224, 122, 27, 0.55);
    
    /* Layout */
    --container-max-width: 1200px;
}

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

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

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

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

a {
    color: inherit;
    text-decoration: none;
}

ul {
    list-style: none;
}

button, input, select, textarea {
    font-family: inherit;
    font-size: inherit;
    background: none;
    border: none;
    outline: none;
}

/* Common Layout Utilities */
.container {
    width: 90%;
    max-width: var(--container-max-width);
    margin: 0 auto;
}

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

.accent-text {
    color: var(--accent-gold);
    background: linear-gradient(135deg, var(--accent-gold) 0%, var(--accent-amber) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 12px 28px;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition-smooth);
    letter-spacing: 0.5px;
    text-transform: uppercase;
    font-size: 0.85rem;
}

.btn-primary {
    background: linear-gradient(135deg, var(--accent-gold) 0%, var(--accent-amber) 100%);
    color: #0b0705;
    box-shadow: 0 4px 15px rgba(224, 122, 27, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--glow-shadow-strong);
    background: linear-gradient(135deg, #ffd366 0%, #ff952c) 100%;
}

.btn-secondary {
    background-color: rgba(255, 255, 255, 0.05);
    color: var(--text-primary);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.btn-secondary:hover {
    background-color: rgba(255, 255, 255, 0.1);
    border-color: var(--accent-gold);
    color: var(--accent-gold);
    transform: translateY(-2px);
}

.btn-outline {
    border: 1px solid var(--accent-amber);
    color: var(--accent-amber);
}

.btn-outline:hover {
    background-color: var(--accent-amber);
    color: #0b0705;
    box-shadow: var(--glow-shadow);
}

.btn-sm {
    padding: 8px 16px;
    font-size: 0.75rem;
    border-radius: 6px;
}

.btn-block {
    width: 100%;
}

/* Glassmorphism Cards */
.glass-card {
    background: var(--bg-card);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    transition: var(--transition-smooth);
}

.glass-card:hover {
    border-color: var(--border-color-glow);
}

/* Section Styling Headers */
section {
    padding: 100px 0;
    position: relative;
}

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

.section-subtitle {
    display: inline-block;
    color: var(--accent-gold);
    text-transform: uppercase;
    font-weight: 700;
    font-size: 0.85rem;
    letter-spacing: 3px;
    margin-bottom: 12px;
}

.section-title {
    font-family: var(--font-heading);
    font-size: 2.75rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 20px;
}

.section-desc {
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
}

/* ==========================================================================
   Header / Navigation
   ========================================================================== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background-color: rgba(11, 7, 5, 0.85);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    padding: 15px 0;
    transition: var(--transition-smooth);
}

.header.scrolled {
    padding: 10px 0;
    background-color: rgba(11, 7, 5, 0.98);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.6);
}

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

.header-right {
    display: flex;
    align-items: center;
    gap: 20px;
}

.lang-switcher {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background-color: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
}

.lang-btn {
    color: var(--text-secondary);
    cursor: pointer;
    transition: var(--transition-quick);
    padding: 2px 4px;
}

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

.lang-btn.active {
    color: var(--accent-gold);
    text-shadow: 0 0 8px rgba(229, 169, 59, 0.4);
}

.lang-separator {
    color: rgba(255, 255, 255, 0.15);
    pointer-events: none;
    font-weight: 300;
}

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

.logo-icon {
    font-size: 2.2rem;
    color: var(--accent-gold);
    filter: drop-shadow(0 0 8px rgba(229, 169, 59, 0.4));
}

.logo-text {
    display: flex;
    flex-direction: column;
}

.brand-name {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--text-primary);
    line-height: 1.1;
}

.brand-sub {
    font-size: 0.6rem;
    letter-spacing: 2px;
    color: var(--accent-amber);
    font-weight: 700;
}

.nav {
    display: flex;
    align-items: center;
    gap: 30px;
}

.nav-link {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-secondary);
    transition: var(--transition-quick);
    position: relative;
    padding: 5px 0;
}

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

.nav-link:hover {
    color: var(--text-primary);
}

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

.mobile-nav-toggle {
    display: none;
    color: var(--text-primary);
    font-size: 1.5rem;
    cursor: pointer;
}

/* ==========================================================================
   Hero Section
   ========================================================================== */
.hero {
    min-height: 100vh;
    padding-top: 150px;
    display: flex;
    align-items: center;
    background-image: url('assets/hero_bg.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    overflow: hidden;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(11, 7, 5, 0.7) 0%, rgba(18, 11, 8, 0.95) 80%, rgba(18, 11, 8, 1) 100%);
    z-index: 1;
}

.hero-bubbles-container {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
    pointer-events: none;
    overflow: hidden;
}

.bubble {
    position: absolute;
    bottom: -20px;
    background: rgba(229, 169, 59, 0.15);
    border-radius: 50%;
    animation: rise 8s infinite ease-in;
}

@keyframes rise {
    0% {
        bottom: -20px;
        transform: translateX(0) scale(0.8);
        opacity: 0;
    }
    10% {
        opacity: 0.6;
    }
    90% {
        opacity: 0.3;
    }
    100% {
        bottom: 110%;
        transform: translateX(100px) scale(1.2);
        opacity: 0;
    }
}

.hero-container {
    position: relative;
    z-index: 3;
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 50px;
    align-items: center;
}

.hero-content .badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 16px;
    background-color: rgba(229, 169, 59, 0.1);
    border: 1px solid rgba(229, 169, 59, 0.25);
    color: var(--accent-gold);
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 600;
    margin-bottom: 25px;
    letter-spacing: 0.5px;
}

.hero-content h1 {
    font-family: var(--font-heading);
    font-size: 4rem;
    font-weight: 700;
    line-height: 1.15;
    margin-bottom: 25px;
}

.hero-content p {
    color: var(--text-secondary);
    font-size: 1.15rem;
    margin-bottom: 40px;
    max-width: 580px;
}

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

/* Featured Beer Card */
.hero-card {
    border-top: 3px solid var(--accent-gold);
}

.live-status {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.pulse-dot {
    width: 8px;
    height: 8px;
    background-color: var(--success);
    border-radius: 50%;
    box-shadow: 0 0 10px var(--success);
    animation: pulse 1.8s infinite;
}

@keyframes pulse {
    0% {
        transform: scale(0.95);
        box-shadow: 0 0 0 0 rgba(46, 204, 113, 0.7);
    }
    70% {
        transform: scale(1);
        box-shadow: 0 0 0 8px rgba(46, 204, 113, 0);
    }
    100% {
        transform: scale(0.95);
        box-shadow: 0 0 0 0 rgba(46, 204, 113, 0);
    }
}

.status-text {
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--success);
}

.featured-beer h3 {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    margin-bottom: 6px;
}

.beer-type-tag {
    display: inline-block;
    padding: 3px 10px;
    background-color: var(--accent-amber);
    color: #0b0705;
    font-size: 0.65rem;
    font-weight: 700;
    border-radius: 4px;
    text-transform: uppercase;
    margin-bottom: 15px;
}

.beer-specs {
    display: flex;
    gap: 20px;
    font-size: 0.85rem;
    color: var(--text-secondary);
    margin-bottom: 15px;
}

.beer-specs strong {
    color: var(--text-primary);
}

.featured-desc {
    color: var(--text-secondary);
    font-size: 0.9rem;
    margin-bottom: 25px;
    font-style: italic;
}

/* ==========================================================================
   Our Story / About
   ========================================================================== */
.about-container {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 80px;
    align-items: center;
}

.about-image-wrapper {
    position: relative;
}

.about-img {
    border-radius: 16px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.floating-badge {
    position: absolute;
    bottom: -30px;
    right: -30px;
    padding: 20px 25px;
    display: flex;
    flex-direction: column;
    align-items: center;
    border-left: 3px solid var(--accent-gold);
    animation: float 4s ease-in-out infinite;
}

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

.floating-badge .number {
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--accent-gold);
    line-height: 1.1;
}

.floating-badge .label {
    font-size: 0.75rem;
    color: var(--text-secondary);
    font-weight: 500;
    text-align: center;
    letter-spacing: 0.5px;
}

.about-content p {
    color: var(--text-secondary);
    margin-bottom: 20px;
}

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

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

.feature-icon {
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    border-radius: 12px;
    background-color: rgba(224, 122, 27, 0.1);
    border: 1px solid rgba(224, 122, 27, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent-amber);
    font-size: 1.25rem;
}

.feature-item h4 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 5px;
}

.feature-item p {
    font-size: 0.9rem;
    margin-bottom: 0;
    color: var(--text-muted);
}

/* ==========================================================================
   Taproom (Interactive Beer pouring & Filter)
   ========================================================================== */
.tap-filters {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 50px;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 10px 22px;
    border-radius: 30px;
    background-color: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    color: var(--text-secondary);
    cursor: pointer;
    font-weight: 600;
    font-size: 0.85rem;
    transition: var(--transition-quick);
}

.filter-btn:hover {
    border-color: var(--accent-gold);
    color: var(--text-primary);
}

.filter-btn.active {
    background-color: var(--accent-amber);
    border-color: var(--accent-amber);
    color: #0b0705;
    box-shadow: 0 4px 15px rgba(224, 122, 27, 0.3);
}

.taproom-grid {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 50px;
    align-items: stretch;
}

/* Interactive Pourer */
.pourer-widget {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    position: relative;
    min-height: 480px;
    background: radial-gradient(circle at top, rgba(35, 20, 15, 0.8) 0%, rgba(18, 11, 8, 0.95) 100%);
}

.glass-container {
    position: relative;
    width: 200px;
    height: 280px;
    display: flex;
    justify-content: center;
    align-items: flex-end;
}

.pint-glass {
    position: relative;
    width: 140px;
    height: 220px;
    border: 5px solid rgba(255, 255, 255, 0.15);
    border-bottom: 12px solid rgba(255, 255, 255, 0.25);
    border-radius: 5px 5px 25px 25px;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.02);
    box-shadow: inset 0 0 15px rgba(0, 0, 0, 0.5), 0 10px 20px rgba(0,0,0,0.3);
    z-index: 5;
}

.glass-reflection {
    position: absolute;
    top: 50px;
    left: 45px;
    width: 15px;
    height: 180px;
    background: linear-gradient(to right, rgba(255, 255, 255, 0.15) 0%, rgba(255, 255, 255, 0) 100%);
    border-radius: 30px;
    z-index: 10;
    pointer-events: none;
}

.beer-liquid {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 15%; /* Default low level */
    background-color: var(--beer-liquid-color, #e07a1b);
    transition: height 3.5s cubic-bezier(0.4, 0, 0.2, 1), background-color 0.8s ease;
    box-shadow: inset 0 8px 10px rgba(0, 0, 0, 0.15);
}

.foam-layer {
    position: absolute;
    top: -12px;
    left: 0;
    width: 100%;
    height: 18px;
    background-color: var(--beer-foam-color, #ffffff);
    border-radius: 50% 50% 0 0;
    box-shadow: 0 -2px 6px var(--beer-foam-color, #ffffff);
    opacity: 0.9;
    transition: background-color 0.8s ease;
}

/* Bubbles in liquid */
.beer-liquid .bubbles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.beer-bubble {
    position: absolute;
    width: 3px;
    height: 3px;
    background-color: rgba(255, 255, 255, 0.4);
    border-radius: 50%;
    bottom: 0;
    animation: rise-bubble 2.5s infinite linear;
}

@keyframes rise-bubble {
    0% {
        bottom: 0;
        opacity: 0.2;
        transform: translateX(0);
    }
    50% {
        opacity: 0.8;
    }
    100% {
        bottom: 100%;
        opacity: 0;
        transform: translateX(var(--bubble-x, 10px));
    }
}

/* Tap Nozzle and Stream */
.tap-nozzle {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 50px;
    display: flex;
    flex-direction: column;
    align-items: center;
    z-index: 2;
}

.nozzle-tip {
    width: 16px;
    height: 30px;
    background: linear-gradient(to right, #444, #222, #444);
    border-radius: 0 0 4px 4px;
}

.beer-stream {
    width: 6px;
    height: 0;
    background-color: var(--beer-liquid-color, #e07a1b);
    opacity: 0;
    box-shadow: 0 0 8px var(--beer-liquid-color, #e07a1b);
    transition: opacity 0.2s ease;
}

.beer-stream.pouring {
    height: 220px;
    opacity: 0.85;
    animation: stream-flow 0.5s infinite linear;
}

@keyframes stream-flow {
    0% {
        transform: scaleX(0.95);
    }
    50% {
        transform: scaleX(1.05);
    }
    100% {
        transform: scaleX(0.95);
    }
}

.pourer-controls {
    text-align: center;
    width: 100%;
    margin-top: 15px;
}

.pourer-controls h4 {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    margin-bottom: 2px;
}

.pourer-controls p {
    color: var(--text-secondary);
    font-size: 0.8rem;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Beer Tap Cards List */
.taps-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
    max-height: 480px;
    overflow-y: auto;
    padding-right: 8px;
}

/* Custom Scrollbar for taproom list */
.taps-list::-webkit-scrollbar {
    width: 6px;
}

.taps-list::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.02);
    border-radius: 10px;
}

.taps-list::-webkit-scrollbar-thumb {
    background: var(--border-color-glow);
    border-radius: 10px;
}

.tap-card {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 18px 24px;
    background-color: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    cursor: pointer;
    transition: var(--transition-quick);
}

.tap-card:hover {
    background-color: rgba(224, 122, 27, 0.03);
    border-color: rgba(224, 122, 27, 0.25);
    transform: translateX(4px);
}

.tap-card.active {
    background-color: rgba(224, 122, 27, 0.06);
    border-color: var(--accent-gold);
    box-shadow: 0 4px 15px rgba(224, 122, 27, 0.1);
}

.tap-num {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--accent-gold);
    width: 30px;
}

.tap-info {
    flex-grow: 1;
}

.tap-info h3 {
    font-size: 1.15rem;
    font-weight: 600;
    margin-bottom: 4px;
    color: var(--text-primary);
}

.beer-style {
    font-size: 0.75rem;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.tap-meta {
    display: flex;
    flex-direction: column;
    text-align: right;
    gap: 2px;
}

.tap-meta .abv {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-primary);
}

.tap-meta .ibu {
    font-size: 0.75rem;
    color: var(--text-muted);
}

.arrow-icon {
    font-size: 0.9rem;
    color: var(--text-muted);
    transition: var(--transition-quick);
}

.tap-card:hover .arrow-icon,
.tap-card.active .arrow-icon {
    color: var(--accent-gold);
    transform: translateX(2px);
}

/* ==========================================================================
   Kitchen / Food Pairings
   ========================================================================== */
.pairings-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.pairings-main-img-wrapper {
    position: relative;
    overflow: visible;
}

.pairings-img {
    border-radius: 16px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.5);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.pairing-highlight {
    position: absolute;
    bottom: -20px;
    left: -20px;
    right: 20px;
    border-left: 4px solid var(--accent-amber);
    padding: 20px 25px;
    z-index: 10;
}

.pairing-highlight h4 {
    font-size: 1.25rem;
    font-family: var(--font-heading);
    margin-bottom: 6px;
}

.pairing-highlight p {
    font-size: 0.85rem;
    color: var(--text-secondary);
    margin-bottom: 12px;
}

.pair-beer-recommend {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.recommend-label {
    font-size: 0.7rem;
    color: var(--text-muted);
    text-transform: uppercase;
    font-weight: 600;
}

.beer-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.85rem;
    color: var(--accent-gold);
    font-weight: 700;
}

.food-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.food-card {
    padding: 20px;
    background-color: rgba(255, 255, 255, 0.01);
    border: 1px solid rgba(255, 255, 255, 0.04);
    border-radius: 12px;
    cursor: pointer;
    position: relative;
    transition: var(--transition-quick);
}

.food-card:hover {
    border-color: rgba(224, 122, 27, 0.15);
    background-color: rgba(224, 122, 27, 0.02);
}

.food-card.active {
    border-color: var(--accent-amber);
    background-color: rgba(224, 122, 27, 0.04);
}

.food-price {
    position: absolute;
    top: 20px;
    right: 20px;
    font-weight: 700;
    color: var(--accent-gold);
}

.food-card h3 {
    font-size: 1.15rem;
    font-weight: 600;
    margin-bottom: 6px;
    padding-right: 80px;
}

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

/* ==========================================================================
   Table Reservation Booking Widget
   ========================================================================== */
.booking-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
}

.layout-selector {
    display: flex;
    flex-direction: column;
}

.layout-selector h3 {
    font-family: var(--font-heading);
    font-size: 1.6rem;
    margin-bottom: 5px;
}

.layout-instruction {
    font-size: 0.85rem;
    color: var(--text-secondary);
    margin-bottom: 30px;
}

/* Interactive Bar Map */
.bar-map {
    background-color: rgba(0, 0, 0, 0.3);
    border: 1px dashed var(--border-color);
    border-radius: 12px;
    padding: 30px;
    height: 280px;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 15px;
}

.map-zone {
    flex: 1;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background-color: rgba(255, 255, 255, 0.02);
    border-radius: 8px;
    padding: 12px 18px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: var(--transition-quick);
}

.map-zone:hover {
    border-color: rgba(229, 169, 59, 0.3);
    background-color: rgba(229, 169, 59, 0.03);
}

.map-zone.active {
    border-color: var(--accent-gold);
    background-color: rgba(229, 169, 59, 0.08);
    box-shadow: 0 0 15px rgba(229, 169, 59, 0.1);
}

.zone-tag {
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--text-primary);
}

.map-zone.active .zone-tag {
    color: var(--accent-gold);
}

.zone-seats {
    display: flex;
    gap: 8px;
}

/* Seat representations */
.seat {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: var(--success);
}

.seat.filled {
    background-color: #e74c3c;
}

.map-zone.active .seat:not(.filled) {
    background-color: var(--accent-gold);
    box-shadow: 0 0 6px var(--accent-gold);
}

.map-legend {
    display: flex;
    gap: 20px;
    margin-top: 20px;
    font-size: 0.75rem;
    justify-content: center;
    color: var(--text-secondary);
}

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

.legend-color {
    width: 8px;
    height: 8px;
    border-radius: 50%;
}

.legend-color.available {
    background-color: var(--success);
}

.legend-color.filled {
    background-color: #e74c3c;
}

.legend-color.selected {
    background-color: var(--accent-gold);
    box-shadow: 0 0 6px var(--accent-gold);
}

/* Form Panel */
.booking-form-panel {
    border-left: 1px solid rgba(255, 255, 255, 0.05);
    padding-left: 50px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.selected-zone-info {
    margin-bottom: 25px;
    background-color: rgba(255, 255, 255, 0.02);
    padding: 15px;
    border-radius: 8px;
    border-left: 3px solid var(--accent-gold);
}

.info-label {
    font-size: 0.7rem;
    color: var(--text-muted);
    text-transform: uppercase;
    font-weight: 600;
}

.selected-zone-info h4 {
    font-size: 1.25rem;
    color: var(--text-primary);
    margin-bottom: 2px;
}

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

.reservation-form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

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

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

.form-group label {
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    color: var(--text-secondary);
}

.form-group input,
.form-group select {
    background-color: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    padding: 10px 14px;
    border-radius: 6px;
    color: var(--text-primary);
    transition: var(--transition-quick);
}

.form-group input:focus,
.form-group select:focus {
    border-color: var(--accent-gold);
    background-color: rgba(255, 255, 255, 0.06);
}

.form-group select option {
    background-color: var(--bg-primary);
    color: var(--text-primary);
}

/* Success Message Ticket View */
.booking-success-message {
    text-align: center;
    padding: 30px;
    background-color: rgba(46, 204, 113, 0.05);
    border: 1px solid var(--success);
    border-radius: 12px;
    animation: scale-up 0.5s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

@keyframes scale-up {
    0% {
        transform: scale(0.92);
        opacity: 0;
    }
    100% {
        transform: scale(1);
        opacity: 1;
    }
}

.success-icon {
    font-size: 3rem;
    color: var(--success);
    margin-bottom: 15px;
    filter: drop-shadow(0 0 10px var(--success-glow));
}

.booking-success-message h3 {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    margin-bottom: 10px;
}

.booking-success-message p {
    font-size: 0.95rem;
    color: var(--text-secondary);
    margin-bottom: 15px;
}

.ticket-id {
    display: inline-block;
    padding: 4px 12px;
    background-color: rgba(255, 255, 255, 0.05);
    border: 1px dashed rgba(255, 255, 255, 0.2);
    border-radius: 4px;
    font-family: monospace;
    font-size: 0.85rem;
    color: var(--accent-gold);
    margin-bottom: 25px;
}

/* ==========================================================================
   Quiz: Find Your Polish Beer Match
   ========================================================================== */
.quiz-wrapper {
    display: grid;
    grid-template-columns: 1.3fr 0.7fr;
    gap: 50px;
    padding: 0;
    overflow: hidden;
}

.quiz-visual {
    padding: 45px;
    position: relative;
    background-color: rgba(255, 255, 255, 0.01);
}

.quiz-bg-icon {
    position: absolute;
    right: -20px;
    bottom: -20px;
    font-size: 10rem;
    opacity: 0.02;
    pointer-events: none;
}

.quiz-badge {
    display: inline-block;
    padding: 4px 12px;
    background-color: rgba(229, 169, 59, 0.15);
    border: 1px solid rgba(229, 169, 59, 0.3);
    color: var(--accent-gold);
    border-radius: 4px;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 20px;
    letter-spacing: 0.5px;
}

.quiz-intro-content h2 {
    font-family: var(--font-heading);
    font-size: 2.2rem;
    margin-bottom: 15px;
}

.quiz-intro-content p {
    color: var(--text-secondary);
    margin-bottom: 30px;
}

/* Quiz Steps */
.quiz-panel h3 {
    font-size: 1.3rem;
    margin-bottom: 25px;
}

.quiz-progress-bar {
    width: 100%;
    height: 4px;
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    margin-bottom: 10px;
}

.progress-fill {
    height: 100%;
    background-color: var(--accent-gold);
    border-radius: 10px;
    transition: var(--transition-smooth);
}

.quiz-step-indicator {
    font-size: 0.75rem;
    color: var(--text-muted);
    font-weight: 600;
    margin-bottom: 25px;
    text-transform: uppercase;
}

.quiz-options {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.quiz-opt-btn {
    text-align: left;
    padding: 15px 20px;
    background-color: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 8px;
    color: var(--text-primary);
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 15px;
    font-weight: 500;
    transition: var(--transition-quick);
}

.quiz-opt-btn:hover {
    border-color: rgba(229, 169, 59, 0.3);
    background-color: rgba(229, 169, 59, 0.03);
}

.opt-letter {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 25px;
    height: 25px;
    border-radius: 4px;
    background-color: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--text-secondary);
}

.quiz-opt-btn:hover .opt-letter {
    background-color: var(--accent-gold);
    color: #0b0705;
    border-color: var(--accent-gold);
}

/* Quiz Result Panel */
.quiz-result {
    animation: scale-up 0.5s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.result-badge {
    display: inline-block;
    padding: 3px 10px;
    background-color: var(--success);
    color: #0b0705;
    font-size: 0.65rem;
    font-weight: 700;
    border-radius: 4px;
    text-transform: uppercase;
    margin-bottom: 12px;
}

.quiz-result h2 {
    font-family: var(--font-heading);
    font-size: 2.2rem;
    margin-bottom: 8px;
}

.quiz-result .beer-style-tag {
    margin-bottom: 20px;
}

.match-desc {
    color: var(--text-secondary);
    margin-bottom: 30px;
    font-size: 1rem;
    max-width: 500px;
}

.result-actions {
    display: flex;
    gap: 15px;
}

/* Quiz Sidebar info */
.quiz-sidebar {
    background-color: rgba(224, 122, 27, 0.02);
    border-left: 1px solid rgba(224, 122, 27, 0.1);
    padding: 45px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 30px;
}

.quiz-sidebar h3 {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    color: var(--text-primary);
}

.secret-item {
    display: flex;
    gap: 15px;
}

.secret-item i {
    font-size: 1.2rem;
    color: var(--accent-gold);
    margin-top: 3px;
}

.secret-item h4 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 4px;
}

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

/* ==========================================================================
   Footer
   ========================================================================== */
.footer {
    background-color: #080504;
    border-top: 1px solid rgba(255, 255, 255, 0.03);
    padding: 80px 0 0 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr 1fr;
    gap: 50px;
    margin-bottom: 60px;
}

.footer-logo {
    margin-bottom: 20px;
}

.footer-brand p {
    color: var(--text-secondary);
    font-size: 0.9rem;
    margin-bottom: 25px;
    max-width: 320px;
}

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

.social-link {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.06);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    color: var(--text-secondary);
    transition: var(--transition-quick);
}

.social-link:hover {
    background-color: var(--accent-gold);
    color: #0b0705;
    border-color: var(--accent-gold);
    transform: translateY(-2px);
}

.footer-info h3,
.footer-contact h3 {
    font-size: 1.15rem;
    font-weight: 600;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 10px;
}

.footer-info h3::after,
.footer-contact h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 2px;
    background-color: var(--accent-gold);
}

.hours-list li {
    display: flex;
    justify-content: space-between;
    font-size: 0.9rem;
    color: var(--text-secondary);
    padding: 8px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.02);
}

.footer-contact p {
    display: flex;
    gap: 12px;
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin-bottom: 18px;
}

.footer-contact i {
    color: var(--accent-gold);
    font-size: 1rem;
    margin-top: 3px;
}

.footer-bottom {
    background-color: #050302;
    padding: 25px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.02);
}

.footer-bottom-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.8rem;
    color: var(--text-muted);
}

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

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

/* ==========================================================================
   Responsive Media Queries
   ========================================================================== */
@media (max-width: 1024px) {
    .hero-container {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }

    .hero-content p {
        margin: 0 auto 30px auto;
    }

    .hero-actions {
        justify-content: center;
    }

    .about-container {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .about-image-wrapper {
        max-width: 500px;
        margin: 0 auto;
    }

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

    .pairings-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .pairings-main-img-wrapper {
        max-width: 500px;
        margin: 0 auto;
    }

    .booking-wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .booking-form-panel {
        border-left: none;
        padding-left: 0;
        padding-top: 30px;
        border-top: 1px solid rgba(255, 255, 255, 0.05);
    }

    .quiz-wrapper {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .quiz-sidebar {
        border-left: none;
        border-top: 1px solid rgba(224, 122, 27, 0.1);
        padding: 30px;
    }
}

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

    .section-title {
        font-size: 2.2rem;
    }

    .hero-content h1 {
        font-size: 2.8rem;
    }

    .header-container {
        position: relative;
    }

    .nav {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: var(--bg-primary);
        flex-direction: column;
        padding: 20px 0;
        gap: 15px;
        border-bottom: 1px solid rgba(255, 255, 255, 0.05);
        box-shadow: 0 10px 20px rgba(0,0,0,0.5);
    }

    .nav.mobile-active {
        display: flex;
    }

    .mobile-nav-toggle {
        display: block;
    }

    .nav-cta {
        display: none;
    }

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

    .footer-bottom-container {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
}
