.leisure_themes {
    width: 100%;
    background: var(--white);
    color: var(--gold);
    box-sizing: border-box;
    font-family: 'Lil Grotesk', serif;
}

.leisure_themes h1 {
    font-family: 'Blinds Audience', serif;
    padding:0.5em 0 1em 0;
}

.theme-select {
    display: flex;
    justify-content: center;
    padding-bottom:1em;
}

.theme-select select {
    background: transparent;
    color: var(--gold);
    border: 1px solid var(--gold);
    font-size: 1em;
    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:0.5em 0.5em 0.5em 2em;
}

.theme-select select:hover {
    background: var(--gold);
    color: var(--white);
    cursor: pointer;
}

.leisure-carousel {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-around;
}

.leisure-themes p {
    text-align: justify;
    padding-top:1em;
}

.leisure-carousel img {
    width: 20em;
    height: 20em;
    max-width: 80vw;
    max-height: 80vw;
    object-fit: cover;
    transition: 0.3s ease;
    padding-bottom:1em;
}

.leisure-carousel img:hover {
    object-fit: contain;
    scale: 1.2;
    cursor: pointer;
}

.leisure_themes button {
    background: transparent;
    color: var(--gold);
    border-color: var(--gold);
    font-size: 1em;
    margin-bottom:1em;
    padding:0.5em 3em;
}

.leisure_themes button:hover{
    background:var(--gold);
    color:var(--white);
    cursor:pointer;
}

.leisure-description {
    text-align: center;
    font-size: 0.9em;
    color: var(--gold);
    padding-bottom:1em;
}



.leisure_themes a {
    text-decoration: none;
    color: inherit;
    cursor: pointer;
}

@media screen and (max-width: 700px) {
    .leisure_themes {
        min-height: auto;
        height: auto;
        flex-wrap: wrap;
    }

    .leisure-carousel img {
        width: 400px;
        height: 400px;
        object-fit: cover;
    }

    .leisure_themes button {
        font-size: 20px;
    }

    .theme-select select {
        font-size: 1.2em;
        background-position: left 0em center;
        width:auto;
        font-size:1em;
    }
}
