/* ============================================================
   book-a-table.css
   Save to: assets/css/book-a-table.css
   ============================================================ */

/* ── Variables — exact as provided ────────────────────────── */
:root {
    --olive: #797a51;
    --khaki: #9e8b5e;
    --woodrush: #343511;
    --linen: #eee3d4;
    --merlot: #ffffff;
    --porcelain: #f1f1f1;
}

/* ═══════════════════════════════════════════════════════════
   1. HERO
   ═══════════════════════════════════════════════════════════ */
#bat-hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: var(--woodrush);
}

.bat-hero-bg {
    position: absolute;
    inset: 0;
    background-image: url(../images/book-a-table/hero-image.png);
    background-size: cover;
    background-position: center;
    transform: scale(1.04);
    transition: transform 9s ease;
    z-index: 0;
}

#bat-hero:hover .bat-hero-bg {
    transform: scale(1.00);
}

/* ── Video background (index page only) ─────────────────── */
.bat-hero-video {
    display: none;
}

.page-home .bat-hero-bg {
    display: none;
}

.page-home .bat-hero-video {
    display: block;
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transform: scale(1.04);
    transition: transform 9s ease;
    z-index: 0;
}

.page-home #bat-hero:hover .bat-hero-video {
    transform: scale(1.00);
}

/* ─────────────────────────────────────────────────────────── */

.bat-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(160deg,
            rgba(52, 53, 17, 0.60) 0%,
            rgba(52, 53, 17, 0.35) 50%,
            rgba(52, 53, 17, 0.58) 100%);
    z-index: 1;
}

.bat-hero-inner {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 160px 24px 120px;
    max-width: 800px;
    margin: 0 auto;
}

.bat-hero-eyebrow {
    font-family: 'Lexend', sans-serif;
    font-weight: 400;
    font-size: 11px;
    letter-spacing: 7px;
    text-transform: uppercase;
    color: rgba(238, 227, 212, 0.6);
    margin-bottom: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
}

.bat-hero-eyebrow span {
    display: inline-block;
    width: 40px;
    height: 1px;
    background: rgba(238, 227, 212, 0.35);
}

.bat-hero-title {
    font-family: 'ivyOra', serif;
    font-weight: 400;
    font-size: 88px;
    line-height: 1.02;
    color: #fff;
    margin-bottom: 12px;
}

.bat-hero-rule {
    width: 48px;
    height: 2px;
    background: var(--merlot);
    margin: 28px auto;
}

.bat-hero-sub {
    font-family: 'Lexend', sans-serif;
    font-weight: 400;
    font-size: 17px;
    line-height: 30px;
    color: rgba(238, 227, 212, 0.7);
    max-width: 520px;
    margin: 0 auto 48px;
}

.bat-hero-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 64px;
    padding: 0 52px;
    background: var(--linen);
    color: var(--woodrush);
    font-family: 'Lexend', sans-serif;
    font-weight: 500;
    font-size: 13px;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    text-decoration: none;
    border: 1px solid var(--linen);
    transition: background 0.3s, color 0.3s;
}

.bat-hero-btn:hover {
    background: transparent;
    color: var(--linen);
}

.bat-hero-scroll {
    position: absolute;
    bottom: 36px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.bat-hero-scroll-line {
    width: 1px;
    height: 40px;
    background: rgba(238, 227, 212, 0.3);
    animation: bat-scroll-pulse 2s ease infinite;
}

@keyframes bat-scroll-pulse {

    0%,
    100% {
        opacity: 0.3;
    }

    50% {
        opacity: 0.7;
    }
}

/* ═══════════════════════════════════════════════════════════
   2. WHY DINE WITH US
   ═══════════════════════════════════════════════════════════ */
#bat-why {
    background: var(--olive);
    padding: 100px 0;
}

.bat-why-top {
    text-align: center;
    margin-bottom: 64px;
}

.bat-why-label {
    font-family: 'Lexend', sans-serif;
    font-weight: 400;
    font-size: 10px;
    letter-spacing: 7px;
    text-transform: uppercase;
    color: rgba(238, 227, 212, 0.55);
    margin-bottom: 16px;
}

.bat-why-title {
    font-family: 'ivyOra', serif;
    font-weight: 400;
    font-size: 52px;
    line-height: 1.1;
    color: var(--linen);
}

.bat-why-title em {
    font-style: italic;
}

.bat-why-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    background: rgba(238, 227, 212, 0.12);
    border: 1px solid rgba(238, 227, 212, 0.12);
}

.bat-why-card {
    background: rgba(52, 53, 17, 0.22);
    padding: 44px 36px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    transition: background 0.3s;
    position: relative;
    overflow: hidden;
}

.bat-why-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 2px;
    height: 0;
    background: var(--merlot);
    transition: height 0.4s ease;
}

.bat-why-card:hover {
    background: rgba(52, 53, 17, 0.45);
}

.bat-why-card:hover::before {
    height: 100%;
}

.bat-why-num {
    font-family: 'ivyOra', serif;
    font-size: 48px;
    color: rgba(238, 227, 212, 0.12);
    line-height: 1;
    position: absolute;
    top: 28px;
    right: 28px;
}

.bat-why-icon {
    width: 44px;
    height: 44px;
    opacity: 0.7;
}

.bat-why-card-title {
    font-family: 'ivyOra', serif;
    font-size: 24px;
    color: var(--linen);
    font-weight: 400;
    line-height: 1.2;
}

.bat-why-card-text {
    font-family: 'Lexend', sans-serif;
    font-size: 14px;
    font-weight: 400;
    color: rgba(238, 227, 212, 0.62);
    line-height: 24px;
}

/* ═══════════════════════════════════════════════════════════
   3. CTA
   ═══════════════════════════════════════════════════════════ */
#bat-cta {
    background: var(--woodrush);
    padding: 100px 24px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

#bat-cta::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image: url(../images/book-a-table/cta-image.png);
    background-size: cover;
    background-position: center;
    opacity: 0.12;
    pointer-events: none;
}

.bat-cta-inner {
    position: relative;
    z-index: 1;
    max-width: 640px;
    margin: 0 auto;
}

.bat-cta-label {
    font-family: 'Lexend', sans-serif;
    font-size: 10px;
    letter-spacing: 7px;
    text-transform: uppercase;
    color: rgba(238, 227, 212, 0.5);
    margin-bottom: 18px;
}

.bat-cta-title {
    font-family: 'ivyOra', serif;
    font-weight: 400;
    font-size: 64px;
    line-height: 1.08;
    color: #fff;
    margin-bottom: 12px;
}

.bat-cta-rule {
    width: 40px;
    height: 2px;
    background: var(--merlot);
    margin: 24px auto;
}

.bat-cta-sub {
    font-family: 'Lexend', sans-serif;
    font-size: 16px;
    line-height: 28px;
    color: rgba(238, 227, 212, 0.65);
    margin-bottom: 44px;
}

.bat-cta-btns {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.bat-cta-btn-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 64px;
    padding: 0 52px;
    background: var(--linen);
    color: var(--woodrush);
    font-family: 'Lexend', sans-serif;
    font-weight: 500;
    font-size: 13px;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    text-decoration: none;
    border: 1px solid var(--linen);
    transition: background 0.3s, color 0.3s;
}

.bat-cta-btn-primary:hover {
    background: transparent;
    color: var(--linen);
}

.bat-cta-contact {
    margin-top: 28px;
    font-family: 'Lexend', sans-serif;
    font-size: 13px;
    color: rgba(238, 227, 212, 0.38);
}

.bat-cta-contact a {
    color: rgba(238, 227, 212, 0.65);
    text-decoration: none;
    border-bottom: 1px solid rgba(238, 227, 212, 0.2);
    padding-bottom: 1px;
    transition: color 0.25s, border-color 0.25s;
}

.bat-cta-contact a:hover {
    color: var(--linen);
    border-color: rgba(238, 227, 212, 0.5);
}

/* ═══════════════════════════════════════════════════════════
   4. EXPERIENCE — Two col split
   ═══════════════════════════════════════════════════════════ */
#bat-experience {
    background: var(--woodrush);
    padding: 0;
}

.bat-exp-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 600px;
}

.bat-exp-img-col {
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 48px 40px;
    background: var(--woodrush);
}

.bat-exp-img-col img {
    width: 100%;
    height: 100%;
    max-height: 580px;
    object-fit: cover;
    object-position: center center;
    display: block;
    transition: transform 8s ease;
}

#bat-experience:hover .bat-exp-img-col img {
    transform: scale(1.02);
}

.bat-exp-img-col::after {
    display: none;
}

.bat-exp-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 80px 72px;
}

.bat-exp-label {
    font-family: 'Lexend', sans-serif;
    font-size: 10px;
    font-weight: 400;
    letter-spacing: 7px;
    text-transform: uppercase;
    color: rgba(238, 227, 212, 0.5);
    margin-bottom: 20px;
}

.bat-exp-title {
    font-family: 'ivyOra', serif;
    font-weight: 400;
    font-size: 50px;
    line-height: 1.1;
    color: #fff;
    margin-bottom: 8px;
}

.bat-exp-title em {
    font-style: italic;
    color: var(--linen);
}

.bat-exp-rule {
    width: 44px;
    height: 1px;
    background: rgba(158, 139, 94, 0.6);
    margin: 22px 0;
}

.bat-exp-text {
    font-family: 'Lexend', sans-serif;
    font-size: 15px;
    font-weight: 400;
    line-height: 27px;
    color: rgba(238, 227, 212, 0.65);
    margin-bottom: 36px;
}

.bat-exp-facts {
    display: flex;
    flex-direction: column;
    border-top: 1px solid rgba(238, 227, 212, 0.1);
    margin-bottom: 40px;
}

.bat-exp-fact {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 16px 0;
    border-bottom: 1px solid rgba(238, 227, 212, 0.1);
}

.bat-exp-fact-dot {
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: var(--khaki);
    flex-shrink: 0;
    opacity: 0.7;
}

.bat-exp-fact-txt {
    font-family: 'Lexend', sans-serif;
    font-size: 14px;
    color: rgba(238, 227, 212, 0.72);
}

.bat-exp-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 64px;
    padding: 0 44px;
    background: var(--linen);
    color: var(--woodrush);
    font-family: 'Lexend', sans-serif;
    font-weight: 500;
    font-size: 13px;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    text-decoration: none;
    border: 1px solid var(--linen);
    transition: background 0.3s, color 0.3s;
    align-self: flex-start;
}

.bat-exp-btn:hover {
    background: transparent;
    color: var(--linen);
}

/* ═══════════════════════════════════════════════════════════
   5. OPENING HOURS
   ═══════════════════════════════════════════════════════════ */
#bat-hours {
    background: var(--olive);
    padding: 100px 0;
}

.bat-hours-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
}

.bat-hours-left-label {
    font-family: 'Lexend', sans-serif;
    font-size: 10px;
    font-weight: 400;
    letter-spacing: 7px;
    text-transform: uppercase;
    color: rgba(238, 227, 212, 0.5);
    margin-bottom: 20px;
}

.bat-hours-title {
    font-family: 'ivyOra', serif;
    font-weight: 400;
    font-size: 52px;
    line-height: 1.1;
    color: var(--linen);
    margin-bottom: 24px;
}

.bat-hours-title em {
    font-style: italic;
}

.bat-hours-sub {
    font-family: 'Lexend', sans-serif;
    font-size: 15px;
    color: rgba(238, 227, 212, 0.62);
    line-height: 26px;
    margin-bottom: 32px;
}

.bat-hours-dayparts {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 40px;
}

.bat-hours-tag {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 8px 16px;
    border: 1px solid rgba(238, 227, 212, 0.22);
    font-family: 'Lexend', sans-serif;
    font-size: 11px;
    font-weight: 400;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: rgba(238, 227, 212, 0.65);
    text-decoration: none;
    transition: border-color 0.25s, color 0.25s;
}

.bat-hours-tag:hover {
    border-color: rgba(238, 227, 212, 0.55);
    color: var(--linen);
}

.bat-hours-tag svg {
    width: 13px;
    height: 13px;
    opacity: 0.6;
    flex-shrink: 0;
}

.bat-hours-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 64px;
    padding: 0 44px;
    background: var(--linen);
    color: var(--woodrush);
    font-family: 'Lexend', sans-serif;
    font-weight: 500;
    font-size: 13px;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    text-decoration: none;
    border: 1px solid var(--linen);
    transition: background 0.3s, color 0.3s;
}

.bat-hours-cta:hover {
    background: transparent;
    color: var(--linen);
}

.bat-hours-right {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.bat-hours-banner {
    background: rgba(52, 53, 17, 0.35);
    border: 1px solid rgba(238, 227, 212, 0.12);
    padding: 28px 32px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.bat-hours-banner-left {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.bat-hours-banner-days {
    font-family: 'Lexend', sans-serif;
    font-size: 13px;
    font-weight: 500;
    color: rgba(238, 227, 212, 0.85);
    letter-spacing: 1px;
    text-transform: uppercase;
}

.bat-hours-banner-note {
    font-family: 'Lexend', sans-serif;
    font-size: 12px;
    color: rgba(238, 227, 212, 0.45);
}

.bat-hours-banner-time {
    font-family: 'ivyOra', serif;
    font-size: 28px;
    color: var(--linen);
    white-space: nowrap;
}

.bat-hours-breakdown {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1px;
    background: rgba(238, 227, 212, 0.1);
    border: 1px solid rgba(238, 227, 212, 0.1);
}

.bat-hours-bp-card {
    background: rgba(52, 53, 17, 0.28);
    padding: 20px 22px;
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.bat-hours-bp-name {
    font-family: 'ivyOra', serif;
    font-size: 20px;
    color: var(--linen);
}

.bat-hours-bp-time {
    font-family: 'Lexend', sans-serif;
    font-size: 12px;
    color: rgba(238, 227, 212, 0.5);
    letter-spacing: 0.5px;
}

/* ═══════════════════════════════════════════════════════════
   RESPONSIVE
   ═══════════════════════════════════════════════════════════ */
@media (max-width: 1200px) {
    .bat-hero-title {
        font-size: 68px;
    }

    .bat-why-title {
        font-size: 42px;
    }

    .bat-exp-title {
        font-size: 40px;
    }

    .bat-hours-title {
        font-size: 42px;
    }

    .bat-cta-title {
        font-size: 52px;
    }

    .bat-exp-content {
        padding: 60px 48px;
    }
}

@media (max-width: 991px) {
    .bat-why-grid {
        grid-template-columns: 1fr 1fr;
    }

    .bat-exp-grid {
        grid-template-columns: 1fr;
    }

    .bat-exp-img-col {
        padding: 32px 28px;
        min-height: 380px;
    }

    .bat-exp-content {
        padding: 60px 36px;
    }

    .bat-hours-inner {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .bat-hero-title {
        font-size: 56px;
    }
}

@media (max-width: 768px) {
    .bat-hero-title {
        font-size: 42px;
    }

    .bat-hero-inner {
        padding: 130px 20px 100px;
    }

    .bat-why-grid {
        grid-template-columns: 1fr;
    }

    .bat-why-card {
        padding: 32px 24px;
    }

    .bat-exp-content {
        padding: 50px 24px;
    }

    .bat-exp-title {
        font-size: 34px;
    }

    .bat-hours-title {
        font-size: 34px;
    }

    .bat-cta-title {
        font-size: 38px;
    }

    .bat-hours-breakdown {
        grid-template-columns: 1fr 1fr;
    }

    #bat-why,
    #bat-hours,
    #bat-cta {
        padding: 70px 0;
    }
}

@media (max-width: 480px) {
    .bat-hero-title {
        font-size: 34px;
        line-height: 1.15;
    }

    .bat-why-title {
        font-size: 30px;
    }

    .bat-cta-title {
        font-size: 30px;
    }

    .bat-cta-btns {
        flex-direction: row;
    }

    .bat-cta-btn-primary {
        width: auto;
        min-width: 220px;
    }

    .bat-exp-btn {
        width: 100%;
        justify-content: center;
    }

    .bat-hours-breakdown {
        grid-template-columns: 1fr;
    }

    .bat-hours-banner {
        flex-direction: column;
        align-items: flex-start;
    }
}