/* CSS Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
html, body {
    max-width: 100%;
    overflow-x: hidden; /* Dit verwijdert de horizontale witte balk */
    position: relative;
}

body {
    --bg: #f5e7d7;
    --accent: #9d28eb;
    --text: #000000;
    --muted: rgba(0,0,0,0.84);
    font-family: 'Figtree', 'Satoshi', Inter, sans-serif;
    background-color: var(--bg);
    color: var(--text);
    margin: 0;
    padding: 0;
    min-height: 100vh;
    margin: 0;
    display: flex;
    flex-direction: column;
    overflow-x: hidden; /* Voorkomt ook horizontale balken */
}

/* Local Satoshi Black for headings */
@font-face {
    font-family: 'Satoshi';
    src: url('../fonts/Satoshi-Black.woff2') format('woff2'),
         url('../fonts/Satoshi-Black.woff') format('woff');
    font-weight: 900;
    font-style: normal;
    font-display: swap;
}

/* Satoshi regular fallback */
@font-face {
    font-family: 'Satoshi';
    src: url('../fonts/Satoshi-Regular.woff2') format('woff2'),
         url('../fonts/Satoshi-Regular.woff') format('woff');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'Satoshi';
    src: url('../fonts/Satoshi-Bold.woff2') format('woff2');
    font-weight: 700;
    font-style: normal;
}

/* Use Figtree for body (loaded via Google Fonts in HTML) */
body {
    font-family: 'Figtree', 'Satoshi', Inter, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 80px;
    background-color: var(--bg);
    z-index: 1000;
    gap: 24px;
    transition: transform 0.3s ease-in-out;
}
.header--hidden {
    transform: translateY(-100%);
}

.logo {
    width: 150px;
    height: 150px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: -12px;
}
.logo img{ width:100%; height:100%; object-fit:contain; display:block; }

.logo :hover {
    transform: scale(1.05);
    transition: transform 0.2s ease-in-out;
}

.nav {
    display: flex;
    gap: 28px;
    align-items: center;
}

.nav-link {
    font-size: 18px;
    color: var(--text);
    text-decoration: none;
    padding: 8px 12px;
    border-radius: 8px;
    transition: background 0.18s, color 0.18s, transform 0.12s;
}

.nav-link:hover {
    background: rgba(157,40,235,0.08);
    transform: translateY(-2px);
}

/* Active nav */
.nav-link.active,
.nav-link[aria-current="page"] {
    background: rgba(157,40,235,0.12);
    color: var(--accent);
}
/* Hero / Homepage styles */
.hero {
    position: relative;
    height: 100vh;
    width: 100%;
    display: flex;
    align-items: flex-start; 
    justify-content: center;
    padding-top: 180px; 
    overflow: hidden;
    background-color: var(--bg);
}

/* De Shaders (Side Shapes) */
.hero .side-shape { 
    position: absolute; 
    top: 0;
    bottom: 0;
    width: 500px;          /* Iets breder gemaakt voor de vergroting */
    z-index: 1; 
    pointer-events: none;
    display: flex;
}

/* Plak de linker vorm strak tegen de linkerrand */
.hero .side-shape.left { 
    left: 0;               /* Plak exact op de uiterste linkerkant */
    display: flex;
    transform: scale(1.2); /* Iets vergroten voor beter effect */
    justify-content: flex-start;
}

/* Plak de rechter vorm strak tegen de rechterrand */
.hero .side-shape.right { 
    right: 0;              
    justify-content: flex-end;
    transform: scale(1.2); /* Iets vergroten voor beter effect */
}

.hero .side-shape img {
    height: 100%;          /* Altijd schermvullend van boven naar beneden */
    width: auto;           /* Behoud de verhouding van de vorm */
    object-fit: contain;
}

.hero .side-shape.left img {
    object-position: left center;
    margin-left: -370px;    /* Hiermee schuif je hem 'over' de rand zoals in Figma */
}

/* Spiegel de rechter afbeelding voor het PDF effect */
.hero .side-shape.right img {
    transform: scaleX(-1); /* Spiegel de afbeelding horizontaal */
    object-position: left center; /* Omdat hij gespiegeld is, is dit de buitenkant */
    margin-right: -370px;   /* Schuif hem ook hier een beetje over de rand */
}

/* De container voor de tekst (Titel en Byline) */
.hero-inner {
    position: relative;
    z-index: 10;
    display: flex;
    flex-direction: column;
    align-items: center; 
    margin-top: -50px; 
}

/* De Side Shapes als PNG's */
.side-shape {
    height: 100%;
    background-size: contain;
    background-repeat: no-repeat;
    z-index: 2;
}

.side-shape.left {
    left: 0;
    background-image: url('../images/tekengebied-7-links.png');
    background-position: left;
}

.side-shape.right {
    right: 0;
    background-image: url('../images/tekengebied-7-rechts.png');
    background-position: right;
}

/* De container houdt de byline gecentreerd boven de titel */
.hero-inner {
    position: relative;
    z-index: 10;
    display: flex;
    flex-direction: column;
    align-items: center; /* Alles in het midden */
    margin-top: -0px; /* Trekt de titel iets omhoog weg van de footer */
}

.hero .byline {
    width: 100%;
    text-align: center;
    margin-bottom: -10px; /* Trekt de byline dichter naar de titel zoals in PDF */
    font-family: 'Figtree', sans-serif;
    font-weight: 400;
    font-size: 24px;     
    color: var(--text);
    text-transform: none;
    letter-spacing: 0.02em;
}

.hero .byline .name {
    font-family: 'Satoshi', sans-serif;
    font-weight: 900; /* Satoshi Black */
    font-size: 24px;
    
    /* Figma: letter spacing -5 (ongeveer -1.2px) */
    letter-spacing: -1.2px; 

    
    /* Je naam moet wel in hoofdletters */
    text-transform: uppercase;
}

/* De Grote Titel (PORTFOLIO 2025) */
.hero .hero-title {
    font-family: 'Satoshi', sans-serif;
    font-weight: 900;
    color: var(--accent);
    font-size: clamp(100px, 12vw, 180px); /* Schalende grootte */
    line-height: 0.8;
    letter-spacing: -0.06em; /* Lekker strak tegen elkaar */
    display: flex;
    align-items: flex-end; /* Getallen staan onderaan uitgelijnd */
    gap: 20px;
}

/* Zorgt dat PORT en FOLIO onder elkaar staan */
.title-words {
    display: flex;
    flex-direction: column;
    text-align: left;
}

/* Zorgt dat 20 en 25 onder elkaar staan */
.title-numbers {
    display: flex;
    flex-direction: column;
    text-align: left;
    padding-top: 10px; /* Optische uitlijning */
}


.hero .hero-title span {
    display: block;
}

/* Container voor de verticale tekst */
.vertical-text-wrapper {
    position: absolute;
    left: 50%;
    /* Verhoog -465px naar bijv. -480px als hij verder van de P af moet staan */
    transform: translate(-465px, -50%); 
    top: 46%; 
    display: flex;
    flex-direction: row; 
    gap: 8px; /* Ruimte tussen de twee verticale kolommen */
    z-index: 15;
    pointer-events: none;
    
}

.vertical-text {
    font-family: 'Satoshi', sans-serif;
    font-weight: 700; /* Satoshi Bold */
    font-size: 55px; 
    color: var(--accent);
    text-transform: uppercase;
    
    /* Verticale instellingen */
    writing-mode: vertical-rl;
    transform: rotate(180deg);
    
    line-height: 0.85; 
    letter-spacing: -0.02em;
    white-space: nowrap;
    
    /* Zorg dat de tekst binnen zijn eigen blok ook bovenin (visueel onderin) begint */
    text-align: left; 
}

.vertical-text:first-child,
.vertical-text:last-child {
    margin: 0;
}

/* Zorg dat de titel niet overlapt op kleinere schermen */
@media (max-width: 1300px) {
    .vertical-text-wrapper {
        margin-left: -450px;
        transform: translateY(-50%) scale(0.8); /* Maakt het iets kleiner als het scherm krap wordt */
    }
}

/* Verberg op mobiel om chaos te voorkomen */
@media (max-width: 900px) {
    .vertical-text-wrapper {
        display: none;
    }
}

/* De footer moet echt tegen de onderkant aan */
.hero .footer-line {
    position: absolute;
    bottom: 32px; /* Iets omhoog van de rand, zoals in Figma */
    left: 111px;
    right: 111px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    z-index: 20;
}

/* De horizontale lijn die van het logo naar de tekst loopt */
.hero .footer-line::before {
    content: "";
    position: absolute;
    left: 100px; /* Begint net na het logo */
    right: 220px; /* Eindigt voor de copyright tekst */
    height: 2px; /* Iets dikker gemaakt zodat de ronding opvalt */
    background-color: #280043;
    border-radius: 2px; /* Maakt de uiteinden van de lijn rond */
}

/* Het ronde logo */
.hero .footer-line .logo-small {
    width: 80px; 
    height: 80px;
    border: 5px solid #280043; /* Stroke weight 5 uit Figma */
    border-radius: 50%; 
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    z-index: 2;
}

.hero .footer-line .logo-small img {
    width: 140%;
    height: 140%;
    object-fit: contain;
}

/* De copyright tekst (nu strak rechts) */
.hero .footer-line .copyright {
    font-family: 'Figtree', sans-serif;
    font-size: 11px;
    font-weight: 400;
    color: #280043;
    text-transform: none;
    background-color: var(--bg); /* Zorgt dat de lijn niet door de tekst loopt */
    padding-left: 20px;
    z-index: 2;
}

/* --- WORK PAGINA STYLES --- */

/* Basis instellingen voor de Work pagina */

body:has(.container) {
    overflow-y: auto;
}

.work-page-wrapper {
    height: 100vh; /* Verander flex: 1 naar vaste hoogte */
    display: flex;
    flex-direction: column;
    background-color: var(--bg);
    padding-top: 100px; /* Matchen met header hoogte */
    position: relative;
    width: 100%;
    overflow: hidden; /* Dit verwijdert de scrollbalk */
}

.work-page-wrapper .header {
    position: absolute; /* Zorgt dat hij niet over de content heen zweeft op subpagina's */
    background: transparent;
}

/* Titel "Portfolio - Work" */
.work-header-text {
    width: 100%;
    max-width: 1250px;
    margin: 20px auto 0 auto; /* Minder marge boven/onder */
    padding: 0 80px;
}

.work-header-text h1 {
    font-family: 'Figtree', sans-serif;
    font-weight: 400;
    font-size: 32px;
    color: var(--text);
}

/* Het gebied tussen titel en footer */
.work-content-area {
    flex: 1; 
    display: flex;
    flex-direction: column;   /* Zorgt dat de titel en grid onder elkaar kunnen */
    align-items: center;
    justify-content: center;  /* Centreert de groep tegels verticaal */
    position: relative;
    width: 100%;
    min-height: 60vh;         /* Geeft de pagina body */
}

/* De Tegels */
.work-tiles-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center; /* Centreert de tegels horizontaal */
    align-items: center;     /* Zorgt dat ze verticaal op één lijn blijven */
    gap: 25px;
    width: 100%;
    align-content: 1250px;
    margin: 0 auto;          /* Extra veiligheid voor centrering */
    padding: 0 80px;
    z-index: 10;
}

.work-tile {
    flex: 0 0 350px;        /* '0 0' zorgt dat ze exact 350px blijven en niet vervormen */
    height: 350px;          /* Vaste hoogte in plaats van aspect-ratio werkt hier stabieler */
    background-color: var(--accent);
    border-radius: 65px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    padding: 30px;          /* Iets minder padding geeft meer ruimte voor lange tekst */
    transition: transform 0.3s ease;
}

.work-tile:hover {
    transform: scale(1.03);
}

.work-tile span {
    font-family: 'Satoshi', sans-serif;
    font-weight: 900;
    font-size: 28px;        /* Iets kleiner zodat Van Doren altijd past */
    color: #F5E7D7;
    text-align: center;
    text-transform: uppercase;
    line-height: 1.1;       /* Iets meer ademruimte tussen regels */
    word-wrap: break-word;
}
/* De Shaders (Paarse vormen aan de zijkant) */
.work-content-area .shader {
    position: absolute;
    top: 60%;
    transform: translateY(-50%);
    width: 380px;
    z-index: 1;
    pointer-events: none; /* Zorgt dat ze niet in de weg zitten bij het klikken */
}

.work-content-area .shader-left {
    left: -580px;
}

.work-content-area .shader-right {
    right: -580px;
    transform: translateY(-50%) scaleX(-1); /* Spiegelen voor rechts */
}

/* DE SPECIFIEKE WORK FOOTER (Zonder de homepagina aan te tasten) */
.work-footer {
    width: 100%;
    max-width: 1250px;
    margin: 0 auto;
    padding: 20px 80px 40px 80px; /* Minder padding boven, meer onder voor balans */
    display: flex;
    align-items: center;
    justify-content: space-between;
}

/* De lijn die precies tussen de twee logo's loopt */
.work-footer::before {
    content: "";
    height: 2px;
    background-color: #280043;
    flex-grow: 1;
    margin: 0 20px;
    order: 2;
}

/* De ronde logo-containers */
.footer-icon {
    width: 80px;
    height: 80px;
    border: 5px solid #280043;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

/* Linker logo krijgt order 1, rechter logo order 3 */
.footer-icon:first-child { order: 1; }
.footer-icon:last-child { order: 3; }

.footer-icon img {
    width: 140%;
    height: auto;
}

/* Verberg de copyright tekst op de work pagina als je exact het design wilt volgen */
.work-footer .copyright-text {
    display: none; 
}

/* Main Container using CSS Grid */
.container {
    margin-top: 140px;
    padding: 0 105px 105px;
    display: grid;
    /* Behoud de twee kolommen */
    grid-template-columns: 600px 1fr; 
    column-gap: 20px;
    row-gap: 40px; 
    max-width: 1400px;
    margin-left: auto;
    margin-right: auto;
    align-items: start;
}
/* RIJ 1: Foto en About Me */
.profile-image {
    grid-column: 1;
    grid-row: 1;
}

.about-section {
    grid-column: 2;
    grid-row: 1;
}

/* RIJ 2: Social Media en Education nu op dezelfde hoogte */
.contact{
    grid-column: 1;
    grid-row: 2; /* Was al 2 */
}

.education-section {
    grid-column: 2;
    grid-row: 2; /* VERANDERD van 3 naar 2 */
}

/* RIJ 3: Technical Skills en Experience */
.technical-skills {
    grid-column: 1;
    grid-row: 3;
}

.experience-section {
    grid-column: 2;
    grid-row: 3;
}

/* RIJ 4: Languages */
.languages-section {
    grid-column: 1;
    grid-row: 4;
}

/* Sidebar (Left Column) */
.sidebar, .main-content {
    display: flex;
    flex-direction: column;
    gap: 60px; /* Ruimte tussen de blokken (Social Media -> Skills) */
}


.profile-image {
    width: 85%;
    height: 500px;
    object-fit: cover;
    border-radius: 14px;
    box-shadow: 0 18px 40px rgba(16,12,12,0.12);
    margin-bottom: 20px;
    background: linear-gradient(180deg, rgba(157,40,235,0.06), transparent);
}

/* ---  ABOUT ME STYLES --- */

/* Zorgt dat de About pagina kan scrollen als de content langer is dan het scherm */
body:has(.container) {
    overflow-y: auto;
}


/* Stijl voor de skill blokjes (Ps, Ai, etc) */
.skill-icon-box {
    width: 68px;
    height: 68px;
    background-color: #1a1220;
    color: #f5e7d7;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    font-family: 'Satoshi', sans-serif;
    font-weight: 900;
    font-size: 24px;
}

/* Titels van de secties (ABOUT ME, EDUCATION, etc.) */
.section-title {
    position: relative;
    display: inline-flex;
    align-items: center;
    color: #9D28EB;
    font-family: 'Satoshi', sans-serif;
    font-weight: 900;
    font-size: 40px;
    letter-spacing: -1px;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.section-title::after {
    content: ""; 
    display: inline-block;
    width: 200px;         /* Breedte uit Figma */
    height: 190px;        /* Hoogte uit Figma */
    background-image: url('../images/1x/Tekengebied 6.png');
    background-size: contain;
    background-repeat: no-repeat;
    margin-left: 390px;    /* Ruimte tussen tekst en vorm */
    position: absolute; /* De vorm zweeft nu en duwt de tekst niet weg */
    z-index: -1;      /* Achter de tekst plaatsen */

}

.sidebar .section-title {
    display: flex;
    align-items: center;
    color: #9D28EB;
    font-family: 'Satoshi', sans-serif;
    font-weight: 900;
    font-size: 40px;
    letter-spacing: -2px;
    text-transform: uppercase;
    margin-bottom: 25px; /* Verkleind van 25px naar 5px om tekst omhoog te halen */
}

.sidebar .section-title::after {
    content: ""; 
    display: inline-block;
    width: 200px;         /* Breedte uit Figma */
    height: 190px;        /* Hoogte uit Figma */
    background-image: url('../images/1x/Tekengebied 6.png');
    background-size: contain;
    background-repeat: no-repeat;
    margin-left: 390px;    /* Ruimte tussen tekst en vorm */
    position: absolute; /* De vorm zweeft nu en duwt de tekst niet weg */
}

/* De hoofdtekst */
.about-text {
    font-family: 'Figtree', sans-serif;
    font-weight: 400;
    font-size: 21px;
    line-height: 1.3;
    color: #000000;
    max-width: 800px;
    margin-bottom: 30px;
    text-align: left;
    margin-top: 20px; /* Iets dichter bij de titel brengen */
}


/* De dunne lijn onder About Me */
.divider {
    border: none;
    height: 2px;
    background-color: #9D28EB;
    width: 130%;
    margin-bottom: 20px;
    margin-top: -10px; /* Iets dichter bij de tekst brengen */
}

/* Timeline/Lijst structuur */
.timeline-container {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.timeline-item {
    display: grid;
    grid-template-columns: 120px 1fr; /* Exacte breedte voor de jaartallen */
    gap: 20px;
    margin-bottom: 20px;
    align-items: start;
}

.timeline-date {
    font-weight: 400;
    font-size: 21px;
    line-height: normal; /* Zelfde line-height als de titel voor perfecte uitlijning */
}

.timeline-title {
  font-family: 'Figtree', sans-serif; /* Lettertype familie */
  font-weight: 700;                  /* Figma 'Bold' komt overeen met 700 */
  font-size: 21px;                   /* Grootte in pixels */
  line-height: normal;               /* Figma 'Auto' line height */
  letter-spacing: 0;                 /* Figma '0%' letter spacing */
  color: #000000;                    /* Kleurcode uit Figma */
  text-align: left;                  /* Uitlijning aan de linkerkant */

}

.timeline-title, .language-name {
    font-family: 'Figtree', sans-serif;
    font-weight: 700; /* Bold */
    font-size: 24px; /* Gelijk aan Figma */
    color: #000000;
}

.timeline-sub {
    display: block;
    font-family: 'Figtree', sans-serif;
    font-weight: 400;
    font-size: 21px;
    color: var(--text);
    margin-top: -4px;
}

/* Sidebar Info items (Datum, Email, LinkedIn) */
.info-item {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
}

.info-item .icon-wrapper {
    width: 24px; /* Iets kleiner voor betere balans */
    height: 24px;
    display: flex;
    justify-content: center;
}

.info-text {
    font-family: 'Figtree', sans-serif;
    font-weight: 400;
    font-size: 21px;
    line-height: 1.4;
}


/* Skills Grid */
.skills-icons {
    display: flex;
    gap: 12px;
}

.skill-icon-box {
    width: 65px;
    height: 65px;
    background-color: #1a1220; /* Donkerpaars/zwart uit ontwerp */
    color: #f5e7d7;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 15px; /* Rondere hoeken volgens image_c31780 */
    font-family: 'Satoshi', sans-serif;
    font-weight: 900;
    font-size: 35px;
}

/* Language Grid */

.language-level {
    font-family: 'Figtree', sans-serif;
    font-weight: 400;
    font-size: 21px;
    line-height: normal;
    color: var(--text);
}
.language-item {
    display: grid;
    grid-template-columns: 120px 1fr; /* Exact gelijk aan .timeline-item */
    gap: 20px;
    margin-bottom: 15px;
    align-items: start;
}

.language-name {
    font-family: 'Figtree', sans-serif;
    font-weight: 700; /* Bold */
    font-size: 21px; /* Aangepast naar 21px voor consistentie */
    color: #000000;
}

/* Extra witruimte tussen secties voor betere leesbaarheid */
.main-content section {
    margin-bottom: 20px;
}

/* De footer onderaan de About pagina */
.about-footer {
    grid-column: 1 / -1; 
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 80px; 
    padding: 20px 0 60px 0;
}

.about-footer::before {
    content: "";
    height: 2px;
    background-color: #280043;
    flex-grow: 1;
    margin: 0 30px; /* Ruimte tussen logo's en lijn */
    order: 2; /* Zorgt dat de lijn in het midden komt te staan */
}

/* Zorg dat het eerste icoon (links) geen extra marge heeft */
.about-footer .footer-icon:first-child { 
    order: 1; 
}

.about-footer .footer-icon:last-child { 
    order: 3; 
}

/* De lijn die precies tussen de twee logo's loopt */
.footer-line-separator {
    display: none;
}

.about-footer .footer-icon {
    width: 80px;
    height: 80px;
    border: 5px solid #280043;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.about-footer .footer-icon img {
    width: 140%;
    height: auto;
    object-fit: contain;
}

/* --- CONTACT PAGINA LAYOUT --- */
.contact-page-wrapper {
    min-height: 100vh;
    padding: 140px 80px 40px 80px; /* Bovenruimte voor header */
    display: flex;
    flex-direction: column;
    align-items: center;
    background-color: var(--bg);
}

.contact-container {
    display: grid;
    grid-template-columns: 1fr 1fr; /* Twee gelijke kolommen */
    gap: 60px;
    max-width: 1200px;
    width: 100%;
    flex-grow: 1; /* Neemt beschikbare ruimte in boven de footer */
    align-items: start;
}

/* De Foto links */
.contact-portrait-img {
    width: 100%;
    height: auto;
    max-height: 700px;
    object-fit: cover;
    border-radius: 20px; /* Subtiele ronding zoals in je screenshot */
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

/* Het Formulier rechts */
.contact-form-side {
    display: flex;
    flex-direction: column;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.contact-form label {
    font-family: 'Satoshi', sans-serif;
    font-weight: 900;
    font-size: 26px;
    /* De kleur uit je ontwerp: donkerpaars/zwart */
    color: #280043; 
    letter-spacing: -1px;
    text-transform: uppercase;
    margin-bottom: 8px;
}

.contact-form input, 
.contact-form textarea {
    background-color: #DDD1C7; /* De beige/grijze kleur uit je screenshot */
    border: none;
    padding: 15px;
    border-radius: 8px;
    font-family: 'Figtree', sans-serif;
    font-size: 18px;
    color:  #280043; /* Donkerpaars/zwart voor leesbaarheid */
    box-shadow: inset 0 2px 4px rgba(0,0,0,0.1);

}

.contact-form textarea {
    min-height: 200px;
    resize: none;
}

/* De Paarse Submit knop */
.btn-submit {
    background-color: var(--accent); /* De felle paarse kleur */
    color: #F5E7D7;
    border: none;
    padding: 12px 30px;
    border-radius: 8px;
    font-family: 'Satoshi', sans-serif;
    font-weight: 900;
    font-size: 18px;
    cursor: pointer;
    width: fit-content;
    margin-top: 10px;
    transition: opacity 0.2s;
}

.btn-submit:hover {
    opacity: 0.80;
}

/* --- DE FOOTER MET DE LIJN --- */
.page-footer-line {
    width: 100%;
    max-width: 1200px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 60px;
    padding-bottom: 20px;
}

.page-footer-line::before {
    content: "";
    height: 2px;
    background-color: #280043;
    flex-grow: 1;
    margin: 0 30px;
    order: 2;
}

.page-footer-line .footer-icon {
    width: 80px;
    height: 80px;
    border: 5px solid #280043;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.page-footer-line .footer-icon:first-child { order: 1; }
.page-footer-line .footer-icon:last-child { order: 3; }

.page-footer-line .footer-icon img {
    width: 130%;
    height: auto;
}

/* Mobiele weergave */
@media (max-width: 900px) {
    .contact-container {
        grid-template-columns: 1fr;
    }
    .contact-page-wrapper {
        padding: 120px 20px 20px 20px;
    }
}

/* Layout voor de projectpagina */


.project-wrapper {
    padding-top: 140px;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.project-container {
    display: grid;
    /* Linkerkant 40%, Rechterkant 60% voor de juiste balans */
    grid-template-columns: 0.8fr 1.2fr; 
    gap: 60px; /* Iets minder gap zorgt voor meer ruimte voor de visuals */
    max-width: 1200px; /* Iets breder voor die 'full' look */
    width: 95%;
    margin: 0 auto;
    align-items: start;
}

/* Linkerkant styles */
.project-breadcrumb {
    font-family: 'Figtree', sans-serif;
    font-size: 18px;
    color: #1a1220;
    margin-bottom: 20px;
}

.project-main-title {
    font-family: 'Satoshi', sans-serif;
    font-weight: 900; /* Black */
    font-size: 40px;
    color: #280043;
    letter-spacing: -0.05em; /* De -5% letter spacing uit Figma */
    line-height: 1.2;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.project-description {
    font-family: 'Figtree', sans-serif;
    font-size: 18px;
    line-height: 1.5;
    margin-bottom: 40px;
}

.project-meta {
    font-family: 'Figtree', sans-serif;
    font-size: 18px;
    line-height: 1.6;
    margin-bottom: 40px;
}

.btn-more {
    background-color: #9D28EB;
    color: #F5E7D7;
    padding: 10px 25px;
    border-radius: 8px;
    text-decoration: none;
    font-family: 'Satoshi', sans-serif;
    font-weight: 900;
    display: inline-block;
}

.btn-more:hover {
    opacity: 0.80;
}
/* Rechterkant: De Visuele Grid */
.visuals-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: 200px 150px 176px; 
    gap: 15px;
    width: 100%;
}

.visual-item {
    border-radius: 20px;
    overflow: hidden;
}

.visual-item img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Zorgt dat afbeeldingen de box vullen zonder vervorming */
}

.large-logo {
    grid-column: 1 / 3;
    grid-row: 1 / 2;
    background-color: #9D28EB; 
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 30px;
    padding: 30px;
}

/* Zorgt dat het logo niet het hele vlak vult maar gecentreerd staat */
.large-logo img { 
    width: 200% !important; /* Terug naar een normale grootte */
    height: auto !important; 
    object-fit: contain !important; 
}

.color-palette {
    grid-column: 3 / 5;
    grid-row: 1 / 2;
    display: flex;
    gap: 10px;
}

/* Zorg dat de andere dots dezelfde vorm hebben */
.color-dot {
    flex: 1;
    height: 100%; /* Vult nu het volledige vak zoals in Figma */
    border-radius: 30px; 
    border: 1px solid #000000;
}
.color-dot.white { 
    background-color: #F5E7D7; /* Exacte fill uit Figma */}
.color-dot.purple { background-color: #9d28eb; }
.color-dot.dark-purple { background-color: #280043; }
.color-dot.black { background-color: #000000; }

/* Patroon (midden links) */
.pattern-box {
    grid-column: 1 / 3;
    grid-row: 2 / 3;
    background-color: #9D28EB; /* Paarse basis */
}

/* Mockup (rechts verticaal) */
.mockup-box {
    grid-column: 3 / 5;
    grid-row: 2 / 4;
    border-radius: 30px;
    overflow: hidden;
}

.mockup-box img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Zorgt voor vulling zonder vervorming */
}

/* Klein paars logo kaartje (linksonder) */
.small-logo-card {
    grid-column: 1 / 2;
    grid-row: 3 / 4;
    background-color: #9D28EB;
    border-radius: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.small-logo-card img {
    width: 100%;
    height: auto;
    object-fit: contain;
}

/* Cirkels (naast het kleine kaartje) */
.circle-logos {
    grid-column: 2 / 3;
    grid-row: 3 / 4;
    background-color: #280043; /* De donkere kleur uit je Figma info (image_2214e1.png) */
    border-radius: 30px;      /* De corner radius van 30 uit Figma */
    display: flex;
    align-items: center;
    justify-content: center;
}

.circle-logos img {
    width: 900%;
    height: 100%;
    /* 'object-fit: contain' zorgt dat je logo's niet vervormen */
    object-fit: contain; 
}

/* --- COURSE 2 MORE: VERTICAL FLOW --- */


.more-page {
    background-color: #f5e7d7;
    color: #000;

}

.vertical-scroll-layout {
    width: 100%;
    max-width: 100% !important; /* Verwijder de 1200px beperking */
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    /* align-items: center; <-- VERWIJDER DEZE OF ZET OP STRETCH */
    align-items: stretch; 
}


.grid-box.span-2.purple-bg {
    background-color: #9D28EB; /* De paarse kleur uit je branding */
    display: flex;
    justify-content: center;
    align-items: center;
}

.grid-box.span-2.purple-bg img {
    width: 110%; /* Of 'contain', afhankelijk van hoe groot het logo moet zijn */
    height: auto;
    object-fit: contain;
}

.project-more-title {
    font-family: 'Satoshi', sans-serif;
    font-weight: 900;
    font-size: 64px;
    color: #280043;
    letter-spacing: -0.05em;
    text-transform: uppercase;
    margin-bottom: 60px;
    line-height: 52px;
    margin-top: 60px;
    align-items: center;
    text-align: center;
}

.project-more-description {
    font-family: 'Figtree', sans-serif;
    font-size: 18px;
    line-height: 1.6; /* Geeft meer rust tussen de regels */
    color: #280043;
    text-align: center;
    margin-bottom: 40px;
    margin-left: 125px;
    margin-right: 125px;
}

/* Styling voor de 'Key Marks' lijstjes */
.project-more-description strong {
    font-family: 'Figtree', sans-serif;
    font-size: 18px;
    line-height: 1.6; /* Geeft meer rust tussen de regels */
    color: #280043;
    text-align: center;
    margin-bottom: 40px;

}


/* Container voor het logo */
.grid-box.span-2.purple-logo {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto 60px auto; /* Centreert de container en geeft ruimte onderaan */
    width: 100%; /* Neemt volledige breedte van de layout */
    max-width: 1000px; /* VERANDER DIT: Hoe kleiner dit getal, hoe kleiner je logo */
}

/* De afbeelding zelf binnen de container */
.grid-box.purple-logo img {
    width: 100%; /* Vult de max-width van de container hierboven */
    height: auto;
    object-fit: contain;
}

.grid-box.span-2.purple-bg.details {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto 60px auto; /* Centreert de container en geeft ruimte onderaan */
    width: 100%; /* Neemt volledige breedte van de layout */
    max-width: 10000px; /* VERANDER DIT: Hoe kleiner dit getal, hoe kleiner je logo */
}

.grid-box.purple-bg.details img {
    width: 100%; /* Vult de max-width van de container hierboven */
    height: auto;
    object-fit: contain;
}
/* --- EQUAL 3x2 GRID --- */

.equal-grid-section {
    width: 100%;       /* Neemt de volledige breedte van de parent */
    margin: 0;         /* Verwijdert alle witruimte boven/onder/naast de sectie */
    padding: 0;        /* Verwijdert de padding aan de zijkanten */
}

.equal-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;            /* Zorgt dat de vakjes elkaar letterlijk raken */
}
.grid-item {
    aspect-ratio: 1 / 1; /* Maakt het een perfect vierkant */
    display: flex;
    justify-content: center;
    align-items: center;
}

.grid-item img {
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
    object-fit: contain; /* Zorgt dat het logo niet vervormt en gecentreerd blijft */
}
/* Kleur-opties voor de vakken */
.purple-bg { background-color: #9D28EB; }
.dark-bg { background-color: #280043; }
.white-bg { background-color: #F5E7D7; }
.black-bg { background-color: #000000; }

.vertical-scroll-layout {
    max-width: 100% !important; /* Forceert de layout naar de volledige breedte */
    padding-left: 0 !important;
    padding-right: 0 !important;
}

/* --- FULL WIDTH MOCKUP --- */
.full-width-mockup {
    width: 100%;
    margin: 0;
    padding: 0;
    line-height: 0; /* Verwijdert wit kiertje onder de foto */
}

.full-width-mockup img {
    width: 100%;
    height: auto;
    display: block;
}

/* --- SPECIFIEKE FOOTER VOOR MORE-PAGE --- */

.thanks-footer {
    background-color: #9D28EB; /* De paarse kleur uit je ontwerp */
    color: #000;
    padding: 100px 20px 60px 20px;
    text-align: center;
    width: 100%;
    box-sizing: border-box;
    margin-top: 0; /* Sluit direct aan op de mockup */
}

.thanks-content h1 {
    font-family: 'Satoshi', sans-serif;
    font-weight: 900;
    font-size: 64px; /* Lekker groot zoals in je design */
    margin-bottom: 0;
    text-transform: none;
}

.see-you {
    font-family: 'Figtree', sans-serif;
    font-size: 40px;
    margin-top: 0px;
    margin-bottom: 80px;
}

/* De hoofdcontainer van de onderste footer-sectie */
.footer-more-page {
    position: relative;    /* Nodig om het logo links te kunnen plakken */
    display: flex;
    flex-direction: column; 
    align-items: center;   /* Dit centreert de credits tekst exact in het midden */
    justify-content: center; 
    max-width: 1200px; 
    margin: 0 auto; 
    min-height: 150px;     /* Zorgt voor genoeg ruimte voor het logo */
}

.footer-bottom {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.footer-logo {
    position: absolute;
    left: 20px;            /* Afstand van de linkerkant */
    top: 50%;
    transform: translateY(-50%); /* Zorgt dat het logo verticaal in het midden van de lijn staat */
}

.footer-logo img {
    height: 150px; /* Pas aan naar wens */
    width: auto;
    transition: transform 0.3s ease;  
}

.footer-logo:hover img {
    transform: scale(1.1); /* Subtiel effect bij hoveren */
}

.footer-credits {
    font-family: 'Figtree', sans-serif;
    font-size: 14px;
    line-height: 1.4;
    text-align: center;
    color: #000;
}
.footer-byline {
    font-family: 'Figtree', sans-serif;
    margin-bottom: 5px;
    text-align: center;
}
.footer-credits .brand-name {
    font-family: 'Satoshi', sans-serif;
    font-weight: 900; 
    font-size: 14px;  
    display: inline;   /* VERANDERD: zorgt dat het op dezelfde regel blijft */
    margin-left: 0px;  /* Ruimte tussen 'By' en je naam */
    text-transform: uppercase;
    letter-spacing: -0.05em; /* De -5% letter spacing uit Figma */
    text-align: center;
}

/* Zorg dat de hoofdcontainer geen witruimte onderaan overlaat */
.vertical-scroll-layout {
    margin-bottom: 0 !important;
    padding-bottom: 0 !important;
}
