/* Algemene reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Lettertypen */
h1, h2, h3 {
    font-family: "Shadows Into Light", cursive;
    font-weight: 400;
    font-style: normal;
}

h1 {
    font-size: 2.5rem; 
}

h2 {
    font-size: 2rem; 
}

h3 {
    margin-top: 15px;
    font-size: 1.75rem;
}

p, ul, li {
    font-family: "kohinoor", sans-serif;
    font-weight: 300;
    font-style: normal;
}

ul {
padding-left: 30px;
padding-top: 10px;
text-align: left;
}

a {
    font-family: "Shadows Into Light", cursive;
    font-size: 1.75rem;
}

html, body {
    width: 100%;
    overflow-x: hidden;
}

/* Achtergrondinstellingen */
body {
    color: whitesmoke;
    position: relative;
    background-image: url('Afbeeldingen/Little waves achtergrond.png');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    background-repeat: no-repeat;
}

/* Overlay voor achtergrondafbeelding */
body::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(48, 33, 33, 0.4);
    z-index: 1;
}

/* Container instellingen */
.container {
    position: relative;
    z-index: 2;
    padding: 0;
    max-width: 700px;
    margin: 0 auto;
}

.badge {
    margin: 15px;
}

/* Header instellingen */
header {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    width: 100%;
    padding: 20px;
    background-color: rgba(51, 51, 51, 0.0);
    color: #fff;
    border-radius: 15px;
}

/* Logo instellingen */
.logo img {
    max-width: 250px;
    height: auto;
}

/* Navigatie instellingen */
nav {
    margin-top: 20px;
}

nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
}

nav ul li {
    position: relative;
}

nav ul li a {
    text-decoration: none;
    color: white;
    padding: 15px;
    display: block;
    transition: font-size 0.3s, color 0.3s;
    font-size: 1.5rem;
    transition: background-color 0,3s ease;
}

nav ul li a:hover {
    font-size: 2rem;
    background-color: rgba(51, 51, 51, 0.4);
    border-radius: 15px;
}

/* Hoofdnavigatie instellingen */
main {
    padding: 20px;
    text-align: center;
}

section {
    padding: 20px 0;
    border-bottom: 0px solid #ccc;
}

section img {
    max-width: 100%;
    height: auto;
    margin-top: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}


/* Footer instellingen */
footer {
    background-color: rgba(51, 51, 51, 0.0); /* Achtergrondkleur van de footer met lichte transparantie */
    color: white; /* Witte tekstkleur */
    padding: 20px; /* Ruimte binnen de footer */
    text-align: center; /* Centreer de tekst binnen de footer */
    border-radius: 15px; /* Afgeronde hoeken voor de footer */
    margin: 20px auto; /* Marges rondom de footer */
    max-width: 1000px; /* Maximale breedte van de footer */
}

/* Footer container instellingen */
.footer-container {
    max-width: 100%; /* De container vult de volledige breedte van de footer */
    font-family: "kohinoor", sans-serif;
    font-weight: 300;
    font-style: normal;;
}

.footer-container a {
    font-family: "kohinoor", sans-serif;
    font-weight: 300;
    font-style: normal;
    font-size: 1rem;
}

/* Contact tabel instellingen */
.contact-table {
    width: 100%; /* Zorg ervoor dat de tabel de volledige breedte van de container vult */
    border-collapse: collapse; /* Zorgt ervoor dat de cellen geen dubbele randen hebben */
    margin: 0 auto; /* Centreer de tabel in de container */
}

.contact-table td {
    padding: 10px; /* Voeg padding toe binnen de cellen */
    border: 1px solid white; /* Voeg een witte rand toe rond de cellen */
    border: none;
}

/* Labels aan de rechterkant uitlijnen */
.contact-table .label {
    text-align: right; /* Lijn de tekst in de label-cellen uit naar rechts */
    padding-right: 20px; /* Voeg extra ruimte toe aan de rechterkant van de labels */
}

/* Waarden aan de linkerkant uitlijnen */
.contact-table .value {
    text-align: left; /* Lijn de tekst in de waarde-cellen uit naar links */
    padding-left: 20px; /* Voeg extra ruimte toe aan de linkerkant van de waarden */
}

/* Stijl voor links in de tabel */
.contact-table a {
    color: white; /* Kleur van de links wit */
    text-decoration: none; /* Geen onderlijning */
}

.contact-table a:hover {
    text-decoration: underline; /* Onderstreep de link bij hover */
}

.grotere-naam {
    font-size: 2rem;
    font-family: "Shadows into Light", Italic;
}

/* Hamburgerknop */
.menu-toggle {
    display: none;
    position: absolute;
    top: 15px;
    left: 15px;
    z-index: 10;
    background: none;
    border: none;
    cursor: pointer;
}

.menu-toggle .bar {
    display: block;
    width: 30px;
    height: 3px;
    background-color: white;
    margin: 5px 0;
    transition: 0.5s;
}

.menu-toggle.active .bar:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.menu-toggle.active .bar:nth-child(2) {
    opacity: 0;
}

.menu-toggle.active .bar:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* Submenu - verborgen op desktop */
.submenu {
    list-style: none;
    position: absolute;
    top: 100%;
    left: 0;
    background-color: #444;
    display: none;
    padding: 0;
    margin: 0;
}

.submenu li a {
    padding: 10px 15px;
    display: block;
    white-space: nowrap;
}

nav ul li:hover .submenu {
    display: block;
}

/* Media query voor mobiele schermen */
@media only screen and (max-width: 768px) {
    body {
        background-attachment: scroll;
        background-size: cover;
    }
    
    .menu-toggle {
        display: block;
    }
    
    nav ul {
        display: none;
        flex-direction: column;
        background-color: rgba(51, 51, 51, 0.6);
        position: absolute;
        top: 60px;
        left: 0;
        width: 250px;
        z-index: 9;
    }

    nav ul.show {
        display: flex;
    }

    nav ul li a {
        padding: 10px;
        text-align: center;
    }

    nav ul li a {
        padding: 15px;
        text-align: center;
    }
}

/* Minimale breedte voor mobiele schermen */
@media only screen and (min-width: 320px) {
    /* Stijlen voor schermen breder dan 320px indien nodig */
}
