/* ============ BASISSTIJLEN ============ */
body, h1, h2, p {
    margin: 0;
    padding: 0;
    font-family: Arial, sans-serif;
}

body {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    background: #ecf0f1;
}

/* ============ HEADER ============ */
.fixed-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 180px;
    background: #393f4d;
    color: #d4d4dc;
    display: grid;
    grid-template: 
        "logo-l titel logo-r" auto
        "nav nav nav" auto / 150px 1fr 150px;
    align-items: center;
    padding: 0 20px;
    z-index: 1000;
    box-sizing: border-box;
}

.logo-links, .logo-rechts {
    width: 150px;
    height: 150px;
    display: flex;
    flex-shrink: 0;
}

.logo-links { 
    justify-content: flex-start;
    grid-area: logo-l;
}
.logo-rechts { 
    justify-content: flex-end;
    grid-area: logo-r;
}

.logo-links img, 
.logo-rechts img {
    width: auto;
    height: 100%;
    max-width: 100%;
    object-fit: contain;
}

.titel-nav {
    grid-area: titel;
    text-align: center;
    padding: 0 20px;
}

.titel-nav h1 {
    margin-bottom: 15px;
    font-size: clamp(1.5rem, 4vw, 2.5rem);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* Aangepaste navigatie layout */
.titel-nav nav {
    grid-area: nav;
    display: grid;
    justify-content: center;
    gap: 15px;
    padding-top: 15px;
}

/* Desktop: alle links naast elkaar */
@media (min-width: 769px) {
    .titel-nav nav {
        grid-template-columns: repeat(5, auto);
        gap: 20px;
    }
}

/* Tablet EN Mobiel: links in 2 kolommen */
@media (max-width: 768px) {
    .titel-nav nav {
        grid-template-columns: repeat(2, auto);
        gap: 10px 15px;
    }
    
    /* Kleinere aanpassingen voor mobiel */
    @media (max-width: 480px) {
        .titel-nav nav {
            gap: 8px 12px;
            padding-top: 10px;
        }
        
        .titel-nav nav a {
            padding: 4px 8px;
            font-size: 0.8rem;
        }
    }
}

.titel-nav nav a {
    color: #feda6a;
    text-decoration: none;
    font-size: clamp(0.9rem, 2vw, 1.2rem);
    padding: 5px 10px;
    white-space: nowrap;
    transition: color 0.3s ease;
    text-align: center;
}

.titel-nav nav a:hover {
    color: #FF6B6B;
}

/* ============ HOOFDCONTENT ============ */
.content {
    flex: 1;
    padding: 20px;
    margin: 180px 0 0;
    padding-bottom: 120px;
    background: #1d1e22;
}

/* ============ OVER ONS SECTIE ============ */
#over-ons {
    padding: 80px 20px;
    max-width: 1200px;
    margin: 0 auto 60px;

}

.about-container {
    display: flex;
    flex-direction: column;
    gap: 60px;
}

.about-row {
    display: flex;
    align-items: stretch;
    gap: 40px;
    min-height: 400px;
}

.about-row.reverse {
    flex-direction: row-reverse;
}

.about-image {
    flex: 1;
    min-width: 300px;
    display: flex;
}

.about-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 12px;
    border: 3px solid #d4d4dc;
    box-shadow: 0 4px 8px rgba(0,0,0,0.2);
}

.about-text {
    flex: 1;
    padding: 30px;
    background-color: #393f4d;
    border-radius: 12px;
    border: 2px solid #d4d4dc;
    color: #feda6a;
    box-shadow: 0 4px 8px rgba(0,0,0,0.2);
    display: flex;
    flex-direction: column;
}

.about-text h2 {
    color: #feda6a;
    margin-bottom: 20px;
    font-size: 1.8rem;
    border-bottom: 1px solid #FFC857;
    padding-bottom: 10px;
}

.about-text p {
    line-height: 1.6;
    font-size: 1.1rem;
    color: #feda6a;
    margin: 0;
    flex-grow: 1;
}

/* Responsive aanpassingen */
@media (max-width: 768px) {
    .about-row, .about-row.reverse {
        flex-direction: column;
        min-height: auto;
        gap: 20px;
    }
    
    .about-image {
        height: 300px;
        min-width: 100%;
        width: 100%;
    }
    
    .about-text {
        width: 100%;
        padding: 20px;
        box-sizing: border-box;
    }
}

@media (max-width: 480px) {
    .about-container {
        gap: 40px;
    }
    
    .about-text h2 {
        font-size: 1.5rem;
    }
    
    .about-text p {
        font-size: 1rem;
    }
}

/* ============ FOTOSTRIP ============ */
.foto-strip-wrapper {
    position: fixed;
    bottom: 120px;
    left: 0;
    width: 100%;
    height: 100px;
    background-color: #2A9D8F;
    z-index: 999;
    overflow: hidden;
}

.foto-strip {
    display: flex;
    height: 100%;
    width: max-content;
    gap: 0px;
    padding: 0 0px;
}

.foto-strip img {
    width: 100px;
    height: 100px;
    object-fit: cover;
    flex-shrink: 0;
}

/* ============ FOOTER ============ */
.fixed-footer {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 120px;
    background: #393f4d;
    color: white;
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: flex-end;
    padding: 20px;
    z-index: 1000;
    box-sizing: border-box;
}

.footer-copyright {
    display: flex;
    justify-content: center;
    align-items: flex-end;
    height: 100%;
	color: #d4d4dc;
}

.footer-nav {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 8px;
    justify-content: flex-end;
    height: 100%;
}

.footer-nav a {
    color: #feda6a;
    text-decoration: none;
    font-size: 0.9rem;
    white-space: nowrap;
    transition: color 0.3s ease;
    text-align: left;
    width: 100%;
    padding-right: 10px;
    box-sizing: border-box;
}

.footer-nav a:hover {
    color: #FF6B6B;
}

/* ============ RESPONSIVE AANPASSINGEN ============ */
@media (max-width: 1024px) {
    .fixed-header {
        height: 160px;
        grid-template-columns: 120px 1fr 120px;
    }
    .logo-links, .logo-rechts {
        width: 120px;
        height: 120px;
    }
    .content {
        margin: 160px 0 0;
        padding-bottom: 120px;
    }
}

@media (max-width: 768px) {
    .fixed-header {
        min-height: 140px;
        grid-template: 
            "logo-l titel logo-r" auto
            "nav nav nav" auto / 80px 1fr 80px;
    }
    .logo-links, .logo-rechts {
        width: 80px;
        height: 80px;
    }
    .content {
        margin: 140px 0 0;
        padding-bottom: 120px;
    }
}

@media (max-width: 480px) {
    .fixed-header {
        min-height: 120px;
        grid-template-columns: 60px 1fr 60px;
    }
    .logo-links, .logo-rechts {
        width: 60px;
        height: 60px;
    }
    .content {
        margin: 120px 0 0;
        padding-bottom: 80px;
    }
    .fixed-footer {
        height: 80px;
        padding: 10px;
    }
    .footer-nav a {
        font-size: 0.8rem;
        padding-right: 5px;
    }
    
    .foto-strip-wrapper {
        bottom: 80px;
        height: 60px;
    }
    .foto-strip img {
        width: 60px;
        height: 60px;
    }
}