/* =========================================
   THE STRANDED — Compromise Build
   Matching live WordPress/Avada site
   ========================================= */

/* --- RESET & GLOBALS --- */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
    font-family: 'Paytone One', 'Museo Sans', sans-serif;
    font-size: 1.1rem;
    line-height: 1.6;
    background-color: #000;
    color: #fff;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Sigmar One', 'Paytone One', cursive;
    text-transform: uppercase;
    font-weight: 400;
}

a { text-decoration: none; color: inherit; }
img { max-width: 100%; height: auto; display: block; }
ul { list-style: none; }

/* --- COLOR TOKENS --- */
:root {
    --green: #023c2e;
    --red: #cc2229;
    --gold: #dda61d;
    --cream: #f4f1ea;
    --black: #000;
    --white: #fff;
    --grey-text: #999;
    --grey-light: #333;
}

/* --- GLOBAL POLISH --- */
::selection {
    background: var(--red);
    color: #fff;
}

a:focus-visible,
button:focus-visible {
    outline: 3px solid var(--gold);
    outline-offset: 3px;
}

/* =========================================
   NAVIGATION
   ========================================= */
.site-nav {
    position: fixed;
    top: 0; left: 0; width: 100%;
    z-index: 1000;
    padding: 20px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background 0.4s ease, padding 0.4s ease;
}

.site-nav.scrolled {
    background: rgba(0,0,0,0.92);
    backdrop-filter: blur(12px);
    padding: 12px 40px;
}

.nav-logo img {
    height: 70px;
    width: auto;
    transition: height 0.4s ease;
}

.site-nav.scrolled .nav-logo img {
    height: 45px;
}

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

.nav-links a {
    font-family: 'Paytone One', sans-serif;
    font-size: 0.85rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: #fff;
    transition: color 0.3s;
    white-space: nowrap;
    position: relative;
}

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

/* Underline grow on hover */
.nav-links a:not(.nav-reserve)::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -6px;
    width: 100%;
    height: 2px;
    background: var(--gold);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
}

.nav-links a:not(.nav-reserve):hover::after,
.nav-links a[aria-current="page"]:not(.nav-reserve)::after {
    transform: scaleX(1);
}

.nav-links a[aria-current="page"] {
    color: var(--gold);
}

.nav-reserve {
    background: var(--red);
    color: #fff !important;
    padding: 12px 24px;
    border-radius: 0;
    font-weight: 700;
    transition: background 0.3s, transform 0.2s;
    overflow: hidden;
}

.nav-reserve:hover {
    background: var(--gold);
    transform: scale(1.03);
}

/* Sheen sweep on primary buttons */
.nav-reserve::before,
.book-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -80%;
    width: 50%;
    height: 100%;
    background: linear-gradient(105deg, transparent, rgba(255,255,255,0.35), transparent);
    transform: skewX(-20deg);
    transition: left 0.6s ease;
    pointer-events: none;
}

.nav-reserve:hover::before,
.book-btn:hover::before {
    left: 130%;
}

/* Hamburger */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 8px;
    z-index: 1100;
}

.hamburger span {
    display: block;
    width: 26px;
    height: 3px;
    background: #fff;
    border-radius: 2px;
    transition: all 0.3s;
}

.hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 6px); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -6px); }

/* Mobile Menu Overlay */
.mobile-menu {
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: var(--green);
    /* Below .site-nav (1000) so the logo and close (X) button stay visible */
    z-index: 999;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 24px;
    transform: translateX(100%);
    transition: transform 0.5s cubic-bezier(0.77, 0, 0.175, 1);
}

.mobile-menu.open {
    transform: translateX(0);
}

.mobile-menu a {
    font-family: 'Sigmar One', cursive;
    font-size: 2rem;
    color: #fff;
    text-transform: uppercase;
    transition: color 0.3s;
    opacity: 0;
    transform: translateY(14px);
    transition: color 0.3s, opacity 0.4s ease, transform 0.4s ease;
}

/* Links cascade in as the menu opens */
.mobile-menu.open a {
    opacity: 1;
    transform: translateY(0);
}

.mobile-menu.open a:nth-child(1) { transition-delay: 0.15s; }
.mobile-menu.open a:nth-child(2) { transition-delay: 0.21s; }
.mobile-menu.open a:nth-child(3) { transition-delay: 0.27s; }
.mobile-menu.open a:nth-child(4) { transition-delay: 0.33s; }
.mobile-menu.open a:nth-child(5) { transition-delay: 0.39s; }
.mobile-menu.open a:nth-child(6) { transition-delay: 0.45s; }
.mobile-menu.open a:nth-child(7) { transition-delay: 0.51s; }

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

.mobile-menu .mobile-reserve {
    background: var(--red);
    padding: 16px 40px;
    margin-top: 20px;
    font-family: 'Paytone One', sans-serif;
    font-size: 1.1rem;
}

/* =========================================
   HERO SECTION
   ========================================= */
.hero {
    position: relative;
    width: 100%;
    height: 100vh;
    min-height: 600px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-bg {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background-size: cover;
    background-position: center;
    z-index: 1;
    animation: heroZoom 18s ease-out forwards;
    will-change: transform;
}

@keyframes heroZoom {
    from { transform: scale(1.12); }
    to { transform: scale(1); }
}

.hero-bg::after {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: linear-gradient(to bottom,
        rgba(0,0,0,0.55) 0%,
        rgba(0,0,0,0.35) 45%,
        rgba(0,0,0,0.6) 100%);
}

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

.hero-content h1 {
    font-size: clamp(3rem, 10vw, 8rem);
    line-height: 0.95;
    margin-bottom: 20px;
    color: var(--gold);
    text-shadow: 0 4px 30px rgba(0,0,0,0.6);
}

.hero-content h1 span {
    display: block;
}

.hero-address {
    font-family: 'Paytone One', sans-serif;
    font-size: clamp(0.9rem, 2vw, 1.3rem);
    letter-spacing: 3px;
    color: rgba(255,255,255,0.85);
    text-transform: uppercase;
}

/* World Cup booking CTA in the hero */
.hero-cta {
    margin-top: 34px;
    font-size: 1rem;
    padding: 15px 34px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.4);
}

/* Scroll cue */
.hero-scroll {
    position: absolute;
    bottom: 28px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    color: rgba(255,255,255,0.75);
    font-family: 'Paytone One', sans-serif;
    font-size: 0.7rem;
    letter-spacing: 3px;
    text-transform: uppercase;
}

.hero-scroll .chevron {
    width: 12px;
    height: 12px;
    border-right: 3px solid currentColor;
    border-bottom: 3px solid currentColor;
    transform: rotate(45deg);
    animation: chevronBob 2s ease-in-out infinite;
}

@keyframes chevronBob {
    0%, 100% { transform: rotate(45deg) translate(0, 0); }
    50% { transform: rotate(45deg) translate(5px, 5px); }
}

/* =========================================
   WORLD CUP PROMO (poster + copy)
   ========================================= */
.wc-promo {
    background: #0a0a0a;
    padding: 100px 40px;
}

.wc-promo-inner {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: minmax(280px, 400px) 1fr;
    gap: 70px;
    align-items: center;
}

.wc-promo-poster img {
    width: 100%;
    border-radius: 8px;
    box-shadow: 0 24px 60px rgba(0,0,0,0.65);
    transform: rotate(-1.5deg);
    transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}

.wc-promo-poster:hover img {
    transform: rotate(0deg) scale(1.02);
}

.wc-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    border: 2px solid var(--red);
    border-radius: 999px;
    padding: 8px 18px;
    font-family: 'Paytone One', sans-serif;
    font-size: 0.8rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #fff;
    background: rgba(204, 34, 41, 0.12);
}

.wc-live-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--red);
    animation: wcPulse 1.6s ease-out infinite;
}

@keyframes wcPulse {
    0% { box-shadow: 0 0 0 0 rgba(204, 34, 41, 0.6); }
    100% { box-shadow: 0 0 0 12px rgba(204, 34, 41, 0); }
}

.wc-promo-text h2 {
    font-size: clamp(1.8rem, 4vw, 3rem);
    line-height: 1.15;
    color: var(--gold);
    margin: 26px 0 24px;
}

.wc-promo-text h2::after {
    content: '';
    display: block;
    width: 70px;
    height: 5px;
    background: var(--red);
    margin-top: 18px;
    border-radius: 3px;
}

.wc-promo-text > p:not(.wc-badge) {
    color: #bbb;
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 26px;
}

.wc-details {
    border-left: 3px solid var(--gold);
    padding-left: 20px;
    margin-bottom: 34px;
    display: grid;
    gap: 12px;
}

.wc-details li {
    color: #bbb;
    font-size: 1rem;
    line-height: 1.6;
}

.wc-details strong {
    display: block;
    font-family: 'Paytone One', sans-serif;
    font-size: 0.8rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--gold);
}

@media (max-width: 900px) {
    .wc-promo {
        padding: 60px 20px;
    }

    .wc-promo-inner {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .wc-promo-poster {
        max-width: 340px;
        margin: 0 auto;
    }

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

    .wc-promo-text h2::after {
        margin-left: auto;
        margin-right: auto;
    }

    .wc-details {
        text-align: left;
    }
}

/* =========================================
   PROMO STRIP (World Cup marquee)
   ========================================= */
.promo-strip {
    background: var(--red);
    overflow: hidden;
    padding: 13px 0;
}

.promo-track {
    display: flex;
    width: max-content;
    animation: marquee 26s linear infinite;
}

.promo-strip:hover .promo-track {
    animation-play-state: paused;
}

.promo-group {
    display: flex;
    white-space: nowrap;
}

.promo-group span {
    font-family: 'Paytone One', sans-serif;
    font-size: 0.95rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #fff;
    padding-right: 24px;
}

.promo-group span::after {
    content: '\2605'; /* star separator */
    color: var(--gold);
    padding-left: 24px;
    font-size: 0.8rem;
}

@keyframes marquee {
    to { transform: translateX(-50%); }
}

/* =========================================
   HOURS STRIP
   ========================================= */
.hours-strip {
    background: var(--green);
    padding: 20px 40px;
    text-align: center;
}

.hours-strip p {
    font-family: 'Paytone One', sans-serif;
    font-size: 1rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--gold);
}

/* =========================================
   ABOUT SECTION
   ========================================= */
.about-section {
    background: var(--cream);
    color: #000;
    padding: 100px 40px;
}

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

.about-intro {
    max-width: 800px;
    margin-bottom: 60px;
}

.about-intro h2 {
    font-size: clamp(2rem, 5vw, 3.5rem);
    line-height: 1.1;
    margin-bottom: 30px;
    color: var(--green);
}

.about-intro h2::after {
    content: '';
    display: block;
    width: 70px;
    height: 5px;
    background: var(--gold);
    margin-top: 18px;
    border-radius: 3px;
}

.about-intro p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #444;
    margin-bottom: 16px;
}

.about-intro .highlight {
    font-family: 'Sigmar One', cursive;
    font-size: 1.6rem;
    color: var(--gold);
    margin-top: 30px;
}

.about-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    border-top: 3px solid #000;
    padding-top: 50px;
}

.stat-card {
    text-align: center;
    padding: 30px 20px;
    background: #fff;
    border-radius: 8px;
    border-bottom: 4px solid var(--gold);
    box-shadow: 0 6px 24px rgba(0,0,0,0.06);
    transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.stat-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 14px 34px rgba(0,0,0,0.12);
}

.stat-number {
    font-family: 'Sigmar One', cursive;
    font-size: 3rem;
    color: var(--gold);
    display: block;
    margin-bottom: 8px;
    text-shadow: 1px 1px 0px rgba(0,0,0,0.1);
}

.stat-label {
    font-family: 'Paytone One', sans-serif;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #333;
}

/* =========================================
   BEER POUR SECTION (Mlíko / Šnyt / Hladinka)
   ========================================= */
.pour-section {
    background: #000;
    padding: 100px 40px;
}

.pour-section .section-label {
    font-family: 'Sigmar One', cursive;
    font-size: clamp(2rem, 5vw, 3.5rem);
    text-align: center;
    color: var(--gold);
    margin-bottom: 60px;
}

.pour-section .section-label::after {
    content: '';
    display: block;
    width: 70px;
    height: 5px;
    background: var(--red);
    margin: 18px auto 0;
    border-radius: 3px;
}

.pour-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    max-width: 1100px;
    margin: 0 auto;
}

.pour-card {
    text-align: center;
    padding: 30px;
}

.pour-card img {
    width: 100%;
    max-width: 280px;
    height: auto;
    margin: 0 auto 24px auto;
    filter: drop-shadow(0 18px 30px rgba(0,0,0,0.45));
    transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}

.pour-card:hover img {
    transform: translateY(-10px) scale(1.03);
}

.pour-card h3 {
    font-size: 2.5rem;
    color: var(--gold);
    margin-bottom: 10px;
}

.pour-card h3::after {
    content: '';
    display: block;
    width: 44px;
    height: 4px;
    background: var(--red);
    margin: 12px auto 14px;
    border-radius: 2px;
    transition: width 0.35s ease;
}

.pour-card:hover h3::after {
    width: 70px;
}

.pour-card p {
    color: var(--grey-text);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* =========================================
   KITCHEN / FOOD SECTION
   ========================================= */
.kitchen-section {
    background: var(--green);
    padding: 100px 40px;
}

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

.kitchen-inner h2 {
    font-size: clamp(1.8rem, 4vw, 3rem);
    line-height: 1.2;
    color: var(--gold);
    margin-bottom: 50px;
}

.kitchen-inner h2::after {
    content: '';
    display: block;
    width: 70px;
    height: 5px;
    background: var(--red);
    margin: 20px auto 0;
    border-radius: 3px;
}

.kitchen-image-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    margin-top: 40px;
}

.kitchen-image-grid img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 4px;
    transition: transform 0.5s ease, box-shadow 0.5s ease;
}

.kitchen-image-grid img:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 36px rgba(0,0,0,0.35);
}

/* =========================================
   INSTAGRAM / SOCIAL SECTION
   ========================================= */
.social-section {
    background: #111;
    padding: 80px 40px;
}

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

.social-inner h2 {
    font-family: 'Sigmar One', cursive;
    font-size: 2rem;
    color: var(--gold);
    margin-bottom: 40px;
}

.social-inner h2::after {
    content: '';
    display: block;
    width: 56px;
    height: 4px;
    background: var(--red);
    margin: 16px auto 0;
    border-radius: 2px;
}

.social-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
}

.social-grid img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    border-radius: 4px;
    filter: brightness(0.92);
    transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1), filter 0.4s ease;
}

.social-grid img:hover {
    transform: scale(1.04);
    filter: brightness(1.05);
}

/* =========================================
   FOOTER
   ========================================= */
footer {
    background: #000;
    border-top: 1px solid #222;
    padding: 60px 40px 30px;
}

.footer-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-col h4 {
    font-family: 'Sigmar One', cursive;
    font-size: 1.2rem;
    color: var(--red);
    margin-bottom: 16px;
}

.footer-col p,
.footer-col a {
    font-size: 0.95rem;
    color: #888;
    line-height: 1.8;
    display: block;
}

.footer-col a:hover {
    color: var(--white);
}

.footer-social {
    display: flex;
    gap: 15px;
    margin-top: 15px;
    align-items: center;
}

.footer-social a {
    color: var(--grey-text);
    transition: color 0.3s ease, transform 0.3s ease;
    display: flex;
}

.footer-social a:hover {
    color: var(--gold);
    transform: translateY(-2px);
}

.footer-social svg {
    width: 24px;
    height: 24px;
    fill: currentColor;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid #222;
    font-size: 0.8rem;
    color: #555;
}

/* =========================================
   PAGE HEADER (Subpages)
   ========================================= */
.page-header {
    background: radial-gradient(circle at 50% 130%, #075c46 0%, var(--green) 65%);
    padding: 160px 40px 80px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-header h1 {
    font-size: clamp(2.5rem, 6vw, 5rem);
    color: var(--gold);
    animation: pageHeaderIn 0.8s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.page-header h1::after {
    content: '';
    display: block;
    width: 70px;
    height: 5px;
    background: var(--red);
    margin: 22px auto 0;
    border-radius: 3px;
}

.page-header .subtitle {
    animation: pageHeaderIn 0.8s 0.15s cubic-bezier(0.22, 1, 0.36, 1) both;
}

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

.page-header h1 .header-enquiries {
    display: block;
    font-size: clamp(1.5rem, 4vw, 2.5rem);
    margin-top: 5px;
}

.page-header .subtitle {
    font-family: 'Paytone One', sans-serif;
    font-size: 1.1rem;
    color: var(--gold);
    margin-top: 12px;
    letter-spacing: 2px;
}

/* --- 404 Page --- */
.notfound-header {
    min-height: 70vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.notfound-actions {
    margin-top: 36px;
}

/* --- About Page --- */
.about-page-content {
    background: var(--cream);
    color: #000;
    padding: 80px 40px;
}

.about-page-content .content-block {
    max-width: 800px;
    margin: 0 auto;
}

.about-page-content p {
    font-size: 1.1rem;
    line-height: 1.9;
    color: #333;
    margin-bottom: 20px;
}

.about-page-content .accent-line {
    font-family: 'Sigmar One', cursive;
    font-size: 1.4rem;
    color: var(--red);
    margin-top: 30px;
}

/* --- Beer List Page --- */
.beer-page-content {
    background: var(--cream);
    color: #000;
    padding: 80px 40px;
}

.beer-category {
    max-width: 900px;
    margin: 0 auto 60px;
}

.beer-category h3 {
    font-size: 2rem;
    color: var(--green);
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 3px solid var(--green);
}

.beer-table {
    width: 100%;
    border-collapse: collapse;
}

.beer-table th {
    font-family: 'Paytone One', sans-serif;
    text-align: left;
    padding: 10px 0;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #666;
    border-bottom: 1px solid #ddd;
}

.beer-table td {
    padding: 14px 0;
    font-size: 1rem;
    border-bottom: 1px solid #eee;
    transition: background 0.25s ease;
}

.beer-table tbody tr:hover td {
    background: rgba(2, 60, 46, 0.05);
}

.beer-table td:last-child {
    text-align: right;
    font-family: 'Paytone One', sans-serif;
    font-weight: 700;
    color: var(--red);
}

.beer-note {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
    font-family: 'Paytone One', sans-serif;
    font-size: 1.1rem;
    color: #666;
    padding: 30px 0;
    border-top: 2px solid var(--green);
}

/* --- Kitchen Page --- */
.kitchen-page-content {
    background: var(--cream);
    color: #000;
    padding: 80px 40px;
}

.kitchen-page-inner {
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
}

.kitchen-page-inner p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #333;
    margin-bottom: 30px;
}

.menu-images-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    margin-top: 30px;
}

.menu-images-grid img {
    width: 100%;
    border-radius: 4px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

/* --- Reservations Page --- */
.reservations-content {
    background: var(--cream);
    color: #000;
    padding: 80px 40px;
}

.reservations-inner {
    max-width: 900px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

.res-info h3 {
    font-size: 1.8rem;
    color: var(--green);
    margin-bottom: 20px;
}

.res-info p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: #444;
    margin-bottom: 10px;
}

.res-info a {
    color: var(--red);
    font-weight: 700;
    text-decoration: underline;
}

.res-booking h3 {
    font-size: 1.8rem;
    color: var(--green);
    margin-bottom: 20px;
}

.res-booking p {
    font-size: 1.05rem;
    color: #444;
    margin-bottom: 24px;
}

.book-btn {
    display: inline-block;
    position: relative;
    overflow: hidden;
    background: var(--red);
    color: #fff;
    font-family: 'Paytone One', sans-serif;
    font-size: 1.1rem;
    padding: 16px 40px;
    text-transform: uppercase;
    letter-spacing: 2px;
    transition: background 0.3s, transform 0.2s;
}

.book-btn:hover {
    background: var(--green);
    transform: scale(1.03);
}

.booking-widget-wrapper {
    background: #0a0a0a;
    padding: 24px 20px;
    border-radius: 8px;
    box-shadow: 0 14px 40px rgba(0,0,0,0.18);
    border-top: 4px solid var(--gold);
    overflow: hidden;
}

/* =========================================
   MOBILE CAROUSEL SYSTEM
   (Active only on mobile via JS + CSS)
   ========================================= */

/* Desktop: carousel wrapper is transparent, track keeps its grid */
.mobile-carousel { position: relative; }
.carousel-dots { display: none; } /* Hidden on desktop */

/* =========================================
   RESPONSIVE — TABLET
   ========================================= */
@media (max-width: 1024px) {
    .nav-links { display: none; }
    .hamburger { display: flex; }

    .about-stats { grid-template-columns: repeat(3, 1fr); gap: 15px; }
    .pour-grid { gap: 20px; }
    .reservations-inner { grid-template-columns: 1fr; gap: 40px; }
}

/* =========================================
   RESPONSIVE — MOBILE
   ========================================= */
@media (max-width: 768px) {
    .site-nav { padding: 14px 20px; }
    .nav-logo img { height: 45px; }
    .site-nav.scrolled .nav-logo img { height: 38px; }

    .hero { min-height: 500px; }
    .hero-content h1 { font-size: clamp(2.5rem, 12vw, 4.5rem); }

    .hours-strip { padding: 16px 20px; }
    .hours-strip p { font-size: 0.8rem; letter-spacing: 1px; }

    .about-section { padding: 60px 20px; }

    .pour-section { padding: 60px 20px; }
    .pour-card img { max-width: 200px; }

    .kitchen-section { padding: 60px 20px; }

    .social-section { padding: 50px 20px; }

    /* "@thestrandedldn" is one unbreakable word — size it to fit */
    .social-inner h2 { font-size: clamp(1.2rem, 7vw, 2rem); }

    footer { padding: 40px 20px 20px; }
    .footer-inner { grid-template-columns: 1fr; gap: 30px; }

    /* Subpages */
    .page-header { padding: 130px 20px 60px; }

    /* Long single-word titles ("Reservations") clip at the desktop
       clamp minimum — scale with the viewport instead */
    .page-header h1 { font-size: clamp(1.9rem, 8.5vw, 3rem); }
    .about-page-content, .beer-page-content,
    .kitchen-page-content, .reservations-content { padding: 50px 20px; }

    .reservations-inner { grid-template-columns: 1fr; gap: 30px; }

    /* --- CAROUSEL ACTIVATION --- */
    .mobile-carousel {
        overflow: hidden;
    }

    .carousel-track {
        /* Override any grid layout — become horizontal scroll */
        display: flex !important;
        grid-template-columns: none !important;
        gap: 0 !important;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
    }

    .carousel-track::-webkit-scrollbar { display: none; }

    /* Each direct child becomes a full-width slide */
    .carousel-track > * {
        flex: 0 0 100%;
        width: 100%;
        min-width: 100%;
        scroll-snap-align: start;
    }

    /* Stats cards — give them breathing room */
    .carousel-track.about-stats .stat-card {
        padding: 30px 20px;
    }

    /* Pour cards — centre and size properly */
    .carousel-track.pour-grid .pour-card {
        padding: 20px 30px;
    }

    /* Image slides — full-width with consistent height */
    .carousel-track.kitchen-image-grid img,
    .carousel-track.menu-images-grid img {
        height: 300px;
        object-fit: cover;
        border-radius: 4px;
    }

    .carousel-track.social-grid img {
        height: 280px;
        object-fit: cover;
    }

    /* DOTS */
    .carousel-dots {
        display: flex;
        justify-content: center;
        gap: 8px;
        padding: 16px 0 4px;
    }

    .carousel-dot {
        width: 10px;
        height: 10px;
        border-radius: 50%;
        background: rgba(150,150,150,0.35);
        border: none;
        cursor: pointer;
        transition: background 0.3s, transform 0.3s;
        padding: 0;
    }

    .carousel-dot.active {
        background: var(--red);
        transform: scale(1.3);
    }

    /* Contextual dot colours — light bg sections */
    .about-section .carousel-dot {
        background: rgba(0,0,0,0.15);
    }
    .about-section .carousel-dot.active {
        background: var(--red);
    }

    /* Dark bg sections */
    .pour-section .carousel-dot,
    .social-section .carousel-dot {
        background: rgba(255,255,255,0.25);
    }
    .pour-section .carousel-dot.active,
    .social-section .carousel-dot.active {
        background: var(--gold);
    }

    /* Green bg sections */
    .kitchen-section .carousel-dot {
        background: rgba(255,255,255,0.25);
    }
    .kitchen-section .carousel-dot.active {
        background: var(--gold);
    }

    /* Kitchen photo grid — mobile */
    .carousel-track.kitchen-photos-grid .kitchen-photo-card {
        padding: 0;
    }
    .carousel-track.kitchen-photos-grid .kitchen-photo-card img {
        height: 350px;
        object-fit: cover;
        border-radius: 4px;
    }

    /* Gallery — mobile */
    .gallery-grid {
        display: flex !important;
        grid-template-columns: none !important;
        grid-template-rows: none !important;
        gap: 0 !important;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
    }
    .gallery-grid::-webkit-scrollbar { display: none; }
    .gallery-item {
        flex: 0 0 100%;
        min-width: 100%;
        scroll-snap-align: start;
        grid-row: auto !important;
        grid-column: auto !important;
    }
    .gallery-item img {
        height: 300px !important;
    }

    .gallery-section .carousel-dot {
        background: rgba(255,255,255,0.25);
    }
    .gallery-section .carousel-dot.active {
        background: var(--gold);
    }
}

/* =========================================
   INTRO OVERLAY (Cinematic Splash)
   ========================================= */
.intro-overlay {
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background-color: #000;
    z-index: 9999;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

.intro-bg-image {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background-image: url('assets/bud.png');
    background-size: cover;
    background-position: center;
    opacity: 0;
    z-index: 1;
}

.intro-logo {
    width: 85%;
    max-width: 900px;
    height: auto;
    z-index: 2;
    filter: drop-shadow(0 10px 20px rgba(0,0,0,0.5));
}

/* =========================================
   LIU XIAOMIAN — HTML MENU CARD
   ========================================= */
.lxm-menu-section {
    background: var(--cream);
    padding: 0 40px 80px;
    display: flex;
    justify-content: center;
}

.lxm-menu-card {
    background: #f4e8d8;
    max-width: 700px;
    width: 100%;
    padding: 50px 40px 0;
    border-radius: 8px 8px 0 0;
    position: relative;
    box-shadow: 0 8px 40px rgba(0,0,0,0.08);
    overflow: hidden;
}

.lxm-title {
    text-align: left;
    margin-bottom: 10px;
}

.lxm-script-title {
    font-family: 'Pacifico', cursive;
    font-size: clamp(2.5rem, 7vw, 4.5rem);
    color: #cc2229;
    text-transform: none;
    font-weight: 400;
    line-height: 1;
    margin-bottom: 4px;
}

.lxm-tagline {
    font-family: 'Pacifico', cursive;
    font-size: clamp(1rem, 3vw, 1.6rem);
    color: #cc2229;
    font-weight: 400;
    line-height: 1.3;
}

.lxm-tagline em {
    font-style: italic;
}

.lxm-divider {
    height: 2px;
    background: #cc2229;
    margin: 20px 0;
    opacity: 0.4;
}

.lxm-category {
    margin-bottom: 10px;
}

.lxm-category-title {
    font-family: 'Paytone One', sans-serif;
    font-size: 1.8rem;
    color: #cc2229;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 20px;
}

.lxm-subcategory {
    font-family: 'Paytone One', sans-serif;
    font-size: 1.4rem;
    color: #cc2229;
    font-weight: 700;
    margin-bottom: 16px;
    line-height: 1.4;
}

.lxm-chinese {
    font-family: 'Paytone One', sans-serif;
    font-weight: 400;
}

.lxm-item {
    display: flex;
    gap: 16px;
    align-items: flex-start;
    margin-bottom: 14px;
}

.lxm-item-featured {
    margin-bottom: 20px;
}

.lxm-item-badge {
    flex-shrink: 0;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
}

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

.lxm-item-row {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    gap: 12px;
}

.lxm-item-name {
    font-family: 'Paytone One', sans-serif;
    font-size: 1.4rem;
    color: #cc2229;
    font-weight: 700;
}

.lxm-item-price {
    font-family: 'Paytone One', sans-serif;
    font-size: 1.3rem;
    color: #333;
    font-weight: 700;
    white-space: nowrap;
}

.lxm-item-desc {
    font-family: 'Paytone One', sans-serif;
    font-size: 1.15rem;
    color: #888;
    font-weight: 400;
    margin-top: 4px;
    line-height: 1.5;
}

.lxm-note {
    font-family: 'Paytone One', sans-serif;
    font-size: 0.8rem;
    color: #999;
    font-style: italic;
    margin: 10px 0 20px;
    font-weight: 400;
}

.lxm-icon-decoration {
    display: flex;
    justify-content: center;
    gap: 10px;
    padding: 10px 0;
    opacity: 0.85;
}

/* Checkered bottom border */
.lxm-checkered {
    height: 30px;
    margin-top: 30px;
    background-image:
        linear-gradient(45deg, #cc2229 25%, transparent 25%),
        linear-gradient(-45deg, #cc2229 25%, transparent 25%),
        linear-gradient(45deg, transparent 75%, #cc2229 75%),
        linear-gradient(-45deg, transparent 75%, #cc2229 75%);
    background-size: 30px 30px;
    background-position: 0 0, 0 15px, 15px -15px, -15px 0;
}

/* Kitchen photos grid (desktop) */
.kitchen-photos-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-top: 30px;
}

.kitchen-photo-card img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 6px;
    transition: transform 0.5s ease;
}

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

/* =========================================
   MASONRY IMAGE GALLERY
   ========================================= */
.gallery-section {
    background: #0a0a0a;
    padding: 80px 40px;
}

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

.gallery-inner h2 {
    font-family: 'Sigmar One', cursive;
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    color: var(--gold);
    margin-bottom: 50px;
    letter-spacing: 2px;
}

.gallery-inner h2::after {
    content: '';
    display: block;
    width: 56px;
    height: 4px;
    background: var(--red);
    margin: 16px auto 0;
    border-radius: 2px;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: auto auto;
    gap: 12px;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 6px;
}

.gallery-item img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    display: block;
    transition: transform 0.6s cubic-bezier(0.22, 1, 0.36, 1), filter 0.4s ease;
    filter: brightness(0.85);
}

.gallery-item img[src*="boys.jpg"] {
    object-position: top;
}

.gallery-item:hover img {
    transform: scale(1.08);
    filter: brightness(1);
}

.gallery-item::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0;
    width: 100%; height: 40%;
    background: linear-gradient(to top, rgba(0,0,0,0.5), transparent);
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
}

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

/* Featured item spans 2 columns */
.gallery-item--wide {
    grid-column: span 2;
}

.gallery-item--wide img {
    height: 340px;
}

/* Tall item spans 2 rows */
.gallery-item--tall {
    grid-row: span 2;
}

.gallery-item--tall img {
    height: 100%;
    min-height: 572px;
}

@media (max-width: 1024px) {
    .gallery-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    .gallery-item--tall img {
        min-height: 400px;
    }
}

@media (max-width: 768px) {
    .lxm-menu-section {
        padding: 0 15px 50px;
    }
    .lxm-menu-card {
        padding: 30px 20px 0;
    }

    .gallery-section {
        padding: 50px 20px;
    }
    .gallery-inner h2 {
        margin-bottom: 30px;
    }

    .promo-group span {
        font-size: 0.8rem;
    }

    .hero-scroll {
        bottom: 20px;
    }
}

/* =========================================
   SCROLL REVEAL SYSTEM
   (JS adds .reveal-init on load, .reveal-in on intersect —
    no JS means everything stays visible)
   ========================================= */
[data-reveal].reveal-init {
    opacity: 0;
}

[data-reveal].reveal-in {
    opacity: 1;
    animation: revealUp 0.8s cubic-bezier(0.22, 1, 0.36, 1) backwards;
}

/* Stagger containers stay put; their children cascade in */
[data-reveal="stagger"].reveal-init {
    opacity: 1;
}

[data-reveal="stagger"].reveal-init > * {
    opacity: 0;
}

[data-reveal="stagger"].reveal-in {
    animation: none;
}

[data-reveal="stagger"].reveal-in > * {
    opacity: 1;
    animation: revealUp 0.7s cubic-bezier(0.22, 1, 0.36, 1) backwards;
}

[data-reveal="stagger"].reveal-in > *:nth-child(2) { animation-delay: 0.1s; }
[data-reveal="stagger"].reveal-in > *:nth-child(3) { animation-delay: 0.2s; }
[data-reveal="stagger"].reveal-in > *:nth-child(4) { animation-delay: 0.3s; }
[data-reveal="stagger"].reveal-in > *:nth-child(5) { animation-delay: 0.4s; }
[data-reveal="stagger"].reveal-in > *:nth-child(6) { animation-delay: 0.5s; }
[data-reveal="stagger"].reveal-in > *:nth-child(7) { animation-delay: 0.6s; }
[data-reveal="stagger"].reveal-in > *:nth-child(8) { animation-delay: 0.7s; }

@keyframes revealUp {
    from {
        opacity: 0;
        transform: translateY(28px);
    }
}

/* =========================================
   DESIGNMYNIGHT WIDGET
   (ported from the Avada custom CSS options)
   ========================================= */

/* Fill the column, size to content (the Avada build forced 1000px —
   in this layout that left a large empty black panel below the form) */
#dmn-partner-widget {
    width: 100% !important;
    max-width: 100% !important;
    min-height: 0 !important;
    background-color: rgba(255,255,255,0) !important;
}

#dmn-partner-widget,
#dmn-partner-widget * {
    box-sizing: border-box !important;
}

/* Style the primary button with gold color and curved corners */
#dmn-partner-widget .button.submit-form-button {
    background-color: #dda61d !important;
    color: #000000 !important;
    border-radius: 12px !important;
    border: 2px solid transparent !important;
    font-weight: 700 !important;
    text-transform: uppercase !important;
}

/* Style the button's hover state */
#dmn-partner-widget .button.submit-form-button:hover {
    background-color: #b08417 !important;
}

/* Style the calendar day selection */
#dmn-partner-widget .date-selector .vdp-datepicker .vdp-datepicker__calendar .cell:not(.blank):not(.disabled).day:hover,
#dmn-partner-widget .date-selector .vdp-datepicker .vdp-datepicker__calendar .cell:not(.blank):not(.disabled).selected {
    background: #dda61d !important;
    color: #000000 !important;
    border-color: #dda61d !important;
}

/* Style the dropdowns and text input fields */
#dmn-partner-widget .stage .dropdown,
#dmn-partner-widget .detail-stage fieldset input,
#dmn-partner-widget .detail-stage fieldset select {
    border-radius: 12px !important;
    border-color: #dda61d !important;
    border-width: 1px !important; /* Adjust border thickness here */
    color: #ffffff !important;
    background-color: #000000 !important;
}

/* Set the text color for all links within the widget to gold */
#dmn-partner-widget a {
    color: #dda61d !important;
}

/* Adjust the font and color for all standard text and headings
   (sized down from the Avada 20px to fit this narrower column) */
#dmn-partner-widget,
#dmn-partner-widget .stage .dropdown .dropdown__title,
#dmn-partner-widget .list-slot .list-slot__title,
#dmn-partner-widget .list-slot .list-slot__subtitle {
    font-family: 'Paytone One', sans-serif !important;
    color: #dda61d !important;
    font-size: 17px !important;
}

/* Set the button text to uppercase */
#dmn-partner-widget button {
    text-transform: uppercase !important;
    font-size: 16px !important;
}

/* Style the "Today" and "Tomorrow" buttons — flex so they share the
   row without clipping off the edge of the card */
#dmn-partner-widget .date-selector__quick-buttons {
    display: flex !important;
    gap: 10px !important;
}

#dmn-partner-widget .date-selector__quick-buttons button {
    flex: 1 1 0 !important;
    min-width: 0 !important;
    background-color: #dda61d !important;
    color: #000000 !important;
    border-color: #dda61d !important;
    font-family: 'Paytone One', sans-serif !important;
    font-size: 19px !important;
    border-radius: 10px !important;
    text-transform: none !important;
    transition: all 0.3s ease-in-out !important;
}

/* Change text color to white on mouse hover */
#dmn-partner-widget .date-selector__quick-buttons button:hover {
    color: #ffffff !important;
}

/* Apply 'Paytone One' font to ALL relevant widget text elements */
#dmn-partner-widget .dropdown__title,
#dmn-partner-widget .list-slot__title,
#dmn-partner-widget .list-slot__subtitle,
#dmn-partner-widget .list-option .title,
#dmn-partner-widget .modal__inner .modal__header h3,
#dmn-partner-widget .date-selector .vdp-datepicker .vdp-datepicker__calendar header,
#dmn-partner-widget .offers-header .offers-header__title,
#dmn-partner-widget .offers-list .offer-slot .offer-slot__title {
    font-family: 'Paytone One', sans-serif !important;
}

/* The widget's stages are absolutely positioned, so the inner container
   needs an explicit height — 580px fits the date picker and detail form
   without the huge empty panel the old 1000px container left behind. */
#dmn-partner-widget #dmn-widget-inner {
    height: auto !important;
    min-height: 580px !important;
    width: 100% !important;
    padding: 10px !important;
}

/* Mobile responsive widget styles */
@media only screen and (max-width: 768px) {
    /* Main widget container adjustments */
    #dmn-partner-widget {
        max-width: 95% !important; /* Give some breathing room on small screens */
        min-height: auto !important; /* Allow the height to be dynamic */
        overflow: hidden !important; /* Hide overflow to prevent scrollbars */
    }

    /* Fix the modal height and width to be responsive on mobile */
    #dmn-partner-widget .modal__inner {
        width: 90% !important;
        margin-left: -45% !important; /* Center the modal on the screen */
        top: 2% !important;
        height: 95% !important;
    }

    /* Adjust padding and margins for smaller screens */
    #dmn-partner-widget .stage .dropdown,
    #dmn-partner-widget .detail-stage fieldset,
    #dmn-partner-widget .date-selector .vdp-datepicker .vdp-datepicker__calendar,
    #dmn-partner-widget .booking-summary-callout {
        padding: 0.5em !important;
        margin: 0.5em 0 !important;
    }

    /* Make the calendar responsive */
    #dmn-partner-widget .date-selector .vdp-datepicker .vdp-datepicker__calendar {
        font-size: 14px !important;
    }

    /* Restructure the quick buttons */
    #dmn-partner-widget .date-selector__quick-buttons {
        flex-direction: column !important; /* Stack buttons vertically */
    }

    #dmn-partner-widget .date-selector__quick-buttons button {
        width: 100% !important; /* Full width buttons */
        margin: 5px 0 !important; /* Add vertical space */
        font-size: 20px !important; /* Adjust font size for better readability */
    }
}

/* =========================================
   REDUCED MOTION
   ========================================= */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
    html {
        scroll-behavior: auto;
    }
}
