/* HOME PAGE */
.home-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0rem;
    min-height: 400px;
    margin-top: 1rem;
}

/* Poster on left */
.festival-poster-container {
    flex: 1;
    display: flex;
    justify-content: center;    /* center poster horizontally */
    align-items: center;        /* center poster vertically */
    height: 100%;               /* full height of container */
}

/* Poster sizing */
.festival-poster {
    display: block;
    width: 100%;
    max-width: 420px;
    height: auto;
}

/* Text on right */
.home-text {
    flex: 1;
}

/* Dates and location under intro */
.home-dates-location {
    margin-top: 1rem;
    color: var(--secondary-text-color);
    line-height: 1.6;
}

.home-dates-location h2 {
    margin: 0.2rem 0;
}

.black-italic {
    font-family: "Suisse Intl", sans-serif;
    font-weight: 600;
    font-style: italic;
}

/* Stack poster and text on mobile */
@media (max-width: 768px) {
    .home-container {
        flex-direction: column;
        text-align: center;
    }
}