@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:ital,wght@0,200..800;1,200..800&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@300..700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=DM+Sans:ital,opsz,wght@0,9..40,100..1000;1,9..40,100..1000&display=swap');


:root{
    --beige: #f6f0d5;
    --oranje: #cf5e2f;
    --groen: #4a7b72;
    --p:     #2B4541;
    --h:     #172623;
    --max-width: 1920;
    --max-columns: 16;
}

.space-grotesk {
    font-family: "Space Grotesk", sans-serif;
    font-optical-sizing: auto;
    /* font-weight: <weight>; */
    /* font-style: normal; */
  }

/* Webfont: Thunder-BoldLC */@font-face {
    font-family: 'Thunder';
    src: url('Thunder-BoldLC.eot'); /* IE9 Compat Modes */
    src: url('Thunder-BoldLC.eot?#iefix') format('embedded-opentype'), /* IE6-IE8 */
         url('Thunder-BoldLC.woff') format('woff'), /* Modern Browsers */
         url('Thunder-BoldLC.woff2') format('woff2'), /* Modern Browsers */
         url('Thunder-BoldLC.ttf') format('truetype'); /* Safari, Android, iOS */
             font-style: normal;
    font-weight: bold;
    text-rendering: optimizeLegibility;
}

@font-face {
    font-family: 'ThunderMed';
    src: url('Thunder-MediumLC.eot'); /* IE9 Compat Modes */
    src: url('Thunder-MediumLC.eot?#iefix') format('embedded-opentype'), /* IE6-IE8 */
        url('Thunder-MediumLC.woff') format('woff'), /* Modern Browsers */
        url('Thunder-MediumLC.woff2') format('woff2'), /* Modern Browsers */
        url('Thunder-MediumLC.ttf') format('truetype'); /* Safari, Android, iOS */
            font-style: normal;
    font-weight: normal;
    text-rendering: optimizeLegibility;
}
@font-face {
    font-family: 'ThunderLight';
    src: url('Thunder-LightLC.eot'); /* IE9 Compat Modes */
    src: url('Thunder-LightLC.eot?#iefix') format('embedded-opentype'), /* IE6-IE8 */
         url('Thunder-LightLC.woff') format('woff'), /* Modern Browsers */
         url('Thunder-LightLC.woff2') format('woff2'), /* Modern Browsers */
         url('Thunder-LightLC.ttf') format('truetype'); /* Safari, Android, iOS */
             font-style: normal;
    font-weight: normal;
    text-rendering: optimizeLegibility;
}

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

html, body{
    height: 100%;
}

body {
    font-family: Arial, sans-serif;
    justify-content: center;
    align-items: center; /* Centraal verticaal en horizontaal */
    background-color: var(--beige);
    /* padding: 20px; */
    overflow: auto;
}

.container {
    display: flex;
    flex-direction: row; /* Standaard horizontale lay-out */
    justify-content: center; /* Zorgt dat de container horizontaal gecentreerd is */
    align-items: center; /* Zorgt dat de container verticaal gecentreerd is */
    max-width: 1300px; /* Stel een maximale breedte in voor de container */
    padding: 20px;
    min-height: 100%;
    margin: 0 auto;
}

.main-content {
    display: flex;
    flex-direction: row; /* Standaard horizontale lay-out */
    align-items: center;
    width: fit-content;
    gap: 1rem;
}

.text-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    flex: 1;
    margin-right: 20px; /* Ruimte tussen de tekst en de afbeelding */
}

.message h1 {
    font-family: "Thunder", sans-serif;
    font-optical-sizing: auto;
    font-weight: 800;
    font-size: clamp(4rem, 2.4211rem + 7.8947vw, 10rem);
    line-height: 82%;
    margin: 2rem 0 1rem 0;
    text-transform: uppercase;
    color: var(--h);
}

.message h1 span {
    color: var(--groen);
}

.contact p {
    font-family: "Space Grotesk", sans-serif;
    font-size: 1.4rem;
    margin-bottom: 5px;
    color: var(--p);
}

.contact a {
    font-size: 1.4rem;
    color: var(--oranje);
    text-decoration: none;
}

.social-icons {
    margin-top: 40px;
    display: flex;
    gap: 15px;
}

.social-icons a img {
    width: 40px;
    height: 40px;
}

.logo {
    width: 20%;
    min-width: 150px;
}

/* Standaard afbeelding stijl */
.illustration {
    width: 100%;
    max-width: 500px;
    min-width: 350px;
    object-fit: contain; /* Zorgt ervoor dat de afbeelding proportioneel wordt geschaald */; /* Beperk de hoogte van de afbeelding zodat deze niet groter wordt dan de container */
}

/* Mobiele versie: pas de layout aan voor kleinere schermen */
@media (max-width: 768px) {

    .container {
        flex-direction: column; /* Zet de container in een verticale lay-out */
        align-items: flex-start; /* Zorg dat de inhoud aan de bovenkant van de container wordt uitgelijnd */
        justify-content: start;
        margin: 0 !important;
    }

    .main-content {
        flex-direction: column; /* Zet de inhoud verticaal */
    }

    .text-content {
        align-items: flex-start; /* Alles links uitlijnen */
        justify-content: flex-start;
        margin-right: 0; /* Verwijder de marge aan de rechterkant */
    }

    .illustration {
        margin-top: 20px; /* Ruimte tussen de tekst en de afbeelding */
        min-width: 300px;
        max-width: 450px;
    }

    .social-icons a img {
        width: 30px;
        height: 30px;
    }

    .social-icons{
        margin-top: 20px;
    }
}

@media (max-width: 1300px){
    .container{
        margin: 0 30px;
    }
}