/* --- Header --- */
header {
    position: relative;
    z-index: 10;
    background: var(--white);
    border-bottom: 1px solid var(--medium-gray);
    box-shadow: var(--shadow);
    width: 100%;
    margin: 20px auto 0 auto; /* Start met auto margin voor centreren */
    padding: 0 20px;
    max-width: 1200px;
    box-sizing: border-box; /* Zorgt dat padding binnen de width valt */
}

.header-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    padding: 32px 0 20px 0;
    width: 100%;
}

.logo-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    text-align: center;
}

.header-logo-img {
    height: 40px; /* Passende hoogte voor het logo in de header */
    width: auto;
}

.logo-text {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--primary-purple);
    text-align: center;
}

.header-title {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-purple);
    margin: 4px 0 0 0;
    line-height: 1.2;
    text-align: center;
    word-wrap: break-word;
    max-width: 100%;
}

.header-subtitle {
    font-size: 1.2rem;
    color: var(--dark-gray);
    font-weight: 400;
}


/* --- Responsive Header --- */

@media (max-width: 900px) {
    header {
        margin-top: 0;
        border-radius: 0;
    }
    .header-logo-img {
        height: 30px;
    }
    .logo-text {
        font-size: 1rem;
    }
}

@media (max-width: 768px) {
    .header-title {
        font-size: 1.5rem;
    }
}

@media (max-width: 480px) {
    .header-title {
        font-size: 1.2rem;
    }
} 