@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;600;700&display=swap');

:root {
    --h1: 76px;
    --h2: 56px;
    --h3: 42px;
    --h4: 28px;
    --h5: 26px;
    --h6: 22px;
    --standaard: 18px;

    --rood: #f44749;
    --geel: #f3af24;
    --grijs: #F9F9F9;
    --blauwe: #0dcaf0;
}

h1 {font-size: var(--h1)}
h2 {font-size: var(--h2)}
h3 {font-size: var(--h3)}
h4 {font-size: var(--h4)}
h5 {font-size: var(--h5)}
h6 {font-size: var(--h6)}

body {
    font-size: var(--standaard);
}

footer {
    height: 450px;
    width: 100%;
    background: black;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.footerimg {
    background-image: url("../images/daan-evers-tKN1WXrzQ3s-unsplash.jpg");
    background-size: cover;
    background-position: center;
    opacity: 0.8;
    height: 100%;
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: relative;
}
.foot-container {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    width: 1400px;
    color: rgba(255, 255, 255, 1);
    z-index: 2;
}

.brasserie {
    z-index: 2;
    color: rgba(255, 255, 255, 1);
    text-align: left;
    position: absolute;
    width: 1400px;
    align-items: center;
    text-align: left;
}

.locatie,
.opening,
.social {
    display: flex;
    flex-direction: column;
    font-weight: 200;
    text-align: left;
    padding-top: 80px;
}

h6 {
    font-size: var(--h6);
    margin-bottom: 10px;
}

p {
    margin: 0;
    font-size: 16px;
    line-height: 1.5;
}

.route-btn {
    padding: 8px 16px;
    background-color: #505050;
    border: none;
    color: white;
    cursor: pointer;
    margin-top: 10px;
}

.route-btn:hover {
    background-color: #FFD700;
}

.social i {
    font-size: 24px;
    margin-right: 10px;
}

.social i:hover {
    color: #FFD700;
}

/* Media query voor schermen met een maximale breedte van 768px */
@media (max-width: 768px) {
    footer {
        height: auto; /* Hoogte aanpassen naar automatisch */
        padding: 20px; /* Padding toevoegen voor betere leesbaarheid */
    }

    .footerimg {
        height: auto; /* Hoogte aanpassen naar automatisch */
        padding: 20px; /* Padding toevoegen */
    }

    .foot-container {
        flex-direction: column; /* Elementen onder elkaar plaatsen */
        width: 100%; /* Volledige breedte gebruiken */
        align-items: center; /* Centreren van de inhoud */
        text-align: center; /* Tekst centreren */
    }

    .brasserie {
        position: static; /* Absolute positionering verwijderen */
        width: 100%; /* Volledige breedte gebruiken */
        text-align: center; /* Tekst centreren */
        margin-bottom: 20px; /* Ruimte toevoegen */
    }

    .locatie,
    .opening,
    .social {
        padding-top: 20px; /* Padding verkleinen */
        text-align: center; /* Tekst centreren */
    }

    .locatie p,
    .opening p,
    .social p {
        font-size: 14px; /* Tekstgrootte verkleinen */
    }

    .route-btn {
        margin-top: 10px; /* Ruimte boven de knop verkleinen */
    }

    .social i {
        font-size: 20px; /* Icoongrootte verkleinen */
        margin: 0 5px; /* Ruimte tussen iconen verkleinen */
    }
}

/* Media query voor schermen met een maximale breedte van 425px */
@media (max-width: 425px) {
    footer {
        height: auto; /* Hoogte aanpassen naar automatisch */
        padding: 10px; /* Padding verkleinen */
    }

    .footerimg {
        height: auto; /* Hoogte aanpassen naar automatisch */
        padding: 10px; /* Padding verkleinen */
    }

    .foot-container {
        flex-direction: column; /* Elementen onder elkaar plaatsen */
        width: 100%; /* Volledige breedte gebruiken */
        align-items: center; /* Centreren van de inhoud */
        text-align: center; /* Tekst centreren */
    }

    .brasserie {
        position: static; /* Absolute positionering verwijderen */
        width: 100%; /* Volledige breedte gebruiken */
        text-align: center; /* Tekst centreren */
        margin-bottom: 10px; /* Ruimte toevoegen */
    }

    .locatie,
    .opening,
    .social {
        padding-top: 10px; /* Padding verkleinen */
        text-align: center; /* Tekst centreren */
    }

    .locatie p,
    .opening p,
    .social p {
        font-size: 12px; /* Tekstgrootte verkleinen */
    }

    .route-btn {
        padding: 6px 12px; /* Knopgrootte verkleinen */
        font-size: 14px; /* Tekstgrootte van de knop verkleinen */
        margin-top: 5px; /* Ruimte boven de knop verkleinen */
    }

    .social i {
        font-size: 18px; /* Icoongrootte verkleinen */
        margin: 0 5px; /* Ruimte tussen iconen verkleinen */
    }
}