@font-face {
    font-family: 'Lil Grotesk';
    src: url('../lilgrotesk/LilGrotesk-Regular.otf') format('truetype');
}

@font-face {
    font-family: 'Blinds Audience';
    src: url('../blindsaudience/Blinds\ Audience.otf') format('woff');
}

.accomodations {
    width: 100%;
    min-height: 100vh;
    background-image: linear-gradient(var(--white) 30%, var(--green) 70%);
    color: var(--gold);
    box-sizing: border-box;
    font-family: 'Lil Grotesk', serif;
}

.accomodations h1 {
    font-family: 'Blinds Audience', serif;
    padding: 1em 0 1em 0;
    font-size: 2em;
}

.accomodations-logo {
    width: 2em;
    height: 2em;
}

.accomodations-carousel {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-around;
}

.accomodations-carousel img {
    width: 20em;
    height: 20em;
    object-fit: cover;
    margin-bottom: 1em;
    transition: 0.3s ease;
}

.accomodations-carousel img:hover {
    cursor: pointer;
    object-fit: contain;
    scale: 1.2;
}

.accomodations p {
    text-align: justify;
}

.region-select {
    display: flex;
    justify-content: center;
    margin-bottom: 1em;
}

.region-select select {
    background: transparent;
    color: var(--gold);
    border: 1px solid var(--gold);
    font-size: 1em;
    padding: 0.5em;
    font-family: 'Lil Grotesk', sans-serif;
    appearance: none; /* Remove default arrow */
    -webkit-appearance: none; /* Remove default arrow in Safari */
    -moz-appearance: none; /* Remove default arrow in Firefox */
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="10" height="6" viewBox="0 0 10 6"><polygon points="0,0 10,0 5,6" fill="%23996D2F"/></svg>');
    background-repeat: no-repeat;
    background-position: left 0.5em center;
    padding-left: 2em; /* Add padding to the left to make space for the arrow */
    cursor: pointer;
}

.region-select select:hover {
    background: var(--gold);
    color: white;
}

.region-description {
    text-align: justify;
    font-size: 0.9em;
    margin: 0em 3em 0 3em;
    color: var(--gold);
    font-family: 'Lil Grotesk', sans-serif;
    font-weight: 500;
}

.accomodations a {
    text-decoration: none;
    color: inherit;
    cursor: pointer;
}

.accomodations button {
    background: transparent;
    color: var(--gold);
    border-color: var(--gold);
    font-size: 1em;
    padding:0.5em 3em;
    margin-top: 1em;
}

.accomodations button:hover {
    background: var(--gold);
    color: var(--white);
    cursor: pointer;
}

@media screen and (max-width: 700px) {
    .accomodations h1 {
        padding-bottom: 1em;
    }

    .accomodations {
        min-height: auto;
        height: auto;
        width: 100vw;
    }

    .accomodations-carousel img {
        width: 30em;
        height: 30em;
        max-width: 80vw;
        max-height: 80vw;
        object-fit: cover;
        margin-bottom: 2em;
    }

    .accomodations button {
        width: 10em;
        height: 3em;
        font-size: 20px;
    }

    .region-select select {
        font-size: 1.2em;
        padding: 0.7em 1em;
        background-position: left 0em center;
        width: auto;
        font-size: 1em;
    }

    .accomodations p,
    .region-description {
        text-align: left; /* Aligner le texte à gauche */
    }
}
