.showcase__header {
    display: flex;
    padding: 8rem 5rem 3rem 5rem;
    background-color: #E9EFFF;
    flex: 1;

    background-image: url('../assets/images/showcase/showcase-header.webp');
    background-repeat: no-repeat;
    background-size: cover;
}

.showcase__titles {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    flex: 1;
    color: white;
}

.showcase__button {
    margin: 0;
    justify-content: start;
    width: fit-content;
    height: fit-content;
}

.showcase__form-width {
    flex: 1;
}

.showcase__form-container {
    width: 100%;
}

/* Gallery navigation  */
.gallery__nav {
    display: flex;
    flex-direction: row;
    gap: 3rem;
    justify-content: center;
    padding: 1rem 0rem;
    font-size: 14px;
}

.showcase__selection {
    cursor: pointer;
}

.active__showcase {
    font-weight: 600;
}

/* Gallery images  */

.gallery__images-container {
    padding: 1rem 4rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    margin-bottom: 5rem;
}

.showcase__images {
    justify-items: center;
    width: 75%;
}

.showcase__image-wrapper {
    width: 100%;
    overflow: hidden;
    height: min-content;
}

.showcase__image {
    width: 100%;
    opacity: 0;
    transition: .25s all ease-in;
    display: block;
}

.showcase__image:hover {
    scale: 1.02;
}

.showcase__image-visible {
    opacity: 100;
}

.showcase__images-theater {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(30vw, auto));
    grid-auto-rows: auto;
    grid-column-gap: 1rem;
    grid-row-gap: 1rem;
}

.showcase__images-music {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(30vw, 1fr));
    grid-template-rows: auto;
    grid-column-gap: 1rem;
    grid-row-gap: 1rem;
}

#music-1 {
    grid-area: 1 / 1 / 2 / 2;
}

#music-2 {
    grid-area: 1 / 2 / 4 / 3;
}

#music-3 {
    grid-area: 2 / 1 / 4 / 2;
}

@media screen and (max-width: 1200px) {
    .showcase__images {
        width: 90%;
    }
}

@media screen and (max-width: 1000px) {
    .showcase__images {
        width: 100%;
    }
}

@media screen and (max-width: 850px) {
    .showcase__header {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 1rem;
    }

    .showcase__titles {
        align-items: center;
    }

    .showcase__header {
        padding: 5rem 3rem 3rem 3rem;
    }

    .showcase__images-theater {
        grid-template-columns: 1fr;
    }
    
    .showcase__images-music {
        display: flex;
        flex-direction: column;
    }

    #music-2 {
        display: none;
    }
}

@media screen and (max-width: 550px) {
    .gallery__nav {
        gap: 1.5rem;
        flex-wrap: wrap;
        flex-basis: 50%;
        padding: 1rem 1rem;
    }

    .showcase__header {
        padding: 5rem 1rem 3rem 1rem;
    }

    .gallery__images-container {
        padding: 1rem 1rem;
    }
}

@media screen and (max-width: 375px) {
    .gallery__nav {
        flex-basis: 75%;
    }
}