/* Algemene instellingen */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    background-image: url('https://twanencharlotte.nl/wp-content/uploads/bckgrnd.jpg');
    background-size: cover;
    background-position: center;
    color: #333;
    line-height: 1.6; /* Voeg meer ruimte tussen regels toe voor normale tekst */
}

/* Pagina-indeling */
.site-main {
    max-width: 700px; /* Breedte van de content */
    margin: 0 auto; /* Centreren van de content */
    padding: 30px;
    background: none; /* Verwijder de witte achtergrond van main zodat de body achtergrond zichtbaar blijft */
    line-height: 1.8; /* Verhoog de lijnhoogte voor betere leesbaarheid */
}

.site-main p {
    margin-bottom: 10px; /* Voeg meer ruimte tussen paragrafen */
}

/* Algemene linkstijl binnen site-main */
.site-main a {
    color: #333; /* Normale tekstkleur voor links */
    text-decoration: none; /* Verwijder onderstreping */
}

.site-main a:hover {
    color: #ed8f1b; /* Kleur bij hover */
}

.site-main a:visited {
    color: #333; /* Behouden van de normale tekstkleur na bezoek */
}

/* Verklein de ruimte tussen header en main */
.site-header {
    position: relative;
    background-image: url('https://twanencharlotte.nl/wp-content/uploads/vlaggetjes.png');
    background-size: 100% auto;
    background-position: top center;
    background-repeat: no-repeat;
    height: 155px;
}

.site-header .main-navigation {
    position: absolute;
    top: 0;
    width: 100%;
    height: 35px;
    text-align: center;
    z-index: 10;
    margin-top: 10px;
}

.site-header .main-navigation ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.site-header .main-navigation li {
    margin: 0 15px;
}

.site-header .main-navigation a {
    color: #333;
    text-decoration: none;
    font-size: 18px;
    font-weight: bold;
    font-family: 'Gamja Flower', sans-serif;
}

.site-header .main-navigation a:hover {
    color: #ed8f1b;
}

@media screen and (max-width: 768px) {
    .main-navigation ul {
        flex-direction: column;
        gap: 10px;
    }

    .site-main {
        padding: 15px;
        width: 90%;
    }

    .site-header {
        background-repeat: no-repeat;
    }
}

/* Footer */
.site-footer {
    background-color: #000; /* Zwarte achtergrond */
    color: #fff; /* Witte tekst */
    text-align: center; /* Centreer de tekst */
    padding: 20px; /* Ruimte rondom de tekst */
    width: 100%; /* Voorkomt dat de footer kleiner wordt */
    position: relative;
    bottom: 0;
}

.site-footer p {
    font-size: 14px;
    margin: 0; /* Verwijder extra marges */
}
