
/* ==========================================================================
   BIAFF — VENUES & LOCATIONS
   ========================================================================== */

.venues-page {
    width: 100%;
    overflow: hidden;
    background-color: #f5f5f5;
}


/* ==========================================================================
   VENUE
   ========================================================================== */

.venue {
    width: 100%;
    background-color: #f5f5f5;
}


/* ==========================================================================
   VENUE IMAGE
   ========================================================================== */
.venue__image {
    position: relative;
    width: 100%;
    height: 311px;
    background: #f5f5f5;
    /* 1. This creates a clipping window for the fixed image */
    clip-path: inset(0 0 0 0); 
}

.venue__parallax-image {
    /* Layer 1 – photo. Pinned to the screen, vertically centered,
       and never moved; the window scrolls over it. */
    position: fixed;
    top: 50%;
    left: 0;
    width: 100%;
    height: auto;
    transform: translateY(-50%);
    object-fit: cover;
    display: block;
    z-index: 1;
}


.venue__image-placeholder {
    position: absolute;
    inset: 0;
    background: #f5f5f5;
}


/* ==========================================================================
   VENUE CONTENT
   ========================================================================== */

.venue__content {
    width: 100%;
    min-height: 253px;

    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(350px, 415px);

    gap: 72px;

    padding: 133px 13.5% 70px 15.25%;

    background: #f5f5f5;
}


/* ==========================================================================
   VENUE TEXT
   ========================================================================== */

.venue__text {
    width: 100%;
    max-width: 545px;

    display: flex;
    flex-direction: column;
    justify-content: flex-start;

    color: #333333;
}

.venue__name {
    margin: 0 0 28px;


    font-size: clamp(2rem, 3vw, 30px);
    font-weight: 400;

    line-height: 1.2;

    color: #000000;
}

.venue__description {

    font-size: 20px;
    font-weight: 400;

    line-height: 1.55;

    color: #333333;
}

.venue__description p {
    margin: 0 0 12px;
}

.venue__description p:last-child {
    margin-bottom: 0;
}


/* ==========================================================================
   GOOGLE MAP
   ========================================================================== */

.venue__map {
    width: 100%;
    height: 253px;

    background: #f5f5f5;

    position: relative;
    overflow: hidden;
}

.venue__map iframe {
    position: absolute;

    top: 0;
    left: 0;

    width: 100%;
    height: 100%;

    border: 0;
}


/* ==========================================================================
   VENUE SPACING
   ========================================================================== */

.venue + .venue {
    margin-top: 0;
}


/* ==========================================================================
   EMPTY STATE
   ========================================================================== */

.venues-empty {
    width: 100%;

    padding: 120px 30px;

    text-align: center;


    font-size: 20px;

    color: #f5f5f5
}


/* ==========================================================================
   TABLET
   ========================================================================== */

@media (max-width: 1100px) {

    .venue__content {
        grid-template-columns: 1fr 360px;

        gap: 45px;

        padding-left: 8%;
        padding-right: 8%;
    }

}


/* ==========================================================================
   MOBILE
   ========================================================================== */

@media (max-width: 768px) {

    .venue__image {
        height: 280px;
    }

    .venue__content {
        display: flex;

        flex-direction: column;

        gap: 35px;

        padding: 55px 7vw 65px;
    }

    .venue__text {
        max-width: none;
    }

    .venue__name {
        font-size: 28px;

        margin-bottom: 20px;
    }

    .venue__description {
        font-size: 17px;

        line-height: 1.6;
    }

    .venue__map {
        width: 100%;

        height: 280px;
    }

}


/* ==========================================================================
   SMALL MOBILE
   ========================================================================== */

@media (max-width: 480px) {

    .venue__image {
        height: 230px;
    }

    .venue__content {
        padding: 40px 6vw 50px;
    }

    .venue__name {
        font-size: 24px;
    }

    .venue__description {
        font-size: 16px;
    }

    .venue__map {
        height: 240px;
    }

}


/* ==========================================================================
   REDUCED MOTION
   ========================================================================== */

@media (prefers-reduced-motion: reduce) {

    .venue__parallax-image {
        /* Keep it pinned & centered, but guarantee a static transform
           for users who prefer reduced motion. */
        transform: translateY(-50%) !important;
        transition: none;
    }

}
