/* ====================
   ALGEMENE STIJLEN
==================== */
@font-face {
    font-family: "Archivo Narrow";
    src: url("Fonts/archivo-narrow.regular.ttf") format("truetype");
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

button,
input,
textarea,
select {
    font: inherit;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: "Archivo Narrow", Arial, sans-serif;
    font-weight: 400;
}

* {
    box-sizing: border-box;
}

body {
    margin: 0;
    min-height: 100vh;

    font-family: "Archivo Narrow", Arial, sans-serif;
    background-color: #F8E4EB;
    color: #301F1A;

    display: flex;
    flex-direction: column;
}

/* ====================
   NAVIGATIE
==================== */
.navbar {
    width: 100%;
    padding: 20px 40px;

    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* Menu-items links naast elkaar */

.nav-left {
    display: flex;
    align-items: center;
    gap: 45px;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 32px;
}

.nav-links a {
    color: #301F1A;
    font-size: 16px;
    text-decoration: none;
}

.nav-links a:hover,
.nav-links a[aria-current="page"] {
    text-decoration: underline;
    text-underline-offset: 6px;
    text-decoration-thickness: 2px;
}

.logo-link {
    display: block;
}

.logo {
    display: block;
    width: 40px;
    height: auto;
}

.logo:hover {
    transform: scale(1.10);
}

.social-links {
    display: flex;
    align-items: center;
    gap: 10px;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
}

.social-icon {
    display: block;
    width: 26px;
    height: 26px;
    object-fit: contain;
    transition: transform 0.2s ease;
}

.social-links a:hover .social-icon {
    transform: scale(1.1);
}

main {
    flex: 1;

    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;

    padding: 60px 20px;
    text-align: center;
}

header {
    width: 100%;
    padding: 10px 20px 20px;
    text-align: center;
}

header h1 {
    margin: 0 0 16px;
}

header p {
    margin: 0;
}

/* ====================
  HOMEPAGE
==================== */
.homepage-title {
    font-family: "Archivo Narrow", Arial, sans-serif;
    font-weight: 400;
}

.homepage-title strong {
    font-weight: 700;
}

.homepage-title-with-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.homepage-title-logo {
    display: block;
    width: auto;
    height: 0.85em;
    flex-shrink: 0;
}

h1 {
    font-family: "Archivo Narrow", Arial, sans-serif;
    font-weight: 400;
    font-style: normal;
    font-size: 48px;
    margin-bottom: 10px;
}

p {
    font-size: 18px;
}

.homepage-afbeelding {
    display: block;
    width: 300px;
    max-width: 90%;
    height: auto;
    margin: 30px auto;
    border-radius: 16px;
}

/* ====================
   HOMEPAGE SHOWREEL
==================== */

.showreel {
    width: 100%;
    margin-top: 40px;
    margin-bottom: 20px;
    overflow: hidden;
}

.showreel-video {
    display: block;
    width: 100%;
    height: clamp(320px, 50vw, 720px);
    object-fit: cover;
}

/* ====================
   CREATIVE INTRO
==================== */

.creative-intro {
    width: 100%;
    padding: 90px 40px 110px;
    background-color: #F8E4EB;
    color: #301F1A;
}

.creative-intro-grid {
    width: 100%;
    max-width: 1350px;
    margin: 0 auto;

    display: grid;
    grid-template-columns: 0.9fr 1.15fr 0.9fr;
    grid-template-rows: auto auto;
    gap: 45px 55px;

    align-items: start;
}


/* ====================
   GROTE HEADLINE CREATIVE
==================== */

.creative-intro-heading {
    grid-column: 1 / 3;
    grid-row: 1;

    position: relative;
    z-index: 2;

    padding-top: 30px;
}

.creative-intro-heading h2 {
    max-width: 820px;
    margin: 0;

    font-size: clamp(42px, 5vw, 72px);
    font-weight: 400;
    line-height: 0.98;
}

.creative-intro-heading strong {
    font-weight: 700;
}


/* ====================
   FOTO'S CREATIVE
==================== */

.creative-photo img {
    display: block;
    width: 100%;
    height: 100%;

    object-fit: cover;
    object-position: center;

    border-radius: 24px;
}


/* Kleine foto links */

.creative-photo-left {
    grid-column: 1;
    grid-row: 2;

    align-self: end;
}

.creative-photo-left img {
    aspect-ratio: 4 / 5;
}


/* Grote centrale foto */

.creative-photo-main {
    grid-column: 2;
    grid-row: 1 / 3;

    padding-top: 0;
}

.creative-photo-main img {
    aspect-ratio: 4 / 5.5;
}


/* Foto rechtsboven */

.creative-photo-right {
    grid-column: 3;
    grid-row: 1;
    padding-top: 60px;
}

.creative-photo-right img {
    aspect-ratio: 4 / 3;
}


/* ====================
   TEKST RECHTSONDER
==================== */

.creative-intro-text {
    grid-column: 3;
    grid-row: 2;

    align-self: start;
}

.creative-intro-text h3 {
    margin: 0 0 18px;

    font-size: clamp(30px, 3vw, 46px);
    font-weight: 700;
    line-height: 1;
}

.creative-intro-text p {
    margin: 0;

    font-size: 20px;
    line-height: 1.45;
}

/* ====================
   STORY
==================== */

.story-section {
    width: 100%;
    padding: 30px 40px 90px;
    background-color: transparent;
    color: #301F1A;
}

.story-intro {
    max-width: 1100px;
    margin: 0 auto 70px;
    text-align: center;
}

.story-label {
    margin: 0 0 32px;
    font-size: 18px;
    text-transform: uppercase;
}

.story-statement {
    max-width: 1000px;
    margin: 0 auto;

    font-size: clamp(28px, 3vw, 46px);
    font-weight: 700;
    line-height: 1.1;
}

.story-content {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;

    display: grid;
    grid-template-columns: minmax(300px, 0.85fr) minmax(400px, 1.15fr);
    align-items: center;
    gap: 70px;
}

.story-image-wrapper {
    width: 100%;
}

.story-image {
    display: block;
    width: 100%;
    aspect-ratio: 4 / 5;

    object-fit: cover;
    object-position: center;

    border-radius: 28px;
}

.story-text {
    width: 100%;
}

.story-name {
    margin: 0 0 22px;

    display: flex;
    align-items: center;
    gap: 3px;

    font-size: clamp(38px, 5vw, 64px);
    font-weight: 700;
    line-height: 1;
    text-transform: uppercase;
}

.story-name-logo {
    display: block;
    width: auto;
    height: 0.85em;
    flex-shrink: 0;
}

.story-bio h3,
.story-niche h3 {
    margin: 0 0 14px;

    font-size: 28px;
    font-weight: 700;
    text-transform: uppercase;
}

.story-bio p {
    margin: 0 0 14px;

    font-size: 20px;
    line-height: 1.45;
}

.story-niche {
    margin-top: 48px;
}

.niche-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
}

.niche-tags span {
    display: inline-flex;
    align-items: center;

    padding: 9px 22px;

    background-color: #301F1A;
    color: white;

    border-radius: 999px;

    font-size: 18px;
    line-height: 1;
}

/* ====================
   LET'S COLLAB
==================== */

.collab-section {
    width: 100%;
    padding: 100px 40px;
    background-color: #F8E4EB;
    color: #301F1A;
}

.collab-container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;

    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    align-items: center;
    gap: 80px;
}


/* ====================
   COLLAB TEKST
==================== */

.collab-content {
    text-align: left;
}

.collab-label {
    margin: 0 0 20px;

    font-size: 16px;
    font-weight: 700;
    text-transform: uppercase;
}

.collab-content h2 {
    margin: 0;

    font-size: clamp(48px, 6vw, 82px);
    font-weight: 400;
    line-height: 0.95;
}

.collab-content h2 strong {
    display: block;
    font-weight: 700;
}

.collab-text {
    max-width: 500px;
    margin: 32px 0;

    font-size: 20px;
    line-height: 1.45;
}


/* ====================
   COLLAB BUTTON
==================== */

.collab-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    padding: 14px 28px;

    background-color: #301F1A;
    color: white;

    border: 2px solid #301F1A;
    border-radius: 999px;

    font-size: 16px;
    font-weight: 700;
    text-decoration: none;

    transition: transform 0.2s ease;
}

.collab-button:hover {
    transform: translateY(-2px);
}


/* ====================
   COLLAB FOTO
==================== */

.collab-image-wrapper {
    position: relative;
    background: transparent;
}

.collab-image {
    display: block;
    width: 100%;
    aspect-ratio: 4 / 5;

    object-fit: cover;
    object-position: center;

    border-radius: 28px;

    opacity: 1;
    filter: none;
    mix-blend-mode: normal;
}

/* ====================
   OVERLAPPEND DETAIL
==================== */

.collab-stamp {
    position: absolute;
    left: -80px;
    bottom: 55px;

    display: flex;
    align-items: center;
    gap: 10px;

    padding: 14px 22px;

    background-color: #F8E4EB;
    border-radius: 999px;

    font-size: clamp(24px, 3vw, 42px);
    font-weight: 700;

    white-space: nowrap;
}

.collab-stamp-logo {
    display: block;
    width: 38px;
    height: auto;
}

button {
    margin-top: 24px;
    padding: 14px 24px;

    border: none;
    border-radius: 999px;

    font-size: 16px;
    cursor: pointer;

    background-color: #301F1A;
    color: white;
}

button:hover {
    transform: scale(1.05);
}

/* ====================
   WORK PAGE
==================== */

.work-page {
    display: block;
    width: 100%;
    padding: 30px 40px 120px;

    background-color: #F8E4EB;
    text-align: left;
}

.work-category {
    margin: 7px 0 0;

    font-size: 14px;
    color: #301F1A;
}

/* ====================
   WORK HEADER
==================== */

.work-header {
    width: 100%;
    padding: 30px 0 70px;
    text-align: center;
}

.work-header h1 {
    margin: 0 0 12px;

    font-size: 48px;
    font-weight: 400;
}

.work-header p {
    margin: 0;
    font-size: 18px;
}


/* ====================
   WORK GRID
==================== */

.work-grid {
    width: 100%;
    max-width: 1450px;
    margin: 0 auto;

    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));

    column-gap: 28px;
    row-gap: 65px;

    align-items: start;
}


/* ====================
   WORK CARD
==================== */

.work-card {
    display: block;

    color: #301F1A;
    text-decoration: none;
}

.work-card h2 {
    margin: 12px 0 0;

    font-size: 24px;
    font-weight: 700;
    line-height: 1;

    text-transform: lowercase;
}


/* ====================
   WORK IMAGE
==================== */

.work-image {
    position: relative;

    width: 100%;
    overflow: hidden;

    background-color: #301F1A;

    border-radius: 18px;
}


/* Verschillende beeldverhoudingen */

.work-image-tall {
    aspect-ratio: 3 / 4.4;
}

.work-image-medium {
    aspect-ratio: 3 / 3.8;
}

.work-image-short {
    aspect-ratio: 3 / 3.2;
}


.work-image img {
    display: block;

    width: 100%;
    height: 100%;

    object-fit: cover;
    object-position: center;

    transition: transform 0.45s ease;
}


/* ====================
   HOVER OVERLAY
==================== */

.work-overlay {
    position: absolute;
    inset: 0;

    display: flex;
    align-items: center;
    justify-content: center;

    background-color: rgba(48, 31, 26, 0);

    opacity: 0;

    transition:
        background-color 0.3s ease,
        opacity 0.3s ease;
}

.work-overlay span {
    padding: 11px 18px;

    background-color: #F8E4EB;
    color: #301F1A;

    border-radius: 999px;

    font-size: 15px;
    font-weight: 700;

    transform: translateY(10px);

    transition: transform 0.3s ease;
}


/* ====================
   WORK PAGE
==================== */

.work-page {
    display: block;
    width: 100%;
    padding: 30px 40px 120px;

    background-color: #F8E4EB;
    text-align: left;
}


/* ====================
   WORK HEADER
==================== */

.work-header {
    width: 100%;
    padding: 30px 0 70px;
    text-align: center;
}

.work-header h1 {
    margin: 0 0 12px;

    font-size: 48px;
    font-weight: 400;
}

.work-header p {
    margin: 0;
    font-size: 18px;
}


/* ====================
   WORK GRID
==================== */

.work-grid {
    width: 100%;
    max-width: 1450px;
    margin: 0 auto;

    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));

    column-gap: 28px;
    row-gap: 65px;

    align-items: start;
}


/* ====================
   WORK CARD
==================== */

.work-card {
    display: block;

    color: #301F1A;
    text-decoration: none;
}

.work-card h2 {
    margin: 12px 0 0;

    font-size: 24px;
    font-weight: 700;
    line-height: 1;

    text-transform: lowercase;
}


/* ====================
   WORK IMAGE
==================== */

.work-image {
    position: relative;

    width: 100%;
    overflow: hidden;

    background-color: #301F1A;

    border-radius: 18px;
}


/* Verschillende beeldverhoudingen */

.work-image-tall {
    aspect-ratio: 3 / 4.4;
}

.work-image-medium {
    aspect-ratio: 3 / 3.8;
}

.work-image-short {
    aspect-ratio: 3 / 3.2;
}


.work-image img {
    display: block;

    width: 100%;
    height: 100%;

    object-fit: cover;
    object-position: center;

    transition: transform 0.45s ease;
}


/* ====================
   HOVER OVERLAY
==================== */

.work-overlay {
    position: absolute;
    inset: 0;

    display: flex;
    align-items: center;
    justify-content: center;

    background-color: rgba(48, 31, 26, 0);

    opacity: 0;

    transition:
        background-color 0.3s ease,
        opacity 0.3s ease;
}

.work-overlay span {
    padding: 11px 18px;

    background-color: #F8E4EB;
    color: #301F1A;

    border-radius: 999px;

    font-size: 15px;
    font-weight: 700;

    transform: translateY(10px);

    transition: transform 0.3s ease;
}


/* ====================
   WORK HOVER
==================== */

.work-card:hover .work-image img {
    transform: scale(1.04);
}

.work-card:hover .work-overlay {
    opacity: 1;
    background-color: rgba(48, 31, 26, 0.28);
}

.work-card:hover .work-overlay span {
    transform: translateY(0);
}

.work-card:hover h2 {
    text-decoration: underline;
    text-underline-offset: 5px;
}

/* ====================
   PROJECT PAGE
==================== */

.project-page {
    display: block;
    width: 100%;
    background-color: #F8E4EB;
}

/* EL CID work card */

.work-image-elcid {
    aspect-ratio: 4 / 5;
}

.work-image-elcid img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

/* GAIA work card */

.work-image-gaia {
    aspect-ratio: 2 / 3;
}

/* ====================
   PROJECT HERO
==================== */

.project-hero {
    padding: 60px 40px 90px;
}

.project-hero-grid {
    width: min(100%, 1450px);
    margin: 0 auto;

    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    align-items: center;

    gap: 80px;
}

.project-eyebrow,
.project-section-label {
    margin: 0 0 18px;

    font-size: 15px;
    font-weight: 700;

    letter-spacing: 0.04em;
}

.project-hero h1 {
    margin: 0;

    font-size: clamp(90px, 12vw, 190px);
    font-weight: 700;
    line-height: 0.8;

    text-transform: uppercase;
}

.project-intro {
    max-width: 520px;

    margin: 40px 0 0;

    font-size: 26px;
    line-height: 1.15;
}

.project-hero-image {
    overflow: hidden;

    border-radius: 28px;
}

.project-hero-image img {
    display: block;

    width: 100%;
    aspect-ratio: 4 / 3;

    object-fit: cover;

    transition: transform 0.6s ease;
}

.project-hero-image:hover img {
    transform: scale(1.025);
}


/* ====================
   PROJECT INFO
==================== */

.project-info {
    padding: 0 40px 110px;
}

.project-info-grid {
    width: min(100%, 1450px);
    margin: 0 auto;

    display: grid;
    grid-template-columns: repeat(3, 1fr);

    border-top: 2px solid #301F1A;
    border-bottom: 2px solid #301F1A;
}

.project-info-item {
    padding: 25px 20px;
}

.project-info-item + .project-info-item {
    border-left: 2px solid #301F1A;
}

.project-info-item span {
    display: block;

    margin-bottom: 6px;

    font-size: 13px;
}

.project-info-item strong {
    font-size: 22px;
}


/* ====================
   PROJECT STORY
==================== */

.project-story {
    padding: 40px 40px 130px;
}

.project-story-grid {
    width: min(100%, 1450px);
    margin: 0 auto;

    display: grid;
    grid-template-columns: 1fr 0.8fr;

    gap: 100px;
}

.project-story-title h2 {
    max-width: 750px;

    margin: 0;

    font-size: clamp(55px, 7vw, 105px);
    font-weight: 400;
    line-height: 0.88;
}

.project-story-title h2 strong {
    display: block;
    font-weight: 700;
}

.project-story-text {
    align-self: end;
}

.project-story-text p {
    margin: 0 0 22px;

    font-size: 20px;
    line-height: 1.35;
}


/* ====================
   FEATURE IMAGE
==================== */

.project-feature {
    width: 100%;
}

.project-feature img {
    display: block;

    width: 100%;
    height: clamp(500px, 65vw, 950px);

    object-fit: cover;
}


/* ====================
   DELIVERABLES
==================== */

.project-deliverables {
    padding: 120px 40px 150px;
}

.project-deliverables-header {
    width: min(100%, 1450px);
    margin: 0 auto 70px;
}

.project-deliverables-header h2 {
    max-width: 900px;

    margin: 0;

    font-size: clamp(65px, 8vw, 120px);
    font-weight: 400;
    line-height: 0.85;
}

.project-deliverables-header h2 strong {
    font-weight: 700;
}


/* GRID */

.deliverables-grid {
    width: min(100%, 1450px);
    margin: 0 auto;

    display: grid;
    grid-template-columns: repeat(12, 1fr);

    gap: 30px;
}


/* CARDS */

.deliverable-card {
    position: relative;

    overflow: hidden;

    border-radius: 24px;
}

.deliverable-card img,
.deliverable-card video {
    display: block;

    width: 100%;
    height: 100%;

    object-fit: cover;

    transition: transform 0.5s ease;
}

.deliverable-card:hover img,
.deliverable-card:hover video {
    transform: scale(1.025);
}


/* Verschillende formaten */

.deliverable-tall {
    grid-column: span 4;
    aspect-ratio: 4 / 5.5;
}

.deliverable-short {
    grid-column: span 4;
    aspect-ratio: 4 / 4.5;

    margin-top: 100px;
}

.deliverable-wide {
    grid-column: 3 / span 8;
    aspect-ratio: 16 / 9;

    margin-top: 40px;
}


/* CAPTION */

.deliverable-caption {
    position: absolute;

    left: 18px;
    right: 18px;
    bottom: 18px;

    display: flex;
    justify-content: space-between;
    align-items: center;

    padding: 12px 16px;

    background-color: #F8E4EB;
    color: #301F1A;

    border-radius: 999px;
}

.deliverable-caption span,
.deliverable-caption p {
    margin: 0;

    font-size: 14px;
    font-weight: 700;
}


/* ====================
   STATEMENT
==================== */

.project-statement {
    padding: 130px 40px;

    background-color: #301F1A;
    color: #ffffff;

    text-align: center;
}

.project-statement p {
    max-width: 1300px;

    margin: 0 auto;

    font-size: clamp(65px, 10vw, 150px);
    font-weight: 400;
    line-height: 0.82;
}

.project-statement strong {
    display: block;
}


/* ====================
   NEXT PROJECT
==================== */

.project-next {
    padding: 100px 40px;

    text-align: center;
}

.project-next a {
    display: inline-block;

    color: #301F1A;

    font-size: clamp(50px, 8vw, 110px);
    font-weight: 700;

    text-decoration: none;
}

.project-next a:hover {
    text-decoration: underline;
    text-underline-offset: 10px;
}


/* ====================
   PROJECT RESPONSIVE
==================== */

@media (max-width: 950px) {

    .project-hero-grid,
    .project-story-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .project-info-grid {
        grid-template-columns: 1fr;
    }

    .project-info-item + .project-info-item {
        border-left: 0;
        border-top: 2px solid #301F1A;
    }

    .deliverable-tall,
    .deliverable-short {
        grid-column: span 6;
    }

    .deliverable-short {
        margin-top: 0;
    }

    .deliverable-wide {
        grid-column: 1 / -1;
    }

}


@media (max-width: 650px) {

    .project-hero,
    .project-info,
    .project-story,
    .project-deliverables,
    .project-statement,
    .project-next {
        padding-left: 20px;
        padding-right: 20px;
    }

    .project-hero {
        padding-top: 40px;
        padding-bottom: 70px;
    }

    .project-hero h1 {
        font-size: 76px;
    }

    .project-intro {
        font-size: 21px;
    }

    .project-story {
        padding-bottom: 80px;
    }

    .project-story-text p {
        font-size: 18px;
    }

    .project-deliverables {
        padding-top: 80px;
        padding-bottom: 90px;
    }

    .deliverables-grid {
        display: block;
    }

    .deliverable-card {
        margin: 0 0 25px;
    }

    .deliverable-tall,
    .deliverable-short,
    .deliverable-wide {
        aspect-ratio: 4 / 5;
    }

}

/* ====================
   DJ
==================== */

.contact-main,
.dj-main {
    justify-content: flex-start;
    padding-top: 20px;
}

.contact-main h1,
.dj-main h1 {
    margin: 0 0 16px;
}

.contact-main p,
.dj-main p {
    margin: 0;
}

.dj-page {
    display: block;
    width: 100%;
    padding: 0;
    text-align: left;
}

.dj-container {
    width: min(1200px, calc(100% - 80px));
    margin: 0 auto;
}

.dj-section-label {
    margin: 0 0 18px;
    font-size: 15px;
    text-align: center;
    text-transform: uppercase;
}

.dj-section-title {
    margin: 0 0 40px;
    font-size: clamp(42px, 7vw, 82px);
    font-weight: 700;
    line-height: 0.95;
    text-transform: uppercase;
}

/* ====================
   DJ BUTTONS
==================== */
.dj-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    min-height: 42px;
    padding: 10px 22px;

    border: 2px solid #301F1A;
    border-radius: 999px;

    font-family: inherit;
    font-size: 15px;
    font-weight: 700;
    line-height: 1;
    text-decoration: none;

    transition:
        transform 0.2s ease,
        background-color 0.2s ease,
        color 0.2s ease;
}

.dj-button:hover {
    transform: translateY(-2px);
}

.dj-button-dark {
    background-color: #301F1A;
    color: white;
}

.dj-button-outline {
    background-color: transparent;
    color: #301F1A;
}

.dj-button-outline:hover {
    background-color: #301F1A;
    color: white;
}

.dj-button-download {
    margin-top: 16px;
    background-color: #301F1A;
    color: white;
}

.dj-button-light {
    background-color: white;
    color: #301F1A;
    border-color: white;
}


/* ====================
   DJ HERO
==================== */

.dj-hero {
    padding: 20px 0 20px;
    background-color: #F8E4EB;
}

.dj-hero-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.35fr) minmax(280px, 0.65fr);
    align-items: stretch;
    gap: 70px;
}

.dj-hero-content {
    display: flex;
    flex-direction: column;
}

.dj-eyebrow {
    margin: 0 0 16px;
    font-size: 16px;
    font-weight: 700;
    text-transform: uppercase;
}

.dj-hero-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 30px;
}

.dj-intro {
    max-width: 680px;
    margin: 38px 0 0;

    font-size: 19px;
    line-height: 1.5;
}

.dj-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;

    margin-top: auto;
}


.dj-stat-card {
    min-height: 120px;
    padding: 20px;

    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;

    background-color: #301F1A;
    color: white;

    border-radius: 18px;
    text-align: center;
}

.dj-stat-card strong {
    font-size: 25px;
    line-height: 1;
}

.dj-stat-card span {
    margin-top: 10px;
    font-size: 12px;
    line-height: 1.3;
}

.dj-hero-media {
    position: relative;

    width: 100%;
    max-width: 390px;
    margin-left: auto;
}

.dj-hero-image {
    display: block;
    width: 100%;
    aspect-ratio: 4 / 5;

    object-fit: cover;
    object-position: center;

    border-radius: 24px;
}

/* Tekst onder de DJ-titel */

.dj-headline {
    max-width: 780px;
    margin: 0;

    font-family: "Archivo Narrow", Arial, sans-serif;
    font-size: clamp(28px, 3vw, 42px);
    font-weight: 400;
    line-height: 1.1;
}

/* ====================
   SHOWREEL
==================== */

.dj-showreel-section {
    width: 100%;
    padding-top: 30px;
    background-color: #F8E4EB;
}

.dj-showreel {
    display: block;
    width: 100%;

    height: clamp(400px, 50vw, 720px);

    object-fit: cover;
    object-position: center;

    background-color: #301F1A;
}

/* ====================
   SELECTED MOMENTS
==================== */

.dj-moments {
    padding: 90px 0;
    background-color: #F8E4EB;
}

.dj-moments-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 35px;
    width: 100%;
}

.dj-moment-card {
    width: 100%;
    min-width: 0;
    margin: 0;
    text-align: center;
}

.dj-vertical-video,
.dj-moment-image {
    display: block;
    width: 100%;
    aspect-ratio: 9 / 16;
    object-fit: cover;
    border-radius: 28px;
}

.dj-moment-card h3 {
    margin: 16px 0 3px;
    font-size: 17px;
    font-weight: 700;
    text-transform: uppercase;
}

.dj-moment-card p {
    margin: 0;
    font-size: 13px;
}


/* ====================
   SOUNDCLOUD
==================== */

.dj-listen {
    padding: 20px 0 90px;
    background-color: #F8E4EB;
}

.dj-listen-container {
    max-width: 900px;
}

.soundcloud-wrapper {
    padding: 18px;

    background-color: white;
    border-radius: 18px;
}

.soundcloud-wrapper iframe {
    display: block;
    border-radius: 10px;
}


/* ====================
   PLAYED AT
==================== */

.dj-experience {
    padding: 80px 0 100px;
    background-color: #F8E4EB;
}

/* ====================
   PLAYED AT – LOGO GRID
==================== */

.dj-logo-grid {
    display: grid;
    grid-template-columns: repeat(8, 1fr);
    align-items: center;
    column-gap: 30px;
    row-gap: 55px;
}

.dj-logo-grid img {
    display: block;
    width: 100%;
    max-width: 130px;
    max-height: 90px;
    margin: 0 auto;
    object-fit: contain;
}

/* Bovenste rij: vier logo's */

.dj-logo-grid img:nth-child(1) {
    grid-column: 1 / span 2;
}

.dj-logo-grid img:nth-child(2) {
    grid-column: 3 / span 2;
}

.dj-logo-grid img:nth-child(3) {
    grid-column: 5 / span 2;
}

.dj-logo-grid img:nth-child(4) {
    grid-column: 7 / span 2;
}

/* Onderste rij: drie logo's, verschoven */

.dj-logo-grid img:nth-child(5) {
    grid-column: 2 / span 2;
}

.dj-logo-grid img:nth-child(6) {
    grid-column: 4 / span 2;
}

.dj-logo-grid img:nth-child(7) {
    grid-column: 6 / span 2;
}


/* ====================
   BOOKING CTA
==================== */

.dj-booking {
    padding: 85px 0;
    background-color: #301F1A;
    color: white;
}

.dj-booking-grid {
    display: grid;
    grid-template-columns: 1.4fr 0.6fr;
    align-items: center;
    gap: 80px;
}

.dj-booking-content h2 {
    margin: 0;

    font-size: clamp(64px, 10vw, 130px);
    font-weight: 700;
    line-height: 0.78;
    text-transform: uppercase;
}

.dj-booking-content p {
    max-width: 600px;
    margin: 38px 0 25px;

    font-size: 18px;
    line-height: 1.5;
}

.dj-booking-email {
    display: block;
    width: fit-content;
    margin-top: 22px;

    color: white;
    font-size: 15px;
    text-decoration: none;
}

.dj-booking-email:hover {
    text-decoration: underline;
    text-underline-offset: 5px;
}

.dj-booking-image {
    display: block;
    width: 100%;
    aspect-ratio: 4 / 5;

    object-fit: cover;
    object-position: center;

    border-radius: 24px;
}

.dj-booking-title > span {
    display: block;
}

.dj-started-word {
    display: flex !important;
    align-items: center;
    gap: 0;
}

.dj-started-logo {
    display: inline-block;

    width: auto;
    height: 0.85em;

    margin: 0 0.02em;

    object-fit: contain;

    /* Omdat je zwarte logo op een zwarte achtergrond staat */
    filter: invert(1);
}

/* ====================
   CONTACT PAGE
==================== */

.contact-page {
    width: 100%;
    padding: 70px 40px 120px;

    display: block;

    background-color: #F8E4EB;
    color: #301F1A;

    text-align: left;
}

.contact-layout {
    width: min(100%, 1450px);
    margin: 0 auto;

    display: grid;
    grid-template-columns: 0.8fr 1.2fr;

    gap: 120px;
    align-items: start;
}


/* ====================
   CONTACT LINKS
==================== */

.contact-intro {
    position: sticky;
    top: 60px;
}

.contact-intro h1 {
    max-width: 600px;
    margin: 0;

    font-size: clamp(70px, 8vw, 125px);
    font-weight: 400;
    line-height: 0.82;

    text-transform: uppercase;
}

.contact-intro h1 strong {
    display: block;
    font-weight: 700;
}

.contact-details {
    margin-top: 55px;
}

.contact-details > a {
    display: inline-block;

    color: #301F1A;

    font-size: 22px;
    text-decoration: none;
}

.contact-details > a:hover {
    text-decoration: underline;
    text-underline-offset: 5px;
}

.contact-socials {
    display: flex;
    align-items: center;
    gap: 12px;

    margin-top: 28px;
}

.contact-socials a {
    display: flex;
    align-items: center;
    justify-content: center;

    text-decoration: none;
}

.contact-social-icon {
    display: block;

    width: 28px;
    height: 28px;

    object-fit: contain;

    transition: transform 0.2s ease;
}

.contact-socials a:hover .contact-social-icon {
    transform: scale(1.1);
}


/* ====================
   FORM
==================== */

.contact-form-wrapper {
    width: 100%;
}

.contact-form-label {
    margin: 0 0 30px;

    font-size: 18px;
    font-weight: 700;

    text-transform: uppercase;
}

.contact-form {
    width: 100%;
}

.contact-name-row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);

    gap: 18px;
}

.form-field {
    margin-bottom: 28px;
}

.form-field label {
    display: block;

    margin-bottom: 9px;

    font-size: 18px;
}

.form-field label span {
    margin-left: 5px;

    font-size: 15px;
    opacity: 0.6;
}


/* INPUTS */

.contact-form input[type="text"],
.contact-form input[type="email"],
.contact-form input[type="url"],
.contact-form textarea {
    width: 100%;
    padding: 15px 20px;

    background-color: transparent;
    color: #301F1A;

    border: 2px solid #301F1A;
    border-radius: 999px;

    outline: none;

    font-family: inherit;
    font-size: 18px;
}

.form-helper {
    margin: -2px 0 12px;

    font-size: 16px;
    line-height: 1.3;

    opacity: 0.65;
}

.contact-form textarea {
    min-height: 160px;

    border-radius: 28px;

    resize: vertical;
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: 2px solid #301F1A;
    outline-offset: 3px;
}


/* ====================
   SERVICES
==================== */

.contact-services {
    margin: 10px 0 40px;
    padding: 0;

    border: 0;
}

.contact-services legend {
    margin-bottom: 20px;

    font-size: 22px;
    font-weight: 400;
}

.service-option {
    width: fit-content;

    display: flex;
    align-items: center;

    gap: 12px;

    margin-bottom: 13px;

    cursor: pointer;
}

.service-option input {
    appearance: none;

    width: 24px;
    height: 24px;
    margin: 0;

    border: 2px solid #301F1A;
    border-radius: 50%;

    cursor: pointer;
}

.service-option input:checked {
    background-color: #301F1A;

    box-shadow:
        inset 0 0 0 5px #F8E4EB;
}

.service-option span {
    font-size: 18px;
}


/* ====================
   SUBMIT BUTTON
==================== */

.contact-submit {
    min-width: 190px;

    margin: 0;
    padding: 15px 30px;

    background-color: #301F1A;
    color: #F8E4EB;

    border: 2px solid #301F1A;
    border-radius: 999px;

    font-family: inherit;
    font-size: 18px;
    font-weight: 700;

    cursor: pointer;

    transition:
        transform 0.2s ease,
        background-color 0.2s ease,
        color 0.2s ease;
}

.contact-submit:hover {
    transform: translateY(-2px);

    background-color: transparent;
    color: #301F1A;
}


/* ====================
   NETLIFY HONEYPOT
==================== */

.hidden-field {
    position: absolute;

    width: 1px;
    height: 1px;

    margin: -1px;
    padding: 0;

    overflow: hidden;
    clip: rect(0 0 0 0);

    border: 0;
}

/* ====================
   FOOTER
==================== */

.site-footer {
    width: 100%;
    padding: 22px 40px;

    background-color: white;

    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
}

.footer-left {
    justify-self: start;
}

.footer-socials {
    justify-self: center;

    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-right {
    justify-self: end;
}

.footer-copyright,
.footer-email {
    color: #301F1A;
    font-size: 13px;
    text-decoration: none;
}

.footer-copyright:hover,
.footer-email:hover {
    text-decoration: underline;
    text-underline-offset: 4px;
}

.footer-socials a {
    display: flex;
    align-items: center;
    justify-content: center;
}

.footer-social-icon {
    display: block;
    width: 22px;
    height: 22px;
    object-fit: contain;
    transition: transform 0.2s ease;
}

.footer-socials a:hover .footer-social-icon {
    transform: scale(1.1);
}

/* ====================
   RESPONSIVE — TABLET / SMALL DESKTOP
   max-width: 950px
==================== */

@media (max-width: 950px) {
    @media (max-width: 950px) {

    .work-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .work-card:nth-child(n) {
        margin-top: 0;
    }

    .work-card:nth-child(even) {
        margin-top: 35px;
    }
}
.dj-container {
        width: min(100% - 40px, 760px);
    }

    .dj-hero-grid {
        grid-template-columns: 1fr;
        gap: 45px;
    }

    .dj-hero-image {
        max-width: 450px;
    }

    .dj-stats {
        grid-template-columns: repeat(3, 1fr);
    }

    .dj-moments-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .dj-booking-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .dj-booking-image {
        max-width: 450px;
    }
}

/* ====================
   RESPONSIVE — TABLET
   max-width: 850px
==================== */

@media (max-width: 850px) {

    .contact-page {
        padding: 50px 20px 90px;
    }

    .contact-layout {
        grid-template-columns: 1fr;
        gap: 70px;
    }

    .contact-intro {
        position: static;
    }

    .contact-intro h1 {
        font-size: 72px;
    }


    /* Creative intro */
    .creative-intro {
        padding: 60px 20px 75px;
    }

    .creative-intro-grid {
        display: flex;
        flex-direction: column;
        gap: 30px;
    }

    .creative-intro-heading {
        padding-top: 0;
        order: 1;
    }

    .creative-intro-heading h2 {
        font-size: 44px;
    }

    .creative-photo-main {
        order: 2;
        padding: 0;
    }

    .creative-photo-right {
        order: 3;
        padding: 0;
    }

    .creative-intro-text {
        order: 4;
    }

    .creative-photo-left {
        order: 5;
    }

    .creative-intro-text p {
        font-size: 18px;
    }

    /* Story */
    .story-section {
        padding: 55px 20px 70px;
    }

    .story-intro {
        margin-bottom: 45px;
    }

    .story-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .story-image-wrapper {
        max-width: 550px;
        margin: 0 auto;
    }

    .story-name {
        justify-content: center;
        text-align: center;
    }

    .story-bio h3,
    .story-niche h3 {
        text-align: center;
    }

    .niche-tags {
        justify-content: center;
    }

    .story-bio p {
        font-size: 18px;
    }

    /* Let's collab */
    .collab-section {
        padding: 70px 20px;
    }

    .collab-container {
        grid-template-columns: 1fr;
        gap: 45px;
    }

    .collab-content h2 {
        font-size: 52px;
    }

    .collab-text {
        font-size: 18px;
    }

    .collab-stamp {
        left: 20px;
        bottom: 20px;
    }

    .collab-stamp-logo {
        width: 30px;
    }
}



/* ====================
   RESPONSIVE — MOBILE
   max-width: 650px
==================== */

@media (max-width: 650px) {
@media (max-width: 650px) {

    .contact-name-row {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .contact-intro h1 {
        font-size: 58px;
    }

    .contact-details > a {
        font-size: 18px;
    }

    .work-page {
        padding: 25px 20px 80px;
    }

    .work-header {
        padding: 20px 0 45px;
    }

    .work-grid {
        grid-template-columns: 1fr;
        row-gap: 45px;
    }

    .work-card:nth-child(n) {
        margin-top: 0;
    }

    .work-card h2 {
        font-size: 22px;
    }
}

    /* DJ page */
    .dj-container {
        width: calc(100% - 32px);
    }

    .dj-hero {
        padding: 35px 0 60px;
    }

    .dj-intro {
        font-size: 17px;
    }

    .dj-stats {
        grid-template-columns: 1fr;
    }

    .dj-stat-card {
        min-height: auto;
    }

    .dj-button-download {
        position: absolute;
        top: calc(100% + 16px);
        left: 50%;

        margin-top: 0;
        transform: translateX(-50%);

        background-color: #301F1A;
        color: white;
        white-space: nowrap;
    }

    .dj-button-download:hover {
        transform: translateX(-50%) translateY(-2px);
    }

    .dj-moments {
        padding: 65px 0;
    }

    .dj-moments-grid {
        grid-template-columns: 1fr;
        gap: 45px;
    }

    .dj-moment-card {
        max-width: 330px;
        margin: 0 auto;
    }

    /* Played at */
    .dj-logo-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 35px;
    }

    .dj-logo-grid img:nth-child(n) {
        grid-column: auto;
    }

    .dj-logo-grid img:last-child {
        grid-column: 1 / -1;
    }

    /* DJ booking */
    .dj-booking {
        padding: 65px 0;
    }

    .dj-booking-content h2 {
        font-size: 65px;
    }

    .dj-booking-content p {
        font-size: 16px;
    }

    /* Footer */
    .site-footer {
        grid-template-columns: 1fr;
        gap: 18px;
        text-align: center;
    }

    .footer-left,
    .footer-socials,
    .footer-right {
        justify-self: center;
    }
}
