/* ==========================================================================
   MINIMALISTISCHE FOOTER STYLING
   ========================================================================== */

/* 1. Hoofd Footer Container */
.main-footer {
    width: 100%;
    background-color: #111111; /* Volledig zwarte achtergrond voor een krachtig contrast */
    color: #ffffff;
    padding: 80px 0 0 0; /* Ruimte aan de bovenkant, onderkant wordt opgevuld door bottom-bar */
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr; /* Kolom 1 krijgt iets meer ruimte voor de introtekst */
    gap: 60px;
    align-items: flex-start;
}

/* 2. Typografie & Koppen (Oswald) */
.main-footer h3.footer-title {
    font-family: 'Oswald', sans-serif;
    font-size: 28px;
    font-weight: 700;
    text-transform: uppercase;
    color: #ffffff;
    margin: 0 0 20px 0;
    letter-spacing: 1px;
}

.main-footer h4 {
    font-family: 'Oswald', sans-serif;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    color: #ffffff;
    margin: 0 0 20px 0;
    letter-spacing: 2px;
}

/* 3. Paragrafen en Info (Raleway) */
.footer-about-text {
    font-family: 'Raleway', sans-serif;
    font-size: 14px;
    line-height: 1.8;
    color: #cccccc; /* Iets zachter wit voor betere leesbaarheid */
    margin: 0;
    max-width: 400px;
}

/* 4. Lijsten & Links Opschonen */
.footer-links, 
.footer-contact-details {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
    font-family: 'Raleway', sans-serif;
    font-size: 14px;
    color: #cccccc;
}

/* Styling specifiek voor de nav-links */
.footer-links a {
    color: #cccccc;
    text-decoration: none;
    transition: color 0.2s ease, padding-left 0.2s ease;
    display: inline-block;
}

/* Subtiel hover effect: kleurt wit en schuift een fractie op */
.footer-links a:hover {
    color: #ffffff;
    padding-left: 4px;
}

/* Contactgegevens hebben geen hover nodig */
.footer-contact-details li {
    line-height: 1.6;
}

/* 5. Onderste Copyright Balk */
.footer-bottom {
    margin-top: 6px;
    border-top: 1px solid #222222; /* Heel subtiele donkere scheidingslijn */
    padding: 30px 0;
}

.footer-bottom-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.footer-bottom p {
    font-family: 'Raleway', sans-serif;
    font-size: 12px;
    color: #666666; /* Donkergrijs zodat het niet afleidt */
    margin: 0;
}

/* ==========================================================================
   RESPONSIVE LAYOUT (Mobiel & Tablet)
   ========================================================================== */
@media (max-width: 768px) {
    .main-footer {
        padding: 60px 0 0 0;
    }

    .footer-container {
        grid-template-columns: 1fr; /* Kolommen strak onder elkaar op mobiel */
        gap: 40px;
    }
    
    .footer-about-text {
        max-width: 100%;
    }
}
