@import url('https://fonts.googleapis.com/css2?family=Caveat:wght@400;500;600;700&display=swap');

:root {
    --paper: #ffffff;
    --text-dark: #000000;
    --text-light: #ffffff;
    --line: rgba(0, 0, 0, 0.1);
    --header-line: rgba(255, 255, 255, 0.5);
    --brand-pink: #f4b2d1;
    --analog-blue: rgba(0, 50, 255, 0.3);
    
    --font-sans: 'Inter', Helvetica, sans-serif;
    --font-display: 'Syne', sans-serif;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-sans);
    background-color: var(--paper);
    color: var(--text-dark);
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

#motivation,
#produktioner,
#projekter,
#om-mig,
#kontakt {
    scroll-margin-top: 100px;
}

/* --- SEKTION 01 (HERO) --- */
.section-01 {
    position: relative;
    width: 100vw;
    height: 100vh;
    overflow: hidden;
    color: var(--text-light);
    z-index: 1; /* Sørger for at Sektion 02 kan glide over denne */
}

.bg-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -2;
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.2);
    z-index: -1;
}

.hero-content {
    position: relative;
    width: 100%;
    height: 100%;
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    grid-template-rows: 1fr auto;
    gap: 20px;
    padding: 2vw;
    padding-top: 15vh; /* Gøre plads til den fixed header */
    z-index: 10;
}

/* Header - Sticky/Fixed */
.split-header {
    position: absolute;
    top: 0;
    left: 0;
    width: 100vw;
    padding: 2vw;
    z-index: 100;
    font-size: 16px;
    font-weight: 400;
    color: var(--text-light); /* Hvid som standard over video */
    transition: color 0.3s ease;
}

.split-header.dark-mode {
    color: var(--text-dark); /* Sort over hvid baggrund */
}

.header-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    padding: 10px 0;
}

.header-line {
    height: 1px;
    background-color: var(--header-line);
    width: 100%;
    transition: background-color 0.3s ease;
}

.split-header.dark-mode .header-line {
    background-color: var(--text-dark); /* Sort linje */
}

.bottom-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    text-align: center;
}
.bottom-row span:first-child { text-align: left; }
.hero-content {
    position: relative;
    width: 100%;
    height: 100%;
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    grid-template-rows: 1fr auto; /* Justerede rækker da header er flyttet ud */
    gap: 20px;
    padding: 2vw;
    padding-top: 15vh; /* Gøre plads til den fixed header */
    z-index: 10;
}

/* Centered Title */
.center-title {
    grid-column: 1 / -1;
    grid-row: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.center-title h1 {
    font-family: var(--font-display);
    font-size: clamp(4rem, 10vw, 15rem);
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.05em; /* Justeret afstand som Na Kim inspireret/Editorial Hero */
    color: var(--text-light);
}

/* Manifesto */
.manifesto {
    grid-column: 9 / -1; /* Placeret i bunden til højre over 4 kolonner */
    grid-row: 2;
    align-self: flex-end;
    font-size: 18px; /* Gjort lidt større */
    line-height: 1.4;
    text-transform: none; /* Sentence case */
    padding-bottom: 2vh; 
}


/* =====================================================
   SEKTION 02: MIG SOM JOURNALIST (unified scroll section)
   ===================================================== */

.section-02 {
    position: relative;
    width: 100vw;
    /* Tall enough for scroll animation, but tight at the bottom */
    min-height: 300vh;
    background-color: #ffffff;
    z-index: 10;
    overflow: hidden;
    padding: 0 4vw;
    padding-bottom: 0;
}

/* 12-column decorative grid lines */
.s02-grid-lines {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: 20px;
    pointer-events: none;
    z-index: 0;
    padding: 0 4vw;
}

.s02-grid-line {
    border-left: 1px solid rgba(0,0,0,0.07);
    height: 100%;
}
.s02-grid-line:last-child {
    border-right: 1px solid rgba(0,0,0,0.07);
}

/* Profile photo — top-right, sticky within the section */
.s02-profile-photo {
    position: absolute;
    top: 0;
    right: 0;
    width: 28%;
    max-width: 340px;
    object-fit: cover;
    object-position: center top;
    display: block;
    z-index: 5;
}

/* Section label */
.s02-label {
    position: relative;
    display: flex;
    align-items: center;
    font-family: var(--font-sans);
    font-size: 1rem;
    color: #444;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-weight: 500;
    z-index: 5;
    padding-top: 25vh;
    margin-left: 8.33%; /* ~column 2 */
}

.s02-label .vertical-line {
    width: 2px;
    height: 1.2rem;
    background-color: #001BFF;
    margin-right: 1rem;
    flex-shrink: 0;
}

/* Large display headline */
.s02-headline {
    position: relative;
    font-family: var(--font-display);
    font-size: clamp(2.4rem, 4.8vw, 5.2rem);
    font-weight: 800;
    line-height: 1.0;
    text-transform: uppercase;
    letter-spacing: -0.02em;
    color: #000;
    z-index: 5;
    margin-top: 2rem;
    margin-left: 8.33%;
    max-width: 65%;
}

/* ─── SVG animated line ────────────────────────────── */
.s02-svg-line {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 3;
    /* The SVG path will be revealed via stroke-dashoffset in JS */
}

/* ─── Quote blocks ─────────────────────────────────── */
.s02-quote {
    position: relative;
    z-index: 5;
    max-width: 480px;
    opacity: 0;                          /* starts invisible — JS fades in */
    transform: translateY(18px);
    transition: opacity 0.7s ease, transform 0.7s ease;
    border: none;
    margin: 0;
    padding: 0;
}

.s02-quote.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.s02-quote p {
    font-family: var(--font-sans);
    font-size: clamp(1rem, 1.5vw, 1.2rem);
    font-weight: 400;
    font-style: italic;
    line-height: 1.75;
    color: #111;
}

/* Layout positions for each quote (matching the sketch) */
#s02-q1 {
    margin-left: 38%;
    margin-top: 5vh;
}

#s02-q2 {
    margin-left: 8%;
    margin-top: 8vh;
}

#s02-q3 {
    margin-left: 52%;
    margin-top: 6vh;
}

#s02-q4 {
    margin-left: 8%;
    margin-top: 8vh;
}

/* ─── METODE block (bottom destination) ────────────── */
.s02-metode-block {
    position: relative;
    z-index: 5;
    margin-top: 6vh;
    margin-bottom: 0;
    padding: 0;
    /* Tall enough to contain the watermark + centred text */
    min-height: 38vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

/* Giant watermark text — centred behind the text block */
.s02-metode-watermark {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-family: var(--font-display);
    font-size: clamp(5rem, 15vw, 180px);
    font-weight: 800;
    color: #F0F0F0;
    white-space: nowrap;
    pointer-events: none;
    z-index: 0;
    letter-spacing: -0.03em;
    line-height: 0.85;
    user-select: none;
}

.s02-metode-inner {
    position: relative;
    z-index: 1;
    /* Centred horizontally; more breathing room above */
    max-width: 520px;
    width: 90%;
    margin: 0 auto;
    padding: 5vh 0 4vh;
}

.s02-metode-text {
    font-family: var(--font-sans);
    font-size: clamp(1.15rem, 1.6vw, 1.3rem); /* ~18% larger than before */
    font-weight: 400;
    font-style: normal;
    line-height: 1.85;
    color: #000;
    transition: color 0.8s ease;
}

/* The colour-change state triggered by GSAP */
.s02-metode-text.is-blue {
    color: #001BFF;
}

/* ─── CTA ELEMENT (End of Section 02) ──────────────── */
.s02-cta {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-bottom: 5vh;
    margin-top: 30vh; /* Pushed even further down to accommodate the longer blue line arrow */
    opacity: 0; /* Hidden initially */
    z-index: 10;
}

.s02-cta-text {
    font-family: 'Caveat', cursive;
    font-size: clamp(2rem, 3.5vw, 3rem);
    font-weight: 600;
    color: #001BFF;
    text-transform: uppercase;
    text-align: center;
    line-height: 1;
    letter-spacing: 0.02em;
}

/* --- SEKTION 04 (WORK INDEX) --- */
.section-04 {
    position: relative;
    width: 100vw;
    min-height: 100vh;
    background-color: var(--paper);
    z-index: 10;
    padding: 2vw;
    padding-top: 2vh; /* Stram overgang fra METODE-afsnittet */
}

.s04-label {
    grid-column: 1 / -1;
    display: flex;
    align-items: center;
    font-family: var(--font-sans);
    font-size: 1rem;
    color: #444;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 2rem;
    font-weight: 500;
}

.s04-label .vertical-line {
    width: 2px;
    height: 1.2rem;
    background-color: #444;
    margin-right: 1rem;
}

.work-grid {
    grid-column: 1 / -1;
    display: grid;
    grid-template-columns: repeat(3, 1fr); /* 3 kolonner layout, flugter fint indeni det underliggende 12-kolonners grid */
    gap: 20px;
    /* Magazine style toplinje før sagerne */
    border-top: 1px solid var(--text-dark);
    padding-top: 40px;
    padding-bottom: 10vh;
}

.work-card {
    display: flex;
    flex-direction: column;
    margin-bottom: 40px;
    cursor: pointer;
}

/* Kvadratisk eller 3:4 billede */
.card-image-container {
    position: relative;
    width: 100%;
    aspect-ratio: 3 / 4; /* 3:4 format jf. instruks */
    background-color: #dbdbdb; /* Placeringfarve indtil assets ligger række */
    margin-bottom: 15px;
    overflow: hidden;
}

.card-image {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    /* transition: transform 0.5s ease; */ /* Fjernet dynamisk zoom jf. instruks */
}

/* Modifier til Case 03 for at undgå beskæring (cuttet billede) */
.card-image-container.case-03-container {
    background-color: var(--paper); /* Hvid baggrund */
}

img.card-image.case-03-image {
    width: 100%;
    height: auto;
    max-height: 100%;
    object-fit: contain; /* Helt billede synligt */
    object-position: left center; /* Flugter mod venstre */
    display: block;
}

/* Modifier til Case 04 for at undgå beskæring */
.card-image-container.case-04-container {
    background-color: var(--paper);
}

img.card-image.case-04-image {
    width: 100%;
    height: auto;
    max-height: 100%;
    object-fit: contain;
    object-position: center;
    display: block;
}

/* Play Indicator lagt over billede til case 01 */
.play-indicator {
    position: absolute;
    bottom: 10px;
    right: 10px;
    background-color: var(--text-dark);
    color: var(--paper);
    font-family: var(--font-sans);
    font-size: 0.7rem;
    padding: 4px 8px;
    font-weight: 500;
    letter-spacing: 0.05em;
    opacity: 0.8;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.card-image-container.playing .play-indicator {
    opacity: 0; /* Skjul når det spiller, hvis ønsket, eller skift tekst via JS */
}

/* Diskret Audio Afspiller */
.discrete-audio {
    width: 100%;
    height: 30px;
    margin-top: 15px;
    opacity: 0.4;
    filter: grayscale(100%); /* Fjerner browser farver og holder stringens */
    transition: opacity 0.3s ease;
}

.discrete-audio:hover {
    opacity: 1;
}

/* Metadata og Tekst */
.card-meta {
    margin-bottom: 15px;
}

.category-label {
    display: inline-block;
    background-color: #001BFF;
    color: var(--paper); /* Hvid tekst */
    font-family: var(--font-sans);
    font-weight: 500;
    font-size: 0.75rem;
    padding: 4px 8px;
    margin-bottom: 10px;
    letter-spacing: 0.05em;
}

.meta-date {
    font-family: var(--font-sans); /* Inter/Helvetica */
    font-size: 14px; /* Lidt større jf. instruks */
    color: var(--text-dark);
    margin-top: 6px;
    display: block;
    line-height: 1.2;
}

.meta-project {
    font-family: var(--font-sans);
    font-size: 14px; /* Lidt større jf. instruks */
    color: var(--text-dark);
    margin-top: 2px;
    display: block;
    line-height: 1.2;
}

.card-title {
    font-family: var(--font-sans);
    font-size: 1.1rem;
    font-weight: 600; /* Bold titel */
    margin-bottom: 8px;
    color: var(--text-dark);
    line-height: 1.3;
    min-height: 2.6em; /* Sikrer at 2 linjer altid er reserveret, så beskrivelsen flugter */
}

.card-desc {
    font-family: var(--font-sans);
    font-size: 0.95rem;
    color: #444;
    line-height: 1.5;
    /* Linjetruncering fjernet, så den fulde tekst altid læses i bund */
}

/* --- SEKTION 05 (KREATIVE PROJEKTER) --- */
.section-05 {
    position: relative;
    width: 100vw;
    background-color: #000000; /* Dark Mode */
    color: #001BFF; /* Dyb Neonblå jf. instruks */
    font-family: 'Caveat', cursive; /* Organisk håndskrift */
    z-index: 10;
    padding-top: 15vh; /* Extrapolared airy layout */
    padding-bottom: 10vh;
    overflow: hidden;
}

.s05-header {
    margin-bottom: 6rem;
    padding-left: 0;
    max-width: 100%;
    width: 100vw;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    min-height: 30vh; /* Skaber masser af vertikal 'negative space' */
    text-align: center;
}

.s05-stringent-label {
    font-family: var(--font-sans);
    font-size: 1rem;           /* Matcher PRODUKTIONER / 03 */
    color: #cccccc;
    text-transform: uppercase;
    letter-spacing: 0.1em;     /* Matcher PRODUKTIONER / 03 */
    font-weight: 500;          /* Matcher PRODUKTIONER / 03 */
    margin-bottom: 3rem;
    padding-left: 0;
}

.s05-title {
    font-family: 'Caveat', cursive;
    font-size: clamp(1.8rem, 4vw, 3.5rem);
    font-weight: 500;
    line-height: 1.4; /* Øget marginalt for balance */
    margin-top: 0.5rem;
    margin-bottom: 2rem; /* Reduced to align with airy feel */
    color: #FFFFFF;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.3);
    text-transform: uppercase;
    min-height: 1.3em;
    max-width: 100%; 
    text-align: center; /* Horisontalt centreret jf. referencebillede */
    padding-left: 0; /* Fjern venstre padding */
}

/* ─── NEW SUB-HEADINGS FROM SKETCH ────────────────── */
.s05-sub-header-container {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 1rem;
    margin-bottom: 1rem;
    gap: 1.5rem;
}

.s05-sub-title {
    font-family: 'Caveat', cursive;
    font-size: clamp(1.8rem, 4vw, 3.5rem); /* Same as main title */
    font-weight: 500;
    color: #FFFFFF;
    text-transform: uppercase;
    margin: 0;
    line-height: 1;
    text-shadow: 0 0 5px rgba(255, 255, 255, 0.2);
}

.s05-centered-sub {
    text-align: center;
    width: 100%;
    margin-top: 1rem; /* Minimized gap reach */
    margin-bottom: 1rem;
}

.s05-curve-arrow {
    width: 60px;
    height: auto;
    transform: rotate(10deg);
}

.title-line {
    display: block; /* Sørger for eksakt to-linjers break i HTML */
}

.scroll-container {
    display: flex;
    overflow-x: auto;
    overflow-y: hidden;
    white-space: nowrap;
    position: relative;
    width: 100vw;
    -ms-overflow-style: none;  /* IE and Edge */
    scrollbar-width: none;  /* Firefox */
    cursor: grab;
}

.scroll-container::-webkit-scrollbar {
    display: none;
}

.scroll-container.active {
    cursor: grabbing;
}

.foto-banner, .grafik-banner {
    margin-bottom: 80px; /* Tilføjet massiv luft jf. instruks */
}

.grafik-banner {
    margin-bottom: 0px; /* Det sidste element i sektionen behøver ikke margin-bottom */
}

.scroll-track {
    display: flex;
    gap: 30px;
    padding-left: 30px;
    width: max-content;
}

.carousel-item {
    display: flex;
    flex-direction: column;
    cursor: pointer;
    transition: opacity 0.3s ease;
}

.carousel-item:hover {
    opacity: 0.8;
}

.carousel-img {
    height: 45vh;
    width: auto;
    object-fit: cover; /* Cover for ensartet visning uden kanter */
    background-color: transparent; /* Clean blend intok dark bg */
}

.grafik-img {
    height: 60vh; /* Højere posters */
}

.carousel-caption {
    font-family: 'Caveat', cursive;
    font-size: 28px; /* 50% større end tidligere 18.75px */
    color: #FFFFFF;
    margin-top: 20px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* ─── Kreative video showcase ────────────────────────── */
.kreativ-video-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    width: 100vw;
    margin-top: 80px;
}

.kreativ-video-block {
    position: relative;
    overflow: hidden;
}

.kreativ-video-wrapper {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 10;
    overflow: hidden;
    background: #000;
}

.kreativ-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    opacity: 0.85;
    transition: opacity 0.5s ease;
}

.kreativ-video-block:hover .kreativ-video {
    opacity: 0.6;
}

/* Dark gradient overlay at the bottom — always visible */
.kreativ-video-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 3rem 2rem 1.8rem;
    background: linear-gradient(to top, rgba(0,0,0,0.75) 0%, transparent 100%);
    display: flex;
    align-items: flex-end;
    pointer-events: none;
}

.kreativ-video-caption {
    font-family: 'Caveat', cursive;
    font-size: 28px;
    color: #ffffff;
    font-style: italic;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin: 0;
    transition: color 0.4s ease;
    line-height: 1.2;
}

.kreativ-video-block:hover .kreativ-video-caption {
    color: #001BFF; /* Neonblå ved hover */
}

/* --- GLOBAL LIGHTBOX --- */
.lightbox-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: #000000; /* Solid kulsort baggrund jf. instruks */
    z-index: 10000;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s ease;
}

.lightbox-overlay.active {
    opacity: 1;
    pointer-events: auto;
}

.lightbox-close {
    position: absolute;
    top: 30px;
    right: 40px;
    background: none;
    border: none;
    font-family: var(--font-sans);
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0.1em;
    cursor: pointer;
    color: #FFFFFF; /* Hvid tekst så det kan læses på sort overlay */
    z-index: 10001;
}

.lightbox-image {
    max-width: 90vw;
    max-height: 90vh;
    object-fit: cover; /* Cover for at fjerne white padding indeni */
    background-color: transparent;
    border: none;
    outline: none;
    /* Fjernet shadow for at opnå raw look */
}

/* --- MINIMALIST MODAL FOR CASE 09 --- */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: var(--paper);
    z-index: 9999;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s ease;
}

.modal-overlay.active {
    opacity: 1;
    pointer-events: auto;
}

.modal-content {
    text-align: left;
    max-width: 600px;
    width: 90%;
    position: relative;
}

.modal-close {
    position: absolute;
    top: -60px;
    right: 0;
    background: none;
    border: none;
    font-family: var(--font-sans);
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0.1em;
    cursor: pointer;
    color: var(--text-dark);
}

.modal-title {
    font-family: var(--font-display);
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: var(--text-dark);
}

.modal-links {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.modal-link {
    font-family: var(--font-sans);
    font-size: 1.2rem;
    text-decoration: none;
    color: var(--text-dark);
    padding-bottom: 5px;
    border-bottom: 1px solid transparent;
    transition: border-color 0.3s ease, opacity 0.3s ease;
    align-self: flex-start;
}

.modal-link:hover {
    border-color: var(--text-dark);
    opacity: 0.6;
}

/* =====================================================
   FOOTER: Visitkort-sektion
   ===================================================== */
.site-footer {
    position: relative;
    width: 100vw;
    min-height: 70vw; /* Større footer */
    max-height: 100vh;
    background-color: #001BFF;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    z-index: 10;
}

/* Illustration — centreret over hele footeren som baggrundslag */
.footer-illustration {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-42%);
    height: 100%;
    width: auto;
    object-fit: contain;
    object-position: center top;
    filter: invert(1);
    mix-blend-mode: screen;
    opacity: 0.5;
    pointer-events: none;
    will-change: transform;
}

/* Astrid logo — centreret over SØNDERGAARD */
.footer-astrid-logo {
    position: relative;
    display: block;
    width: clamp(260px, 34.5vw, 550px); /* 20% større */
    transform: rotate(-3deg);
    filter: invert(1);
    mix-blend-mode: screen;
    pointer-events: none;
    opacity: 0.55; /* Diskret, gennemsigtig */
    margin-bottom: -3rem; /* Overlapper med SØNDERGAARD nedenunder */
    z-index: 3;
}

/* Name block — fuldbredde, lodret centreret */
.footer-name-block {
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    transform: translateY(-50%);
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center; /* Logo og tekst centreret */
}

/* SØNDERGAARD — kant til kant, som PORTFOLIO i hero */
.footer-surname {
    font-family: var(--font-display);
    font-size: 6.96vw; /* 40% reduceret */
    font-weight: 800;
    color: rgba(255,255,255,0.38);
    text-transform: uppercase;
    letter-spacing: 0.04em;
    line-height: 1;
    user-select: none;
    white-space: nowrap;
    width: 100vw;
    padding: 0 0 0 0;
    /* Flugt med kanter — fjern evt. indent */
    margin-left: -0.02em;
}

/* Info-bar — hvid skillelinje i bunden */
.footer-info-bar {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.4rem 4vw;
    border-top: 1px solid rgba(255,255,255,0.25);
    z-index: 4;
}

.footer-title {
    font-family: var(--font-sans);
    font-size: 0.72rem;
    font-weight: 500;
    color: rgba(255,255,255,0.75);
    text-transform: uppercase;
    letter-spacing: 0.14em;
}

.footer-contact {
    display: flex;
    gap: 2.5rem;
    align-items: center;
}

.footer-link {
    font-family: var(--font-sans);
    font-size: 0.72rem;
    font-weight: 500;
    color: #ffffff;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    border-bottom: 1px solid rgba(255,255,255,0.35);
    padding-bottom: 1px;
    transition: opacity 0.3s ease;
}

.footer-link:hover {
    opacity: 0.6;
}

/* =====================================================
   SEKTION 05: LÆR MIG LIDT BEDRE AT KENDE / 05 (WHITE/BLUE MIX)
   ===================================================== */
.section-05-about {
    position: relative;
    width: 100vw;
    z-index: 10;
    overflow: hidden;
}

/* Hvid Zone */
.s05-white-zone {
    background-color: #FFFFFF;
    color: #001BFF;
    padding: 15vh 0 8vh; /* Airy top, less bottom to join blue */
}

.s05-header-white {
    padding: 0 8.33%;
    margin-bottom: 8vh;
}

.s05-label-blue {
    font-family: var(--font-sans);
    font-size: 1rem;
    color: #001BFF;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-weight: 500;
}

.s05-content-white {
    padding: 0 8.33%;
    max-width: 1150px;
}

.s05-content-white p {
    font-family: var(--font-sans);
    font-size: clamp(1.1rem, 1.4vw, 1.3rem);
    line-height: 1.8;
    margin-bottom: 2.5rem;
}

.s05-content-white strong {
    font-weight: 700;
}

/* Blå Zone */
.s05-blue-zone {
    background-color: #001BFF;
    color: #FFFFFF;
    width: 100vw;
    padding: 8vh 0 15vh; /* Seamless join with white part */
}

.s05-blue-content {
    padding: 0 8.33% 0 30%; /* Shift text right (30%) and add balanced air on the right (8.33%) */
    max-width: none; /* Allow text to flow wider towards the right */
}

.s05-blue-content p {
    font-family: var(--font-sans);
    font-size: clamp(1.1rem, 1.4vw, 1.3rem);
    line-height: 1.8;
    margin-bottom: 2.5rem;
}


