/* ------------------------------
   BASISSTIJL
------------------------------ */
body {
    margin: 0;
    font-family: 'Poppins', sans-serif;
    background-color: #faf8f6;
    color: #3b2f2f;
    overflow-x: hidden;
}

/* ------------------------------
   CONTAINER LAYOUT
------------------------------ */
.redband-container {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 3rem;
    padding: 5rem 6%;
}

/* ------------------------------
   LINKERKOLOM
------------------------------ */
.left-column {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

.title {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    color: #7b2f2f;
    line-height: 1.1;
    margin-bottom: 0.5rem;
}

.subtitle {
    font-family: 'Playfair Display', serif;
    font-size: 1.6rem;
    color: #7b2f2f;
    margin-bottom: 2rem;
    letter-spacing: 1px;
}

.left-column p {
    line-height: 1.7;
    font-size: 1rem;
    margin-bottom: 1rem;
    max-width: 450px;
}

/* ------------------------------
   RECHTERKOLOM
------------------------------ */
.right-column {
    display: flex;
    flex-direction: column;
    gap: 4rem;
}

/* ------------------------------
   RESEARCH
------------------------------ */
.section-title {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    color: #7b2f2f;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.research-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.research-text ul {
    list-style-type: none;
    padding: 0;
    margin: 0;
}

.research-text li {
    margin-bottom: 0.8rem;
    font-size: 0.95rem;
}

.research-images img {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    margin-bottom: 1rem;
}

/* ------------------------------
   INSPIRATIE
------------------------------ */
.inspiratie-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.inspiratie-item img {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    margin-bottom: 0.8rem;
}

.inspiratie-item p {
    font-size: 0.95rem;
    line-height: 1.6;
    opacity: 0.9;
}

/* ------------------------------
   ANIMATIES
------------------------------ */
.fade-in {
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 1s ease forwards;
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ------------------------------
   RESPONSIEF
------------------------------ */
@media (max-width: 1024px) {
    .redband-container {
        grid-template-columns: 1fr;
        padding: 3rem 2rem;
    }

    .research-content {
        grid-template-columns: 1fr;
    }
}

/* ------------------------------
   TEASER-SECTIE
------------------------------ */
.teaser-section {
    padding: 8rem 6%;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 90vh;
    background-color: #faf8f6;
}

.teaser-container {
    display: grid;
    grid-template-columns: 1fr 0.8fr;
    gap: 4rem;
    align-items: center;
}

/* Tekst links */
.teaser-text {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.teaser-title {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    color: #7b2f2f;
    line-height: 1.2;
    margin-bottom: 2rem;
}

.teaser-text p {
    font-size: 1rem;
    line-height: 1.7;
    max-width: 420px;
    opacity: 0.9;
}

/* Video rechts */
.teaser-video {
    display: flex;
    justify-content: center;
}

.teaser-video video {
    width: 100%;
    max-width: 400px;
    aspect-ratio: 9 / 16;
    /* Staand videoformaat */
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    background-color: #000;
    transition: transform 0.6s ease, box-shadow 0.6s ease;
}

.teaser-video video:hover {
    transform: scale(1.03);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.25);
}

/* Fade-in effect bij scroll */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 1.2s ease forwards;
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsief */
@media (max-width: 1024px) {
    .teaser-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }

    .teaser-title {
        font-size: 2.4rem;
    }

    .teaser-video video {
        max-width: 320px;
    }
}

/* ------------------------------
   AANKONDIGING-SECTIE
------------------------------ */
.announcement-section {
    padding: 8rem 6%;
    background-color: #faf8f6;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 90vh;
}

.announcement-container {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 4rem;
    align-items: center;
}

/* Tekst links */
.announcement-text {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.announcement-title {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    color: #7b2f2f;
    line-height: 1.2;
    margin-bottom: 2rem;
}

.announcement-text p {
    font-size: 1rem;
    line-height: 1.8;
    max-width: 420px;
    opacity: 0.9;
}

/* Afbeelding rechts */
.announcement-image {
    display: flex;
    justify-content: center;
}

.announcement-image img {
    width: 100%;
    max-width: 600px;
    border-radius: 12px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
    transition: transform 0.6s ease, box-shadow 0.6s ease;
}

.announcement-image img:hover {
    transform: scale(1.03);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.25);
}

/* Fade-in animatie */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 1.2s ease forwards;
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ------------------------------
   RESPONSIEF ONTWERP
------------------------------ */
@media (max-width: 1024px) {
    .announcement-container {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }

    .announcement-title {
        font-size: 2.4rem;
    }

    .announcement-image img {
        max-width: 400px;
    }
}

/* ------------------------------
   ONTKNOPING-SECTIE
------------------------------ */
.reveal-section {
    padding: 8rem 6%;
    background-color: #faf8f6;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 90vh;
}

.reveal-container {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 4rem;
    align-items: center;
}

/* Tekst links */
.reveal-text {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.reveal-title {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    color: #7b2f2f;
    line-height: 1.2;
    margin-bottom: 2rem;
}

.reveal-text p {
    font-size: 1rem;
    line-height: 1.8;
    max-width: 420px;
    opacity: 0.9;
}

/* Afbeelding rechts */
.reveal-image {
    display: flex;
    justify-content: center;
}

.reveal-image img {
    width: 100%;
    max-width: 600px;
    border-radius: 12px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
    transition: transform 0.6s ease, box-shadow 0.6s ease;
}

.reveal-image img:hover {
    transform: scale(1.03);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.25);
}

/* Fade-in animatie */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 1.2s ease forwards;
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsief ontwerp */
@media (max-width: 1024px) {
    .reveal-container {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }

    .reveal-title {
        font-size: 2.4rem;
    }

    .reveal-image img {
        max-width: 400px;
    }
}