/* ACTIVE LINK - voeg een class="active" toe in HTML als je wilt dat een link de actieve pagina aangeeft */
li a.active {
    font-weight: 600;
}

/* MAIN CONTENT */

.about-container {
    display: flex;
    justify-content: center;
    padding: 100px 20px;
    background-color: #f6f7fb; /* lichtgrijs/blauw */
}

/* CARD */

.about-card {
    display: flex;
    gap: 60px;
    background-color: #ffffff;
    padding: 60px;
    border-radius: 18px;
    max-width: 1000px;
    width: 100%;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

/* TEKST */

.about-text h2 {
    font-family: 'Delius', cursive;
    font-size: 36px;
    margin-bottom: 20px;
    color: #050c46;
}

.about-text p {
    font-size: 17px;
    line-height: 1.7;
    margin-bottom: 18px;
    color: #1a1a1a;
}

/* TAGS */

/* BUTTONS */

.about-buttons {
    display: flex;
    gap: 16px;
    margin-top: 30px;
    flex-wrap: wrap;
}

.about-btn {
    text-decoration: none;
    padding: 12px 22px;
    border-radius: 6px;
    border: 2px solid #050c46;
    color: #050c46;
    font-size: 15px;
    font-weight: 500;
    transition: all 0.3s ease;
    background-color: transparent;
}

/* hover effect */

.about-btn:hover {
    background-color: #050c46;
    color: #ffffff;
}

/* primaire knop (contact) */

.about-btn.primary {
    background-color: #050c46;
    color: #ffffff;
}

.about-btn.primary:hover {
    background-color: #ffffff;
    color: #050c46;
}

/* mobiel */

@media (max-width: 900px) {
    .about-buttons {
        justify-content: center;
    }
}


/* AFBEELDING */

.about-image img {
    width: 300px;
    border-radius: 14px;
    object-fit: cover;
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.25);
}

/* RESPONSIVE */

@media (max-width: 900px) {
    header {
        padding: 0 8%;
    }

    .about-card {
        flex-direction: column;
        text-align: center;
    }

    .about-image img {
        width: 100%;
        max-width: 280px;
    }

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