/* External fonts from google fonts */
@import url('https://fonts.googleapis.com/css2?family=Quicksand:wght@300;400;500;600;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Rubik:ital,wght@0,300..900;1,300..900&display=swap');


/* CSS Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}


/* Global styling */
body {
    font-family: 'Quicksand', Rubik, 'Trebuchet MS';
    background-image: linear-gradient(to bottom, #87ceeb, #fffaf0);    /* light blue to almost white, vertically */
    background-repeat: no-repeat;
    background-size: cover;
    min-height: 100vh;
}


/* Header styling */
header {
    min-height: 10vh;
    background-color: rgba(255, 255, 255, 0.8);    /* Transparent white background */
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);     /* Subtle shadow for depth */
}

.header-container {
    display: flex;
    justify-content: space-evenly;
    align-items: center;
}

#header-title {
    font-size: 2.2rem;
    color: #1abc9c;
    font-weight: bold;
    text-decoration: none;
}

.header-icon {
    width: 5rem;
}

header nav ul {
    display: flex;
    gap: 11rem;
    list-style: none;
}

header nav ul li a {
    text-decoration: none;
    font-size: 1.9rem;
    font-weight: 600;
    color: #1abc9c;
    cursor: pointer;
    transition: color 0.3s ease;
    text-decoration: none;
}

header nav ul li a:hover, #header-title:hover {
    color: #34495e;
    cursor: pointer;
    transition: color 0.3s ease;
}


/* Main global styling */
main {
    min-height: 90vh;
}

/* Main styling for index page */
.main-container {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.about-us {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.about-us p {
    width: 75%;
    margin-top: 20px;
    margin-bottom: 20px;
    color: #34495e;
    font-size: 1.5rem;
    font-weight: 500;
}

.about-us h2 {
    color: #1abc9c;
    font-size: 2.5rem;
    margin-top: 40px;
}

.about-us img {
    width: 800px;
    margin: 20px;
    border: 3px solid #1abc9c;
    border-radius: 25px;
}

.about-us-images {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
}

/* Main styling for locaties page */
.main-container-locations {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
.location-numbers {
    display: flex;
    justify-content: space-evenly;
    font-size: 1.5rem;
    width: 100%;
    margin-top: 40px;
    color: #1abc9c;
    font-weight: bold;
}

.location-numbers span {
    font-weight: bold;
    color: #34495e;
}

.main-container-locations h2 {
    color: #1abc9c;
    font-size: 2.5rem;
}

/* Main styling for tarieven page */
.main-container-tarieven {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 30px;
}

.main-container-tarieven h2 {
    color: #34495e;
    font-size: 2.5rem;
}

.included-items-list {
    color: #34495e;
    font-size: 1.8rem
}

.included-items-txt {
    font-weight: bold;
    color: #34495e;
    font-size: 1.4rem;
}

.grid-tarieven {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.tarief-item {
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    gap: 20px;
    padding: 20px;
    border: 3px solid #1abc9c;
    border-radius: 10px;
}

.tarief-item h3 {
    color: #1abc9c;
    font-size: 2.3rem;
}

.tarief-item p {
    font-weight: bold;
    color: #34495e;
    font-size: 1.8rem;
}

.tarief-icon {
    width: 5rem;
}

/* Main styling for contact page */
.main-contact {
    margin-top: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8rem
}

.main-contact h2 {
    color: #1abc9c;
    font-size: 2.5rem;
}

.main-contact h3 {
    color: #1abc9c;
    font-size: 2.4rem;
    margin-bottom: 10px;
}

.main-contact img {
    width: 500px;
    border: 3px solid #1abc9c;
    border-radius: 10px;
}

.contact-container {
    color: #34495e;
    font-size: 1.5rem;
    font-weight: 500;
}

.adres-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    color: #34495e;
    font-size: 1.5rem;
    font-weight: 500;
}

.adres-container p {
    font-weight: bold;
}

.contact-info {
    font-weight: bold;
}



/* Footer styling */
footer {
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    min-height: 10vh;
    background-color: #2c3e50;
    margin-top: 30px;
}

.footer-icon {
    width: 4rem;
    color: #1abc9c;
}

.back-to-topBtn {
    width: auto;
    height: auto;
    padding: 5px;
    background-color: #1abc9c;
    color: #34495e;
    border-radius: 25px;
    font-size: 2rem;
}

.back-to-topBtn:hover {
    background-color: #34495e;
    color: #1abc9c;
    transition: color 0.3s ease
}

footer a {
    font-size: 2rem;
    color: #1abc9c;
    text-decoration: none;
}

footer a:hover, .footer-icon:hover {
    color: #34495e; /* Highlighted teal on hover */
    cursor: pointer;
    transition: color 0.3s ease
}


/* Responsive code */

/* Fore all the headers */
/* header styling for devices with viewport 1700px or smaller */
@media screen and (max-width: 1700px) {

    header nav ul {
        gap: 3.5rem;
    }

    .header-icon {
        width: 4rem;
    }
}

/* Header styling for devices with viewport 1200px or smaller */
@media screen and (max-width: 1200px) {

    header nav ul li a {
        font-size: 1.7rem;
    }

    header nav ul {
        gap: 20px
    }

    #header-title {
        font-size: 1.7rem;
    }

    .header-icon {
        width: 3rem;
    }
}

/* Header styling for devices with viewport 800px or smaller */
@media screen and (max-width: 800px) {

    .header-container {
        flex-direction: column;
    }

    header nav ul {
        gap: 20px;
    }

    header nav ul li, #header-title {
        margin: 20px;
    }
}

/* Header styling for devices with viewport 480px or smaller*/
@media screen and (max-width: 480px) {

    header nav ul li a {
        font-size: 1.4rem;
    }

    header nav ul li {
        margin: 5px;

    }

    #header-title {
        font-size: 1.4rem;
    }

    .header-icon {
        width: 3rem;
    }
}

/* Header styling for devices with viewport 335px or smaller*/
@media screen and (max-width: 335px) {

    header nav ul {
        display: flex;
        flex-direction: column;
    }
}

/* For the main of index.html */
/* Main styling for devices with viewport 900px or smaller */
@media screen and (max-width: 900px) {
    .about-us p {
        width: 90%;  
        font-size: 1.4rem; 
    }

    .about-us h2 {
        font-size: 2rem; 
    }

    .about-us img {
        width: 90%; 
        max-width: 650px; 
        border-radius: 15px; 
    }

    .about-us-images {
        flex-direction: column; 
        align-items: center;
    }
}

/* Main styling for devices with viewport 740px or smaller */
@media screen and (max-width: 740px) {
    .about-us p {
        font-size: 1.2rem; 
        text-align: center; 
    }

    .about-us h2 {
        font-size: 1.8rem; 
        text-align: center;
    }

    .about-us img {
        max-width: 100%; 
    }
}

/* Main styling for devices with viewport 450px or smaller */
@media screen and (max-width: 450px) {
    .about-us p {
        font-size: 1rem;
    }

    .about-us h2 {
        font-size: 1.5rem;
    }
}



/* For all the footers */
/* footer styling for devices with viewport 910px or smaller */
@media screen and (max-width: 910px) {
    footer {
        align-items: center; /* Centreer ze */
        text-align: center; /* Zorg dat de tekst in het midden staat */
        gap: 15px; /* Zorg voor ruimte tussen de elementen */
        padding: 20px 0; /* Extra padding om luchtiger te maken */
    }

    footer a {
        font-size: 1.7rem; /* Maak de tekst iets kleiner */
    }

    .back-to-topBtn {
        font-size: 1.4rem;
        padding: 10px 20px;
    }

    .footer-icon {
        width: 3.3rem; /* Iets kleiner maken */
    }
}

/* footer styling for devices with viewport 700px or smaller */
@media screen and (max-width: 700px) {
    footer {
        flex-direction: column; /* Zet de items onder elkaar */
        align-items: center; /* Centreer ze */
        text-align: center; /* Zorg dat de tekst in het midden staat */
        gap: 15px; /* Zorg voor ruimte tussen de elementen */
        padding: 20px 0; /* Extra padding om luchtiger te maken */
    }

    footer a {
        font-size: 1.5rem; /* Maak de tekst iets kleiner */
    }

    .back-to-topBtn {
        font-size: 1.3rem;
        padding: 10px 20px;
    }

    .footer-icon {
        width: 3.4rem; /* Iets kleiner maken */
    }
}








