/* --- BASIS INSTELLINGEN --- */
:root {
    --bg-color: #f5f2ed;
    --text-color: #000000;
    --accent-color: #808080;
    --font-serif: "Times New Roman", Times, serif;
    --font-sans: Helvetica, Arial, sans-serif;
    --section-spacing: 65vh
}

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

html {
    scroll-behavior: smooth;
}

body {
    background-color: var(--bg-color);
    color: var(--text-color);
    font-family: var(--font-sans);
    line-height: 1.4;
    overflow-x: hidden;
}

a {
    color: inherit;
    text-decoration: none;
}

/* --- NAVIGATIE & FOOTER --- */
nav, footer {
    position: fixed;
    width: 100%;
    left: 0;
    z-index: 1000;
    background-color: rgba(245, 242, 237, 0.85);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
}

nav {
    top: 0;
    padding: 30px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-weight: bold;
    font-size: 1.5rem;
}

.nav-links {
    display: flex;
    gap: 30px;
}

.nav-links a {
    font-size: 1rem;
    font-weight: normal;
}

footer {
    bottom: 0;
    padding: 20px;
    display: flex;
    justify-content: center;
}

footer p {
    font-size: 1rem;
    margin: 0;
    opacity: 0.8;
}

/* --- ALGEMENE LAYOUT --- */
.fullscreen-section {
    min-height: var(--section-spacing);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 40px;
}

.content-wrapper {
    max-width: 1100px;
    width: 100%;
    display: flex;
    flex-direction: column;
}

.content-wrapper:not(.no-bg) {
    background-color: var(--bg-color);
}

.edge-content  {
  background-color: transparent;
}

/* --- DEEL 1: ELEVATING ZIN --- */
.elevating-zin {
  margin-top: calc((100vh - var(--section-spacing))/2);
}
.elevating-zin h1 {
    font-family: var(--font-serif);
    font-size: clamp(2rem, 5vw, 4rem);
    font-weight: 400;
    line-height: 1.2;
    text-align: center;
    margin-bottom: 20px;
}

.elevating-zin .subtitle {
    font-size: clamp(1rem, 2vw, 1.375rem);
    text-align: center;
    opacity: 0.7;
}

/* --- DEEL 2: FREELANCE STUK --- */

.freelance-stuk .highlight-text {
    font-style: italic;
    font-size: calc(100% + 1px); /* Dit maakt het exact 1px groter dan de tekst eromheen */
    display: inline;
}
.freelance-stuk p {
    font-size: clamp(1rem, 2vw, 1.125rem);
    text-align: left; 
    align-self: flex-end; 
    max-width: 80%; 
    line-height: 1.5;
    margin-bottom: 40px;
}

/* --- DEEL 3: SERVICES --- */
.services-blok h2 { 
    font-size: 1.375rem; 
    font-weight: bold;
    color: var(--accent-color); 
    margin-bottom: 25px;
}

.services-blok .service-item h3 {
    font-size: 1.125rem;
    color: var(--text-color);
    border-top: 1px solid #000;
    padding-top: 20px;
    margin-bottom: 15px;
}

.services-blok .service-item p {
    font-size: 1.125rem;
    text-align: left;
    line-height: 1.5;
}

.service-list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 60px;
}


/* --- DEEL 4: REPRESENTED TALENT (Correcte witruimte) --- */
.represented-talent h2 { 
    font-size: 1.375rem; 
    font-weight: bold;
    color: var(--accent-color);
    margin-bottom: 0; 
}

.represented-talent .talent-list {
    list-style: none;
    padding-top: 25px;
}

.represented-talent .talent-list li {
    font-family: var(--font-sans);
    font-size: 1rem;
    font-style: italic;
    line-height: 1.4;
    margin-bottom: 25px; /* De unanieme beat */
}

.represented-talent .view-link {
    font-family: var(--font-sans);
    font-size: 1.125rem; 
    text-decoration: underline;
    opacity: 0.5; /* De link mag wel subtieler blijven zoals in je voorbeeld */
    font-style: normal;
    display: inline-block;
}

/* --- DEEL 5: LET'S PRODUCE BLOK (Gecentreerd) --- */
.lets-produce-blok {
    text-align: center;
    margin-bottom: calc((100vh - var(--section-spacing))/2);
}

.lets-produce-blok .contact-content p {
    font-size: 20px;
    margin-bottom: 10px;
    margin: 0 auto;
}

.lets-produce-blok h2 { 
    font-size: clamp(1.5rem, 4vw, 2.5);
    margin-bottom: 30px; 
    font-weight: bold;
}

.lets-produce-blok p.intro-text {
    font-size: 20px;
    line-height: 1.6;
    text-align: center;
}

.freelance-stuk .highlight-text {
    font-style: italic;
    font-size: calc(100%);
    font-weight: 590;
    letter-spacing: 2px;
    display: inline;
}

/* --- DE INTERACTIEVE PIJL --- */
#arrow-path {
    position: fixed; 
    top: 65vh; /* Startpositie: onder de eerste zin */
    left: 50%;
    transform: translateX(-50%);
    width: 30px; /* Breedte gefixeerd */
    height: 60px; /* Hoogte gefixeerd */
    /*z-index: 5;  Makes it go begin blocks somehow*/ 
    pointer-events: none;
    opacity: 0.4; /*0.4*/
    display: flex;
    justify-content: center;
    align-items: center;
}

#arrow-svg {
    width: 100%;
    height: 100%;
}

#path {
    stroke: #000000;
    stroke-width: 2;
    fill: none;
    stroke-linecap: round;
    stroke-linejoin: round;
}


/* --- PROJECTS FEED LAYOUT --- */
.projects-feed {
    padding-top: 150px; 
    padding-bottom: 200px;
}

.project-entry {
    margin-bottom: 150px; 
    padding-left: 40px;
}

.project-header-info {
    display: flex;
    flex-direction: column;
    margin-bottom: 40px;
}

.project-header-info .talent-name {
    font-family: var(--font-sans); /* Zonder schreef */
    font-size: 22px; /* Iets kleiner dan het logo (24px) */
    font-style: italic; /* Cursief, zoals gevraagd */
    font-weight: normal; /* Niet meer bold, voor een strakkere en modernere look */
    text-transform: normal;
    letter-spacing: 1px;
    margin-bottom: 4px; /* Kleine ademruimte tussen de naam en de projecttitel */
}

.project-header-info .project-title {
    font-family: var(--font-sans); /* Zelfde lettertype als de naam */
    font-size: 14px; /* Duidelijk een stapje kleiner dan de talent naam */
    font-style: normal; /* Recht, niet italic */
    font-weight: normal;
    opacity: 0.6; /* Behoudt die mooie subtiele grijze look */
    text-transform: uppercase;
    letter-spacing: 1px;
}


/* De Horizontale Galerij */
.project-gallery {
    display: flex;
    align-items: center;
    overflow-x: auto; 
    gap: 160px; /* NOG MEER RUIMTE: Verhoogd naar 160px voor extra spatie rondom de pijlen */
    padding-right: 40px;
    padding-bottom: 10px;
    scrollbar-width: auto;
    scrollbar-color: var(--text-color) var(--bg-color);
}

.image-wrapper {
    flex-shrink: 0; 
    height: 70vh;
    z-index: 50;
}

.image-wrapper img,
.image-wrapper video {
    height: 100%;
    width: auto;
    display: block;
    object-fit: contain;
}

/* Gecentreerde SVG pijlen tussen de beelden */
.gallery-arrow {
    opacity: 0.4;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    width: 70px;
    align-self: end;
}

/* HET ZWEEF-EFFECT VOOR DE HORIZONTALE PIJLEN */
.gallery-arrow svg {
    width: 100%;
    height: auto;
    animation: zweef-horizontaal 3s ease-in-out infinite; /* Zorgt voor de continue beweging */
}

.gallery-mobile-arrow {
  display: none;
  flex-shrink: 0;
  width: 70px;
}

/* Dit is de animatie die de pijl zachtjes naar rechts en terug laat glijden */
@keyframes zweef-horizontaal {
    0% { transform: translateX(0px); }
    50% { transform: translateX(25px); } /* Schuift 25 pixels op */
    100% { transform: translateX(0px); }
}

.gallery-arrow path, .gallery-mobile-arrow path {
    stroke: #000000;
    stroke-width: 1.5; 
    fill: none;
}

/* Specifieke aanpassing voor de vallende pijl op de projectenpagina */
.projects-page #arrow-path {
    right: 20px; 
    opacity: 0.2; 
}
/* --- CONTACT PAGE LAYOUT --- */
.contact-container {
    padding-top: 150px;
    padding-bottom: 150px;
    display: flex;
    justify-content: center; /* Zorgt dat het formulier mooi in het midden staat */
}

.contact-form-section {
    width: 100%;
    max-width: 650px; /* Houdt de breedte van het formulier leesbaar en elegant */
    padding: 0 40px;
}

.contact-form-section h2 {
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 20px;
}

.contact-intro {
    font-size: 16px;
    line-height: 1.5;
    margin-bottom: 40px;
    opacity: 0.8;
}

.contact-intro .email-link {
    color: #000;
    font-weight: 500;
    text-decoration: underline;
}

/* Formulier Styling */
.bounce-form {
    display: flex;
    flex-direction: column;
    gap: 24px; /* Ruimte tussen de invulvelden */
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px; /* Ruimte tussen label en input */
}

.form-group label {
    font-family: var(--font-sans);
    font-size: 14px;
    color: #333;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 14px 16px;
    font-family: var(--font-sans);
    font-size: 15px;
    border: 1px solid #d1d1d1; /* Subtiele lichtgrijze rand zoals in screenshot */
    border-radius: 6px; /* Zachte afgeronde hoekjes */
    background-color: transparent;
    outline: none;
    transition: border-color 0.3s ease;
}

/* Zorgt ervoor dat de rand zwart wordt als je erin klikt om te typen */
.form-group input:focus,
.form-group textarea:focus {
    border-color: #000; 
}

/* Resizen van de textarea fixeren op alleen verticaal */
.form-group textarea {
    resize: vertical;
}

/* Button Styling (kleur overgenomen uit screenshot, maar strakker) */
.submit-btn {
    align-self: flex-start; /* Zorgt dat de knop niet de hele breedte pakt */
    padding: 14px 28px;
    background-color: #83787a; /* De gedempte grijs/paarse kleur uit je voorbeeld */
    color: #ffffff;
    border: none;
    border-radius: 6px;
    font-family: var(--font-sans);
    font-size: 15px;
    font-weight: 500;
    cursor: pointer;
    transition: background-color 0.3s ease;
    margin-top: 10px;
}

/* Hover effect voor de knop */
.submit-btn:hover {
    background-color: #000000; /* Wordt strak zwart als je er met de muis over gaat */
}

/* Zorgt dat de zwevende pijl op de contactpagina heel subtiel in de achtergrond blijft */
.contact-page #arrow-path {
    opacity: 0.1; 
    right: 20px;
}

/* --- MOBILE OPTIMALISATIE --- */
@media (max-width: 768px) {
    nav, footer { padding: 10px 20px; }
    footer p {font-size: 0.8rem; }
    .nav-links { gap: 15px; }
    .service-list, .contact-grid { grid-template-columns: 1fr; }
    .fullscreen-section { padding: 0 20px; }
    .freelance-stuk p { text-align: left; max-width: 100%; }
    .project-entry {
        padding-left: 20px; /* Reduced padding for mobile screens */
        margin-bottom: 80px;
    }

    .project-gallery {
        gap: 40px;
        display: flex;
        overflow-x: auto;
    }

    .image-wrapper {
        height: auto;
        max-height: 60vh;
        width: auto;
    }

    .image-wrapper img,
    .image-wrapper video {
        width: auto;
        max-width: 85vw;
        height: auto;
        max-height: 60vh;
        display: block;
        object-fit: contain;
    }
    .gallery-arrow {
        display: none; /* Forces it to vanish and yield its space */
    }
    .gallery-mobile-arrow {
      display: flex;
      position: sticky;
      right: 0;
      align-self: center;
      flex-shrink: 0;
      opacity: 0.4;
      pointer-events: none;
      z-index: 10;
    }
}