/* Adds breathing room between the upcoming recital and mission sections */
.section-spacer {
    margin-top: 2em;
}

.standby-badge {
    color: #a15c00;
    font-weight: bold;
}

/* Tighter line spacing between the upcoming-recital info lines */
.upcoming-recital p {
    margin: 0.3em 0;
}

body.home-page main {
    max-width: clamp(760px, 70vw, 1200px);
    background-color: transparent;
    /* color: var(--paper); */
}

.home-hero {
    position: relative;
    z-index: 0;
    background-color: transparent;
    border-radius: 6px;

    /* full-bleed: break out of main's max-width */
    width: 100vw;
    margin-left: calc(-50vw + 50%);
    margin-right: calc(-50vw + 50%);
    margin-top: -2.5rem;   /* cancels main's padding-top so hero starts right at the nav bar */
    margin-bottom: -2.5rem;   /* cancels main's bottom padding too */
}

.home-hero::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: linear-gradient(to bottom, rgba(250, 248, 244, 0) 0%, var(--paper) 100%),
                       url("../images/home-background.c7b9cb672293.jpg");
    background-size: cover;
    background-position: center;
    z-index: 0;
}

.home-hero-content {
    position: relative;
    z-index: 1;
    max-width: clamp(760px, 70vw, 1000px);
    margin: 0 auto;
    padding: 2rem;
    background: rgba(250, 248, 244, 0.61);
    border-radius: 6px;
    backdrop-filter: blur(2px);
}


