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

body {
    background-color: #5C616A;
    color: #FFFDF4;
    line-height: 1.6;
    scroll-behavior: smooth;
}

.home-btn {
    position: fixed;
    font-size: 2.2em;
    font-weight: bold;
    text-decoration: none;
    color: #f0f0f0;
    margin-top: 20px;
    margin-left: 20px;
    font-family: "El Messiri", serif;
}

.home-btn:hover {
    color: #93ACC8;
}

/* Container Layout */
.container {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 40px 0;
    border-top: 1px solid #93ACC8;
}

/* Header & Landing Pagina */
.home-header {
    height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
}

header h1 {
    font-size: 12em;
    margin-bottom: 10px;
    color: #FFFDF4;
    font-family: "El Messiri", serif;
    line-height: 1.1;
    position: relative;
}

.first-name {
    font-weight: 500;
}

.last-name {
    font-weight: 500;
    margin-top: -0.1em;
    padding-left: 0.05em;
}

.undertext {
    margin-top: 10px;
    font-size: 2em;
    color: #FFFDF4;
    font-family: "Yantramanav", sans-serif;
    font-weight: 300;
}

.functions {
    margin-top: 10px;
    font-size: 2.3em;
    color: #FFFDF4;
    font-family: "El Messiri", serif;
    font-weight: 300;
}

.cta-button {
    display: inline-block;
    margin-top: 30px;
    padding: 5px 28px;
    font-size: 1.5em;
    color: #FFFDF4;
    font-family: "Yantramanav", sans-serif;
    background-color: #93ACC8;
    border-radius: 8px;
    text-decoration: none;
    transition: background-color 0.3s;
}

.cta-button:hover {
    color: #93ACC8;
    background-color: #FFFDF4;
}

/* Rond Menu Knop */
.menu-btn {
    position: fixed;
    top: 20px;
    right: 20px;
    width: 50px;
    height: 50px;
    background-color: #FFFDF4;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #93ACC8;
    font-size: 1.5em;
    cursor: pointer;
    z-index: 1000;
}

.menu-btn:hover {
    color: #FFFDF4;
    background-color: #93ACC8;
}

/* Menu Popup */
.menu-popup {
    display: none;
    position: fixed;
    top: 70px;
    right: 20px;
    background-color: #FFFDF4;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
    padding: 15px;
    border-radius: 8px;
    z-index: 1000;
}

.menu-popup a {
    display: block;
    padding: 10px;
    color: #333;
    font-family: "Yantramanav", sans-serif;
    text-decoration: none;
}

.menu-popup a:hover {
    background-color: #f0f0f0;
}

/* Over Mij */
#about {
    text-align: center;
    width: 100%;
    padding-top: 40px;
}

.title-container {
    display: flex;
    justify-content: center;
    overflow: hidden;
    text-align: center;
    width: 100%;
}

.title {
    display: inline-block;
    white-space: nowrap;
    font-family: "El Messiri", serif;
    font-size: 3.5em;
    position: relative;
}

.soft {
    font-weight: 100; /* Normaal gewicht voor zachte tekst */
    font-style: normal;
    opacity: 0.5;
}

.bold {
    font-weight: 500; /* Vet gewicht voor belangrijke woorden */
    color: #FFFDF4; /* Pas de kleur aan als dat nodig is */
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 20px; 
    align-items: start;
    max-width: 1400px;
    margin-top: 60px;
    margin-bottom: 60px;
    margin-left: 60px;
    margin-right: 60px;
}

.about-text {
    text-align: left;
    font-family: "Yantramanav", sans-serif;
}

#about h4 {
    font-family: "Yantramanav", sans-serif;
    font-size: 1.5em;
    margin-bottom: 20px;
}

#about p {
    font-size: 1.1em;
    line-height: 1.6;
    max-width: 380px;
    text-align: justify;
}

.links {
    margin-top: 200px;
    font-weight: 600;
}

.links a {
    margin-right: 10px;
    color: #FFFDF4;
    font-family: "Yantramanav", sans-serif;
    font-size: 1.1em;
    text-decoration: none;
}

.links a:hover {
    color:#93ACC8;
}

.image-collage {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(3, 200px);
    gap: 15px 30px;
}

.image-collage img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.image-collage img:first-child {
    object-position: 0 50%;
}

.image-collage img:nth-child(2) {
    object-position: top;
}

.image-collage img:nth-child(3) {
    object-position: 0 70%;
}

.image-collage img:nth-child(4) {
    object-position: 0 80%;
    grid-row: 2 / span 2;
}

.image-collage img:nth-child(5) {
    object-position: 0 77%;
}

/* Skills */
#skills {
    text-align: center;
    width: 100vw;
}

/* Algemeen voor Skills Sectie */
.skills-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    margin-top: 40px;
}

.skills-row {
    display: flex;
    gap: 40px;
    justify-content: center;
}

.skill-icon {
    position: relative;
    font-size: 3.5em;
    color: #FFFDF4;
    font-family: "Yantramanav", sans-serif;
    cursor: pointer;
    transition: color 0.3s;
}

.skill-icon:hover {
    color: #93ACC8;
}

/* Tooltip Stijlen */
.skill-icon::after {
    content: attr(data-skill); 
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    background-color: #333;
    color: white;
    font-family: "Yantramanav", sans-serif;
    padding: 5px 10px;
    border-radius: 4px;
    font-size: 0.3em;
    opacity: 0;
    transition: opacity 0.3s;
    white-space: nowrap;
}

/* Tooltip Zichtbaar bij Hover */
.skill-icon:hover::after {
    opacity: 1;
}

/* Projecten */
#projects {
    text-align: center;
    font-family: "El Messiri", serif;
}

#projects h2 {
    font-family: "El Messiri", serif;
    font-size: 3.5em;
}

.project-list {
    margin-top: 60px;
    margin-bottom: 100px;
    display: block;
    text-align: center;
    gap: 40px;
    font-family: "Yantramanav", sans-serif;
}

.project-wrapper {
    display: inline-block;
    width: 300px;
    margin: 0 20px 40px;
    text-align: center;
    vertical-align: top;
}

.project-link {
    text-decoration: none;
    color: inherit; /* Inherits color to avoid default link color */
}

.project-wrapper h3 {
    font-size: 1.5em;
    color: #FFFDF4;
    margin-bottom: 10px;
}

.project-item {
    width: 100%;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    background-color: #6a6f78;
    overflow: hidden;
    position: relative;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.project-image {
    width: 100%;
    height: 200px;
    overflow: hidden;
    border-radius: 8px;
}

.project-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(100%);
    transition: filter 0.3s ease;
}

.project-item:hover img {
    filter: grayscale(0%);
}

.project-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

/* Lighttown Speakers */
#lighttownspeakers {
    background-color: #5C616A;
    color: #FFFDF4;
    line-height: 1.6;
    scroll-behavior: smooth;
}

.ls-header {
    height: 80vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    margin-left: 100px;
}

.ls-title {
    font-size: 4em;
    margin-bottom: 10px;
    color: #FFFDF4;
    font-family: "El Messiri", serif;
    line-height: 1.2;
    position: relative;
    text-align: left;
}

.ls-description {
    margin-top: 30px;
    font-size: 1.5em;
    color: #FFFDF4;
    font-family: "Yantramanav", sans-serif;
    font-weight: 300;
    text-align: left;
}

.ls-container-1 {
    height: 110vh;
    margin-top: 10px;
    margin-bottom: 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    border-top: 1px solid #93ACC8;
}

.ls-title-1 {
    font-size: 2.5em;
    margin-bottom: 10px;
    margin-left: 100px;
    color: #FFFDF4;
    font-family: "El Messiri", serif;
    line-height: 1.1;
    position: relative;
    text-align: left;
}

.ls-text-1 {
    margin-left: 100px;
    margin-bottom: 40px;
    font-size: 1.5em;
    color: #FFFDF4;
    font-family: "Yantramanav", sans-serif;
    font-weight: 300;
    text-align: left;
}

.ls-container-1 h6 {
    font-size: 1.8em;
    margin-bottom: 10px;
    margin-left: 100px;
    color: #FFFDF4;
    font-family: "El Messiri", serif;
    line-height: 1.1;
    position: relative;
    text-align: left;
}

.ls-container-2 {
    height: 130vh;
    margin-top: 10px;
    margin-bottom: 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    border-top: 1px solid #93ACC8;
}

.ls-title-2 {
    font-size: 2.5em;
    margin-bottom: 10px;
    margin-left: 100px;
    color: #FFFDF4;
    font-family: "El Messiri", serif;
    line-height: 1.1;
    position: relative;
    text-align: left;
}

.ls-text-2 {
    margin-left: 100px;
    margin-bottom: 40px;
    font-size: 1.5em;
    color: #FFFDF4;
    font-family: "Yantramanav", sans-serif;
    font-weight: 300;
    text-align: left;
}

.ls-container-3 {
    height: 80vh;
    margin-top: 10px;
    margin-bottom: 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    border-top: 1px solid #93ACC8;
}

.ls-title-3 {
    font-size: 2.5em;
    margin-bottom: 10px;
    margin-left: 100px;
    color: #FFFDF4;
    font-family: "El Messiri", serif;
    line-height: 1.1;
    position: relative;
    text-align: left;
}

.ls-text-3 {
    margin-left: 100px;
    margin-bottom: 40px;
    font-size: 1.5em;
    color: #FFFDF4;
    font-family: "Yantramanav", sans-serif;
    font-weight: 300;
    text-align: left;
}

/* Voileté */
#voilete {
    background-color: #5C616A;
    color: #FFFDF4;
    line-height: 1.6;
    scroll-behavior: smooth;
}

.voi-header {
    height: 80vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    margin-left: 100px;
}

.voi-title {
    font-size: 4em;
    margin-bottom: 10px;
    color: #FFFDF4;
    font-family: "El Messiri", serif;
    line-height: 1.2;
    position: relative;
    text-align: left;
}

.voi-description {
    margin-top: 30px;
    font-size: 1.5em;
    color: #FFFDF4;
    font-family: "Yantramanav", sans-serif;
    font-weight: 300;
    text-align: left;
}

.voi-container-1 {
    height: 280vh;
    margin-top: 10px;
    margin-bottom: 80px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    border-top: 1px solid #93ACC8;
}

.voi-title-1 {
    font-size: 2.5em;
    margin-bottom: 10px;
    margin-top: 30px;
    margin-left: 100px;
    color: #FFFDF4;
    font-family: "El Messiri", serif;
    line-height: 1.1;
    position: relative;
    text-align: left;
}

.voi-text-1 {
    margin-top: 30px;
    margin-bottom: 20px;
    margin-left: 100px;
    font-size: 1.5em;
    color: #FFFDF4;
    font-family: "Yantramanav", sans-serif;
    font-weight: 300;
    text-align: left;
}

.voi-container-1 h6 {
    font-size: 1.8em;
    margin-bottom: 10px;
    margin-left: 100px;
    color: #FFFDF4;
    font-family: "El Messiri", serif;
    line-height: 1.1;
    position: relative;
    text-align: left;
}

.voi-container-2 {
    height: 90vh;
    margin-top: 10px;
    margin-bottom: 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    border-top: 1px solid #93ACC8;
}

.voi-title-2 {
    font-size: 2.5em;
    margin-bottom: 10px;
    margin-left: 100px;
    color: #FFFDF4;
    font-family: "El Messiri", serif;
    line-height: 1.1;
    position: relative;
    text-align: left;
}

.voi-text-2 {
    margin-left: 100px;
    margin-bottom: 40px;
    font-size: 1.5em;
    color: #FFFDF4;
    font-family: "Yantramanav", sans-serif;
    font-weight: 300;
    text-align: left;
}

.voi-container-3 {
    height: 90vh;
    margin-top: 10px;
    margin-bottom: 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    border-top: 1px solid #93ACC8;
}

.voi-title-3 {
    font-size: 2.5em;
    margin-bottom: 10px;
    margin-left: 100px;
    color: #FFFDF4;
    font-family: "El Messiri", serif;
    line-height: 1.1;
    position: relative;
    text-align: left;
}

.voi-text-3 {
    margin-left: 100px;
    margin-bottom: 40px;
    font-size: 1.5em;
    color: #FFFDF4;
    font-family: "Yantramanav", sans-serif;
    font-weight: 300;
    text-align: left;
}

/* Slideshow */
.slideshow-container {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    max-width: 600px;
    height: 400px;
    overflow: hidden;
    position: relative;
    margin: 20px auto;
}

.slideshow img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: none;
    border-radius: 15px;
    padding: 10px;
    box-shadow: inset 0px 0px 10px 10px #6a6f78;
    position: absolute;
    top: 0;
    left: 0;
    cursor: pointer; /* Add this to make the pointer appear clickable */
}

.slideshow img.active {
    display: block;
    opacity: 1;
    transition: opacity 1s ease-in-out;
}

/* Lightbox overlay */
.lightbox {
    display: none; /* Initially hidden */
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8); /* Semi-transparent black */
    justify-content: center;
    align-items: center;
    z-index: 1000; /* Ensure it appears above everything */
}

.lightbox img {
    max-width: 90%;
    max-height: 90%;
    box-shadow: 0 0 15px rgba(255, 255, 255, 0.5);
    border-radius: 8px;
}

/* Close button for the lightbox */
.lightbox-close {
    position: absolute;
    top: 20px;
    right: 20px;
    color: white;
    font-size: 24px;
    cursor: pointer;
    background: none;
    border: none;
}

/* School Portfolio */
#school {
    background-color: #5C616A;
    color: #FFFDF4;
    line-height: 1.6;
    scroll-behavior: smooth;
}

.sch-header {
    height: 80vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    margin-left: 100px;
}

.sch-title {
    font-size: 4em;
    margin-bottom: 10px;
    color: #FFFDF4;
    font-family: "El Messiri", serif;
    line-height: 1.2;
    position: relative;
    text-align: left;
}

.sch-description {
    margin-top: 30px;
    font-size: 1.5em;
    color: #FFFDF4;
    font-family: "Yantramanav", sans-serif;
    font-weight: 300;
    text-align: left;
}

.sch-container-1 {
    height: 100vh;
    margin-top: 10px;
    margin-bottom: 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    border-top: 1px solid #93ACC8;
}

.sch-title-1 {
    font-size: 2.5em;
    margin-bottom: 10px;
    margin-left: 100px;
    color: #FFFDF4;
    font-family: "El Messiri", serif;
    line-height: 1.1;
    position: relative;
    text-align: left;
}

.sch-text-1 {
    margin-left: 100px;
    margin-bottom: 40px;
    font-size: 1.5em;
    color: #FFFDF4;
    font-family: "Yantramanav", sans-serif;
    font-weight: 300;
    text-align: left;
}

.sch-container-2 {
    height: 90vh;
    margin-top: 10px;
    margin-bottom: 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    border-top: 1px solid #93ACC8;
}

.sch-title-2 {
    font-size: 2.5em;
    margin-bottom: 10px;
    margin-left: 100px;
    color: #FFFDF4;
    font-family: "El Messiri", serif;
    line-height: 1.1;
    position: relative;
    text-align: left;
}

.sch-text-2 {
    margin-left: 100px;
    margin-bottom: 40px;
    font-size: 1.5em;
    color: #FFFDF4;
    font-family: "Yantramanav", sans-serif;
    font-weight: 300;
    text-align: left;
}

/* SmartHive */
#smarthive {
    background-color: #5C616A;
    color: #FFFDF4;
    line-height: 1.6;
    scroll-behavior: smooth;
}

.sma-header {
    height: 80vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    margin-left: 100px;
}

.sma-title {
    font-size: 4em;
    margin-bottom: 10px;
    color: #FFFDF4;
    font-family: "El Messiri", serif;
    line-height: 1.2;
    position: relative;
    text-align: left;
}

.sma-description {
    margin-top: 30px;
    font-size: 1.5em;
    color: #FFFDF4;
    font-family: "Yantramanav", sans-serif;
    font-weight: 300;
    text-align: left;
}

.sma-container-1 {
    height: 80vh;
    margin-top: 10px;
    margin-bottom: 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    border-top: 1px solid #93ACC8;
}

.sma-title-1 {
    font-size: 2.5em;
    margin-bottom: 10px;
    margin-left: 100px;
    color: #FFFDF4;
    font-family: "El Messiri", serif;
    line-height: 1.1;
    position: relative;
    text-align: left;
}

.sma-text-1 {
    margin-left: 100px;
    margin-bottom: 40px;
    font-size: 1.5em;
    color: #FFFDF4;
    font-family: "Yantramanav", sans-serif;
    font-weight: 300;
    text-align: left;
}

/* Stuurmen */
#stuurmen {
    background-color: #5C616A;
    color: #FFFDF4;
    line-height: 1.6;
    scroll-behavior: smooth;
}

.stu-header {
    height: 80vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    margin-left: 100px;
}

.stu-title {
    font-size: 4em;
    margin-bottom: 10px;
    color: #FFFDF4;
    font-family: "El Messiri", serif;
    line-height: 1.2;
    position: relative;
    text-align: left;
}

.stu-description {
    margin-top: 30px;
    font-size: 1.5em;
    color: #FFFDF4;
    font-family: "Yantramanav", sans-serif;
    font-weight: 300;
    text-align: left;
}

.stu-container-1 {
    height: 85vh;
    margin-top: 10px;
    margin-bottom: 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    border-top: 1px solid #93ACC8;
}

.stu-title-1 {
    font-size: 2.5em;
    margin-bottom: 10px;
    margin-left: 100px;
    color: #FFFDF4;
    font-family: "El Messiri", serif;
    line-height: 1.1;
    position: relative;
    text-align: left;
}

.stu-text-1 {
    margin-left: 100px;
    margin-bottom: 40px;
    font-size: 1.5em;
    color: #FFFDF4;
    font-family: "Yantramanav", sans-serif;
    font-weight: 300;
    text-align: left;
}

.stu-container-2 {
    height: 90vh;
    margin-top: 10px;
    margin-bottom: 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    border-top: 1px solid #93ACC8;
}

.stu-title-2 {
    font-size: 2.5em;
    margin-bottom: 10px;
    margin-left: 100px;
    color: #FFFDF4;
    font-family: "El Messiri", serif;
    line-height: 1.1;
    position: relative;
    text-align: left;
}

.stu-text-2 {
    margin-left: 100px;
    margin-bottom: 40px;
    font-size: 1.5em;
    color: #FFFDF4;
    font-family: "Yantramanav", sans-serif;
    font-weight: 300;
    text-align: left;
}

/* Enchantix */
#enchantix {
    background-color: #5C616A;
    color: #FFFDF4;
    line-height: 1.6;
    scroll-behavior: smooth;
}

.enc-header {
    height: 80vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    margin-left: 100px;
}

.enc-title {
    font-size: 4em;
    margin-bottom: 10px;
    color: #FFFDF4;
    font-family: "El Messiri", serif;
    line-height: 1.2;
    position: relative;
    text-align: left;
}

.enc-description {
    margin-top: 30px;
    font-size: 1.5em;
    color: #FFFDF4;
    font-family: "Yantramanav", sans-serif;
    font-weight: 300;
    text-align: left;
}

.enc-container-1 {
    height: 85vh;
    margin-top: 10px;
    margin-bottom: 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    border-top: 1px solid #93ACC8;
}

.enc-title-1 {
    font-size: 2.5em;
    margin-bottom: 10px;
    margin-left: 100px;
    color: #FFFDF4;
    font-family: "El Messiri", serif;
    line-height: 1.1;
    position: relative;
    text-align: left;
}

.enc-text-1 {
    margin-left: 100px;
    margin-bottom: 40px;
    font-size: 1.5em;
    color: #FFFDF4;
    font-family: "Yantramanav", sans-serif;
    font-weight: 300;
    text-align: left;
}

.enc-container-2 {
    height: 80vh;
    margin-top: 10px;
    margin-bottom: 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    border-top: 1px solid #93ACC8;
}

.enc-title-2 {
    font-size: 2.5em;
    margin-bottom: 10px;
    margin-left: 100px;
    color: #FFFDF4;
    font-family: "El Messiri", serif;
    line-height: 1.1;
    position: relative;
    text-align: left;
}

.enc-text-2 {
    margin-left: 100px;
    margin-bottom: 40px;
    font-size: 1.5em;
    color: #FFFDF4;
    font-family: "Yantramanav", sans-serif;
    font-weight: 300;
    text-align: left;
}