/* Basisstijl */
body {
    margin: 0;
    font-family: 'Poppins', sans-serif;
    background-color: #faf8f6;
    color: #3b2f2f;
    overflow-x: hidden;
}

/* Sectie layout */
.identiteit {
    padding: 4rem 2rem;
    display: flex;
    justify-content: center;
    min-height: 100vh;
}

.identiteit-container {
    display: grid;
    grid-template-columns: 1fr 1.2fr 1fr;
    gap: 2rem;
    max-width: 1200px;
    width: 100%;
    align-items: start;
}

/* Titels en tekst */
.titel {
    font-family: 'Playfair Display', serif;
    font-size: 2.8rem;
    color: #7b2f2f;
    margin-bottom: 2rem;
    line-height: 1.1;
    text-align: center;
    letter-spacing: 1px;
}

.identiteit-center p {
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 1.2rem;
    opacity: 0.9;
}

/* Afbeeldingen */
.mockup,
.poster,
.flyer,
.cans {
    width: 100%;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.6s ease, box-shadow 0.6s ease;
}

/* Hover-animatie */
.hover-zoom:hover {
    transform: scale(1.04);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

/* Fade-in animatie */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 1s ease forwards;
}

.fade-in:nth-child(1) {
    animation-delay: 0.1s;
}

.fade-in:nth-child(2) {
    animation-delay: 0.3s;
}

.fade-in:nth-child(3) {
    animation-delay: 0.5s;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsief ontwerp */
@media (max-width: 900px) {
    .identiteit-container {
        grid-template-columns: 1fr;
    }

    .titel {
        text-align: left;
        font-size: 2.2rem;
    }

    .mockup,
    .poster,
    .flyer,
    .cans {
        margin: 1rem 0;
    }
}