/*
    Target: Bank Holiday Banner
    Description: Animated full-width banner that appears below the header
                 when a UK bank holiday is within 7 days.
    Version: 1.0.0
    License: TFC 2026
*/

/* ── Slide-down entrance ───────────────────────────────────────── */
@keyframes tfc-bhb-slide-in {
    from {
        transform: translateY(-100%);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

/* Slide-up / fade-out on dismiss */
@keyframes tfc-bhb-slide-out {
    from {
        transform: translateY(0);
        opacity: 1;
        max-height: 120px;
    }
    to {
        transform: translateY(-100%);
        opacity: 0;
        max-height: 0;
    }
}

/* ── Banner shell ──────────────────────────────────────────────── */
.tfc-bhb {
    width: 100%;
    background: linear-gradient(45deg, #eae7c5, #9ca37c) !important;
    overflow: hidden;
    position: relative;
    z-index: 1;
    display: none;
}

.tfc-bhb--visible {
    display: block;
    animation: tfc-bhb-slide-in 0.5s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.tfc-bhb--closing {
    animation: tfc-bhb-slide-out 0.4s cubic-bezier(0.55, 0, 1, 0.45) forwards;
}

/* ── Inner layout ──────────────────────────────────────────────── */
.tfc-bhb__inner {
    display: flex;
    align-items: center;
    gap: 10px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 12px 52px 12px 20px; /* right-pad leaves room for close btn */
    position: relative;
}

/* ── Calendar icon ─────────────────────────────────────────────── */
.tfc-bhb__icon {
    display: inline-block;
    vertical-align: middle;
    color: #2e2e2e;
    margin-right: 6px;
    line-height: 1;
}

/* ── Message text ──────────────────────────────────────────────── */
.tfc-bhb__message {
    margin: 0;
    font-size: 14px;
    line-height: 1.5;
    color: #1a1a1a;
    flex: 1;
    text-align: center;
}

.tfc-bhb__message strong {
    font-weight: 700;
    color: #1a1a1a;
}

/* Highlighted date spans */
.tfc-bhb__date {
    display: inline-block;
    font-weight: 700;
    color: #1a1a1a;
    background-color:#fff;
    border-radius: 4px;
    padding: 0 5px;
}

/* ── Close button ──────────────────────────────────────────────── */
.tfc-bhb__close {
    position: absolute;
    right: 14px;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    cursor: pointer;
    padding: 6px;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #2e2e2e;
    transition: background-color 0.18s ease, color 0.18s ease;
    line-height: 1;
}

.tfc-bhb__close:hover {
    background-color: rgba(0, 0, 0, 0.14);
    color: #1a1a1a;
}

.tfc-bhb__close:focus-visible {
    outline: 2px solid rgba(0, 0, 0, 0.4);
    outline-offset: 2px;
}

/* ── Mobile ────────────────────────────────────────────────────── */
@media (max-width: 600px) {
    .tfc-bhb__inner {
        padding: 10px 44px 10px 14px;
        gap: 8px;
    }

    .tfc-bhb__message {
        font-size: 13px;
        text-align: left;
    }

.tfc-bhb__close {
        right: 10px;
    }
}
