
html {
  box-sizing: border-box;
}
*,
*:before,
*:after {
  box-sizing: inherit;
}
/* Body Styling */
body {
  font-family: "Arial", sans-serif;
  line-height: 1.6;
  background-color: #ffffff;
  color: #000000;
}

body {
  margin: 0;
  padding: 0;
  width: 100%;
}




.header {
  display: flex; /* Zet logo en navigatie in een rij */
  align-items: center; /* Centreert ze verticaal */
  justify-content: space-between; /* Plaatst logo links en navigatie rechts */
  padding: 10px 10px; /* Optionele padding rondom */
  background-color: #ffffff; /* Achtergrondkleur van de header */
  color: #000000;
}
.logo-container img {
  display: block; /* Verwijdert ongewenste witruimte rond afbeelding */
  max-height: 300px; /* Beperkt de hoogte van het logo */
  margin: 0; /* Geen extra marges */
}
.nav ul {
  display: flex; /* Zet de lijstitems naast elkaar */
  gap: 20px; /* Ruimte tussen de links */
  list-style: none; /* Geen bullets */
  margin: 0; /* Geen marges */
  padding: 0; /* Geen padding */
}
.nav-item {
  font-size: 1.5rem; /* Grotere tekst voor de navigatie */
  font-weight: bold; /* Maak de tekst vetgedrukt als je dat wilt */
}


.nav a {
  color: #9a9a40; /* Witte tekstkleur */
  text-decoration: none; /* Geen onderstreping */
  font-weight: bold; /* Optioneel vetgedrukt */
  padding: 5zpx 10px; /* Ruimte rond de tekst */

}

/* Streepje onder de link bij hover of focus */
.nav a::after {
    content: ""; /* Voegt een "leeg" element toe */
    display: block; /* Zorgt dat het als een blok verschijnt */
    width: 0; /* Standaard breedte is 0 (geen streep zichtbaar) */
    height: 2px; /* Hoogte van het streepje */
    background: #f6f4f4; /* Kleur van het streepje (lichtgrijs) */
    transition: width 0.3s ease; /* Gladde animatie */
    position: absolute; /* Positionering relatief aan de link */
    bottom: 0; /* Plaatst het streepje onder de tekst */
    left: 0;
}
/* Laat het streepje zien bij hover of focus */
.nav a:hover::after,
.nav a:focus::after {
    width: 100%; /* De streep breidt zich uit tot de volledige breedte van de tekst */
}
/* Hero Section */
.hero {
  text-align: center;
  padding: 300px 20px;
}
.hero {
  background-image: url('../assets/2024_10_09_Giks87597.jpg'); /* Herhaal hier hetzelfde als de achtergrond voor de hero-sectie */
  background-size: cover;
  background-position: center 1%;
 width: 100%;
 height: 600 px; 
}
.hero-text {
  text-align: center; /* Zorgt ervoor dat alle tekst in de container gecentreerd wordt */
  margin-top: 20px; /* Voegt wat ruimte boven de tekst toe */
}

/* Specifieke stijl voor de "Welkom op mijn portfolio" */
.hero-title {
  font-size: 2rem; /* Verhoogt de tekstgrootte */
  font-weight: bold; /* Maakt de tekst vetgedrukt */
  color: #9a9a40; /* Maakt de tekst wit */
  margin-bottom: 10px; /* Voegt wat ruimte onder de tekst toe */
}

/* Stijl voor de tweede paragraaf (Hieronder vind je...) */
.hero-text p:nth-child(2) {
  font-size: 1.5rem; /* Grotere tekstgrootte */
  color: #000000; /* Lichte grijze kleur */
  margin-bottom: 20px; /* Voegt wat ruimte onder de tekst toe */
}

.hero-text {
  text-align: center;
  margin-top: 20px;
  margin-bottom: 170px; /* Voeg hier extra marge toe */
}


.tagline {
  font-size: 1.5rem;
  margin-bottom: 20px;
}

.btn {
  background: #fff;
  color: #000;
  padding: 10px 20px;
  border: none;
  cursor: pointer;
}

.scroll-container {
  margin-top: 2rem;
  background-color: #ffffff;
  overflow: auto;
  white-space: nowrap;
  padding: 1 rem;
}

.scroll-container img {
  width: 30%;
  height:700px; 
  object-fit: cover; 
}

section {
    margin-top: 2px;
    margin-bottom: 20px;
}
/* Qualities Section */
.portfolio {
  display: flex;
  justify-content: space-between;
  padding: 20px;
  background-color: #fffdfd;
  color: #fff7f7;
  line-height: 0;
}
.portfolio h2 {
  font-size: 1.5 em; /* Pas de grootte aan zoals gewenst */
  font-weight: bold; /* Zorg ervoor dat het vetgedrukt is */
  margin-bottom: 1em; /* Voegt ruimte toe onder het h2-element */
  text-align: center; /* Optioneel: centraalt de tekst */
}

.portfolio p {
  font-size: 1em; /* Houd de standaardgrootte voor de paragraaf */
  line-height: 1.6; /* Zorgt voor betere leesbaarheid */
  text-align: center; /* Optioneel: centraalt de tekst */
  margin-top: 0; /* Verwijder eventuele extra marges erboven */
}
.portfolio {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100px; /* Specifieke hoogte instellen */
  text-align: center;
  margin: 0 auto; /* Centreer de container */
}

/* Welcome Section */
.welcome {
  display: flex;
  justify-content: space-between;
  padding: 20px;
}

.welcome .content {
  max-width: 50%;
}

.welcome .images img {
  width: 45%;
}

/* Subscribe Section */
.subscribe {
  text-align: center;
  background: #f4f4f4;
  color: #000000;
  padding: 20px;
}

/* Products Section */
.products {
  display: flex;
  justify-content: space-between;
  padding: 20px;
  font-size: 1.2rem;
}

.product img {
  max-width: 100%;
  margin-bottom: 10px;
}

.product h3 {
  margin: 10px 0;
}

h2 {
  font-size: 1.5rem; /* Maak de tekst groter */
  font-weight: bold; /* Zorg dat de tekst vetgedrukt is */
  text-align: left; /* Zet de tekst in het midden (optioneel, kan ook links of rechts zijn) */
  margin: 20px 0; /* Voeg wat ruimte toe boven en onder de titel */
  color: #ffffff; /* Zet de tekstkleur (kies een kleur die bij je ontwerp past) */
  padding-left: 0%;
}

p {
    padding-left: 0%;
} 
/* Algemene stijl voor groene vakken */
.green-box {
  background-color: #9a9a40; /* Groene achtergrondkleur */
  color: #ffffff; /* Witte tekstkleur */
  padding: 20px; /* Ruimte binnen de vakken */
  margin: 35px 0; /* Ruimte tussen de vakken */
  border-radius: 10px; /* Ronde hoeken */
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1); /* Schaduw voor een lichte diepte */
  max-width: 99.5%;
}

/* Stijl voor titels binnen de groene vakken */
.green-box h2 {
  font-size: 1.8rem; /* Grotere lettergrootte voor de titels */
  font-weight: bold; /* Maak titels vetgedrukt */
  margin-bottom: 10px; /* Ruimte onder de titel */
}

/* Stijl voor paragraaftekst binnen de groene vakken */
.green-box p {
  font-size: 1.2rem; /* Iets grotere tekst voor leesbaarheid */
  line-height: 1.6; /* Verbeterde regelafstand */
  margin: 0; /* Verwijder extra marges */
}


/* Header */
#about-me-page header {
  padding: 3em 1.5em;
  background-color: #9a9a40; /* Witte achtergrond voor contrast */
  border-radius: 15px; /* Afronden van hoeken */
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
  margin-bottom: 3em; /* Extra ruimte onder de header */
}

.text-section h1 {
    font-size: 2rem;
    color: #ffffff;
    margin-bottom: 1em;
    text-align: left;
}
#about-me-page {
    padding: 60px 20px; /* Ruimte rondom de sectie */
    background-color: #ffffff; /* Zachte grijsblauwe achtergrond */
}

.content-container {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.text-section {
    flex: 1;
    padding: 20px 40px;
    color: #333333; /* Zwart voor de "Over mij"-tekst */
    background-color: #ffffff; /* Witte achtergrond voor de tekst */
    border-radius: 12px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    line-height: 1.8;
}

.text-section h1 {
    font-size: 2.6rem;
    color: #000000; /* Zwart voor de titel */
    margin-bottom: 20px;
    font-weight: 700;
    text-align: center;
}

.text-section p {
    font-size: 1.2rem;
    margin-top: 10px;
}

.image-section {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.image-section img {
    max-width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease-in-out;
}

.image-section img:hover {
    transform: scale(1.05);
}

/* Algemene stijl voor andere secties (zoals 'Mijn studies', 'Mijn interesses') */
section {
    color: #ffffff; /* Witte tekstkleur voor andere secties */
    background-color: #ffffff; /* Donkere achtergrondkleur voor andere secties */
}

/* Responsiveness */
@media (max-width: 768px) {
    .content-container {
        flex-direction: column;
        text-align: center;
    }

    .text-section, .image-section {
        flex: none;
        width: 100%;
    }

    .image-section img {
        max-width: 80%;
    }
}




.about-section {
    padding: 3em 1.5rem;
    background-color: #9a9a40; /* Achtergrondkleur */
    border-radius: 15px; /* Afronde hoeken */
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
    margin-bottom: 3em;

}



.photo-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr); /* 2 foto's per rij */
    gap: 1em; /* Ruimte tussen de foto's */
    margin-bottom: 2em; /* Ruimte onder de foto-grid */
}

.photo-container {
    background-color: #fff; /* Witte achtergrond voor de kaders */
    padding: 1rem; /* Ruimte binnen de kader */
    border-radius: 10px; /* Afronden van de hoeken van de kaders */
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1); /* Lichte schaduw voor de kaders */
}

.photo-container img {
    width: 50%;
    height: auto;
    border-radius: 10px; /* Afronde hoeken voor de foto's */

}

.video-container {
    margin-top: 2em;
    text-align: center;
}

.video-container video {
    width: 100%; /* Laat de video de volledige breedte van de container nemen */
    max-width: 1200px; /* Beperk de maximale breedte */
    height: auto; /* Behoud de video-proporties */
    border-radius: 15px; /* Afronde hoeken */
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1); /* Consistente schaduw */
}

/* Algemeen voor de Interests sectie */
.about-section.interests {
    padding: 3em 1.5em;
    background-color: #9a9a40; /* Achtergrondkleur */
    border-radius: 15px; /* Afronde hoeken */
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
    margin-bottom: 3em;
}

/* Header Styling in de Interests Sectie */
.about-section.interests h2 {
    font-size: 2rem;
    color: #fff;
    text-align: left;
    margin-bottom: 1rem;
}

.about-section.studies h2 {
  font-size: 2rem; 
  color:#ffffff;
  text-align: left;
  margin-bottom: 1rem;
}

.about-section.interests p {
    font-size: 1.2rem;
    color: #fff;
    text-align: left;
    margin-bottom: 2em;
}

/* Foto Grid voor Interests */
.photo-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr); /* 2 foto's per rij */
    gap: 0.5rem; /* Ruimte tussen de foto's */
    margin-bottom: 2rem; /* Ruimte onder de foto-grid */
}

.photo-grid img{
  width: 60%;
}

/* Foto container styling */
.photo-container {
    background-color: #9a9a40; /* Witte achtergrond voor de kaders */
    padding: 1rem; /* Ruimte binnen de kader */
    border-radius: 15px; /* Afronden van de hoeken van de kaders */
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1); /* Lichte schaduw voor de kaders */
    text-align: center; /* Zorgt ervoor dat de afbeelding gecentreerd wordt */
    margin:0; 
}

/* Afbeeldingen in de foto-container */
.photo-container img {
    width: 80%; /* Zorg ervoor dat de afbeelding de breedte van de container vult */
    height: auto; /* Houd de oorspronkelijke verhouding */
    border-radius: 10px; /* Afronden van de hoeken van de foto's */}

    .photo-item{
      padding: 1rem; 
      border-radius:15 px;
      box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1); 
      text-align: center;
    }

    .photo-item img {
    width: 80%; /* Maak de foto's kleiner, bijvoorbeeld 80% van de container breedte */
    height: auto; /* Houd de oorspronkelijke verhouding */
    border-radius: 10px; /* Afronden van de hoeken van de foto's */
}


.contact {
    text-align: center;
    padding: 50px 20px;
    background-color: #ffffff;
    color: #333;
}

.contact h2 {
  text-align: center;
    font-size: 2.5rem;
    font-weight: bold;
    color: #9a9a40;
    margin-bottom: 20px;
   
}

.contact p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    line-height: 1.6;
}

.contact-methods {
    display: flex;
    justify-content: center;
    gap: 50px;
    margin-bottom: 40px;
}

.contact-item {
    background-color: #fff;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    max-width: 300px;
    flex-grow: 1;
}

.contact-item h3 {
    font-size: 1.8rem;
    margin-bottom: 15px;
    color: #000;
}

.contact-item p {
    font-size: 1rem;
    color: #555;
    margin-bottom: 20px;
}

.contact-item .btn {
    background-color: #9a9a40;
    color: white;
    padding: 10px 20px;
    text-decoration: none;
    font-weight: bold;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}

.contact-item .btn:hover {
    background-color: #8a8a30;
}

.social-links a {
    margin: 0 10px;
}

.social-links img {
    width: 30px;
    height: auto;
    transition: transform 0.3s ease;
}

.social-links img:hover {
    transform: scale(1.2);
}


.footer {
    text-align: center; /* Centreert de inhoud van de footer */
    padding: 20px; /* Voeg padding toe voor ruimte rond de footer */
    background-color: #f4f4f4; /* Kies een achtergrondkleur voor de footer */
    color: #000000; /* Zet de tekstkleur */
    font-size: 1rem; /* Pas de lettergrootte aan */
}

.footer .social-media a {
    margin: 0 10px; /* Voeg wat ruimte tussen de iconen toe */
    display: inline-block; /* Zorgt dat de iconen naast elkaar staan */
}

.footer .social-media img {
    width: 30px; /* Zet de grootte van de iconen */
    height: auto; /* Zorgt ervoor dat de hoogte in verhouding blijft */
}

.footer p {
    margin-top: 10px; /* Voegt ruimte toe boven de tekst */
}

.footer a {
    text-decoration: none; /* Verwijdert onderstreping van de link */
    color: #000000; /* Zet de kleur van de tekst naar zwart */
}

