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