.site-footer {
    background-color: var(--section-1-bg-color);
    color: var(--primary-color-light);
    padding: 0;
    font-family: inherit;
}

/* --- Negative Text Split-Effect --- */
.footer-brand-header {
    position: relative;
    height: clamp(140px, 22vw, 280px);
    overflow: hidden;
    user-select: none;
}

.brand-layer {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    font-size: clamp(4rem, 16vw, 10rem);
    font-weight: 800;
    line-height: 0.7;
    text-transform: uppercase;
}


/* Bovenste laag: Groene achtergrond, lichte letters (afgeknipt op 65% hoogte) */
.brand-layer-top {
    background-color: var(--primary-color-light);
    color: var(--section-1-bg-color);

}

/* --- Links & Content --- */
.footer-container {
    max-width: 1300px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 4rem;
    padding: 5rem 2rem 4rem 2rem;
}

.footer-kolom h3 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
    letter-spacing: 0.02em;
}

/* Specifieke styling voor de grotere tagline links */
.footer-kolom .tagline-header {
    font-size: 1.6rem;
    line-height: 1.2;
    font-weight: 700;
    letter-spacing: -0.02em;
}

.footer-kolom p {
    line-height: 1.6;
    opacity: 0.8;
    font-size: 0.95rem;
}

.footer-links,
.footer-contact {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li,
.footer-contact li {
    margin-bottom: 0.8rem;
    font-size: 0.95rem;
}

.footer-links a {
    color: var(--primary-color);
    text-decoration: none;
    opacity: 0.7;
    transition: opacity 0.2s ease;
    display: inline-block;
}

.footer-links a:hover {
    opacity: 1;
}

.footer-contact li {
    opacity: 0.8;
    display: flex;
    align-items: center;
    gap: 10px;
}

.contact-label {
    color: var(--primary-color);
    font-weight: 600;
    margin-right: 4px;
}

.footer-contact a {
    color: var(--primary-color);
    text-decoration: none;
    transition: opacity 0.2s ease;
}

.footer-contact a:hover {
    opacity: 0.6;
}

/* --- Footer Bottom --- */
.footer-bottom {
    width: 100%;
    display: flex;
    justify-content: center;
    padding: 1rem 2rem 1rem 2rem;
    font-size: 0.85rem;
    opacity: 0.5;
    background-color: var(--bg-color);
}

.footer-bottom-content{
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1300px;
    transition: all 0.3s ease;
}

.footer-bottom-content a{
    color: #1F4D3A;
}

.footer-bottom-content a:hover{
    opacity: 1;
}

.footer-bottom p {
    margin: 0;
}

@media (max-width: 768px) {
    .footer-container {
        gap: 2.5rem;
        padding-top: 3rem;
        padding-bottom: 3rem;
    }
}