body::before {
    background-image: image-set(
        url('/img/bg/home.avif?v=1') type('image/avif'),
        url('/img/bg/home.webp?v=1') type('image/webp'),
        url('/img/bg/home.jpg?v=1') type('image/jpeg')
    );
}

body::after {
    background: rgba(0, 0, 0, 0.2);
}

:root {
    --color-hover: rgba(0, 0, 0, 0.4);
}

.sectionHome1 {
    margin: -5% 10% 0 10%;
}

.sectionHome2 {
    margin: 1em 10% 0 10%;
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 1.3em;
    padding: 0 30px;
}

.logoHome {
    width: 35vw;
    max-width: 350px;
    min-width: 200px;
}

.dropdown {
    position: relative;
    display: inline-block;
    height: 100%;
}

.dropdownContent {
    /*caché de base*/
    display: none;
    position: absolute;
    /*ne dépasse pas le bouton de base*/
    overflow: hidden;
    min-width: 100%;
    max-width: 100%;
    z-index: 1;
    background-color: var(--color-hover);
    border-top: 1px solid white;

}

.dropdownContent a {
    color: white;
    display: flex;
    text-align: left;
    padding: 10px;
    position: relative;
}

.catHome {
    font-size: 1.2em;
    color: white;
    text-align: center;
    border-top: 1px solid white;
    border-bottom: 1px solid white;
    justify-content: center;
    align-items: center;
    padding: 10px;
    display: flex;
    height: 100%;
}

.dropdownContent {
    font-size: 1em;
}

.dropdown:hover .dropdownContent {
    display: block;
}

.dropdown:hover #spectacles {
    background-color: var(--color-hover);
}

.dropdown:hover #festival {
    background-color: var(--color-hover);
}


.catHome:hover {
    background-color: var(--color-hover);
}

a {
    text-decoration: none;
    font-family: 'CormorantSC';
    font-style: normal;
    font-weight: normal;
}

/*Tablette*/
@media (max-width: 991px) {
    .sectionHome2 {
        margin: 2em 3% 0 3%;
    }
}

/*Tel paysage*/
@media (max-width: 767px) {
    .sectionHome2 {
        grid-template-columns: 1fr;
        /* grid-template-rows: repeat(6, auto); */
        gap: 20px;
        max-width: 350px;
        margin: 0 auto;
    }

    .dropdown {
        display: grid;
        height: auto;
    }

    .dropdownContent {
        display: grid;
        position: static;
        overflow: visible;
        min-width: 100%;
        max-width: 100%;
        background-color: transparent;
        border-top: none;
    }

    .dropdownContent a {
        justify-content: center;
        text-align: center;
        border-top: 1px solid rgba(255, 255, 255, 0.45);
        padding: 8px 10px;
    }

    .dropdownContent a:last-of-type {
        margin-bottom: 0;
        padding-bottom: 0;
    }

    .dropdownContent a:first-of-type {
        margin-top: 10px;
    }

    .catHome {
        height: auto;
        border-bottom: none;
        margin-bottom: 0;
        padding-bottom: 0;
    }

    .catHome:hover {
        background-color: transparent;
    }

    .dropdown:hover #spectacles {
        background-color: transparent;
    }

    .dropdown:hover #festival {
        background-color: transparent;
    }

    .catHome:last-of-type {
        padding-bottom: 10px;
    }

    .sectionHome2>.catHome:last-child {
        border-bottom: 1px solid white;
    }

    .logoHome {
        width: 5rem;
    }

}

/*Tel portrait*/
@media (max-width: 479px) {
    .sectionHome2 {
        margin: 0 auto;
    }
}