/* Site-wide "tickets on sale" announcement strip.
   Sits above the fixed nav and pushes it down, so it never covers the logo. */

.onsale-strip {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 300;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    padding: 0.65rem 3rem 0.65rem 1.5rem;
    background: #d90429;
    color: #f4f1eb;
    font-family: 'Inter', sans-serif;
    font-size: 0.88rem;
    line-height: 1.4;
    text-align: center;
}

.onsale-strip p { margin: 0; max-width: none; }

.onsale-strip strong { font-weight: 500; }

.onsale-strip a {
    color: #f4f1eb;
    text-decoration: underline;
    text-underline-offset: 3px;
    white-space: nowrap;
}

.onsale-strip a:hover { color: #0a0a0a; }

.onsale-strip button {
    position: absolute;
    right: 0.75rem;
    top: 50%;
    transform: translateY(-50%);
    width: 28px;
    height: 28px;
    display: grid;
    place-items: center;
    background: transparent;
    border: 0;
    color: rgba(244, 241, 235, 0.75);
    font-size: 1.3rem;
    line-height: 1;
    cursor: pointer;
}

.onsale-strip button:hover { color: #f4f1eb; }
.onsale-strip button:focus-visible { outline: 2px solid #f4f1eb; outline-offset: 2px; }

/* Strip height, applied to whatever the page normally pins to the top. */
body.has-strip nav { top: 2.85rem; }
body.has-strip .page-head { padding-top: 13.5rem; }
body.has-strip .hero { padding-top: 2.85rem; }

@media (max-width: 760px) {
    .onsale-strip {
        font-size: 0.78rem;
        padding: 0.6rem 2.5rem 0.6rem 1rem;
        text-align: left;
    }
    body.has-strip nav { top: 3.6rem; }
    body.has-strip .page-head { padding-top: 12rem; }
    body.has-strip .hero { padding-top: 3.6rem; }
}
