#fotografie_header {
    min-height: 80px;
}

.fotografie__footer {
    bottom: 0;
    width: 100%;
    margin-top: 50px;
}

.fotografie-section {
    max-width: 1200px;
    margin: auto;
    padding: 4rem 1rem;
}

.section-header {
    text-align: left;
    margin-bottom: 3rem;
}

.section-header h1 {
    font-family: "Rubik", sans-serif;
    font-size: 2.5rem;
    color: #325395;
    margin-bottom: 0.5rem;
}

.section-header p {
    color: #525252;
    font-size: 1.1rem;
}

/* Container van alle diensten */
.fotografie-container {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

/* Elke dienst horizontaal */
.fotografie-item {
    display: flex;
    align-items: flex-start;
    gap: 2rem;
}

/* Afbeelding vierkant */
.fotografie-image {
    flex: 0 0 250px; /* vaste breedte voor de foto */
    height: 250px;
    overflow: hidden;
    border-radius: 10px;
    box-shadow: rgba(0, 0, 0, 0.4) 0px 4px 10px;
    -webkit-box-shadow: rgba(0, 0, 0, 0.4) 0px 4px 10px;
    -moz-box-shadow: rgba(0, 0, 0, 0.4) 0px 4px 10px;
}

.fotografie-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Tekst rechts van de afbeelding */
.fotografie-text {
    flex: 1;
    text-align: left;
}

.fotografie-text h2 {
    font-family: "Rubik", sans-serif;
    font-size: 1.8rem;
    color: #325395;
    margin-bottom: 0.8rem;
}

.fotografie-text p {
    color: #525252;
    line-height: 1.6;
    margin-bottom: 1.2rem;
}

/* Knop */
.fotografie-text .primary-btn {
    padding: 10px 28px;
    font-size: 1rem;
    border-radius: 40px;
    background: #355D8F;
    color: #fff;
    transition: all 0.3s ease;
    text-decoration: none;
    margin: 0;
}

.fotografie-text .primary-btn:hover {
    background: #244870;
    transform: translateY(-2px);
}

/* Responsive: op mobiel alles onder elkaar */
@media (max-width: 768px) {
    .fotografie-item {
        flex-direction: column;
        align-items: flex-start;
    }

    .fotografie-image {
        width: 100%;
        height: auto;
    }
}

@media (width > 768px) {
    #fotografie_header {
        min-height: 110px;
    }

    .nav__background__fotografie {
        position: fixed;
        top: 0;
        width: 100%;
        background: var(--navbar-color);
        height: 90px;
        opacity: 100%;
        z-index: 999;
        -webkit-box-shadow: 5px 5px 50px 0px rgba(0,0,0,0.5);
        box-shadow: 5px 5px 50px 0px rgba(0,0,0,0.5);
    }
}

@media (width > 1024px) {
    #fotografie_header {
        min-height: 110px;
    }
}