.site-footer {
    background: #fff;
    font-family: 'Open Sans', sans-serif;
    box-shadow: 0px -2px 10px 0px #00000026;
    position: relative;
    overflow: hidden;
}

/* ── Top sectie ───────────────────────────────────────── */

.top__footer {
    position: relative;
    overflow: hidden;
    padding: 60px 0 80px;
}

.inner__footer {
    max-width: 1600px;
    margin: 0 auto;
    padding: 0 40px;
}

.grid__footer {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 48px;
    position: relative;
    z-index: 1;
}

/* ── Brand kolom ──────────────────────────────────────── */

.brand__footer {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.tagline__footer {
    font-size: 28px;
    font-weight: 400;
    line-height: 1.4;
    color: #3A528B;
    margin: 0;
    max-width: 380px;
}

.tagline__footer strong {
    font-weight: 700;
}

.logo__footer img,
.logo__footer .custom-logo {
    height: 132px;
    width: auto;
    display: block;
}

/* ── Kolommen ─────────────────────────────────────────── */

.col__footer {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.heading__footer {
    font-size: 20px;
    font-weight: 700;
    color: #3A528B;
    margin: 0;
}

.list__footer {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

/* Socials met icoon vóór de link (scoped, raakt het footer-menu niet) */
.socials__footer li {
    display: flex;
    align-items: center;
    gap: 10px;
}

/* Social-iconen — blauw (#3A528B) via currentColor op de SVG */
.socials__footer li svg {
    flex-shrink: 0;
    color: #3A528B;
    width: 1.4em;
    height: 1.4em;
    transition: 0.3s all;
}

.list__footer a {
    font-size: 17px;
    font-weight: 400;
    color: #3A528B;
    text-decoration: none;
    transition: 0.3s all;
}

.list__footer a:hover {
    color: #3A528B;
    transition: 0.3s all;
	text-decoration: underline;
}

.contact-list__footer li {
    transition: 0.3s all;
}

.contact-list__footer li:hover {
    color: #3A528B;
    transition: 0.3s all;
}

.contact-list__footer li svg { 
    transition: 0.3s all;
}

.contact-list__footer li:hover svg {
    color: #3A528B;
    transition: 0.3s all;
}

.golf-footer {
    height: 140px;
    width: 630px;
    position: absolute;
    top: 280px;
    right: -100px;
    /* bottom: 0; */
    transform: rotate(320deg);
    z-index: 0;

}

/* ── Contact lijst ────────────────────────────────────── */

.contact-list__footer {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.contact-list__footer li {
    display: flex;
    align-items: center;
    gap: 10px;
}

.contact-list__footer svg {
    flex-shrink: 0;
    color: #3A528B;
    width: 1.4em;
    height: 1.4em;
}

.contact-list__footer li {
    color: #3A528B;
}

.contact-list__footer a {
    font-size: 17px;
    font-weight: 400;
    color: #3A528B;
    text-decoration: none;
    transition: color 0.15s;
}

.contact-list__footer a:hover {
    color: #3A528B;
	text-decoration: underline;
}

/* ── Wave decoratie ───────────────────────────────────── */

.wave__footer {
    position: absolute;
    bottom: 0;
    right: -10px;
    width: 55%;
    height: 160px;
    pointer-events: none;
}

.wave__footer svg {
    width: 100%;
    height: 100%;
}

/* ── Bottom bar ───────────────────────────────────────── */

.bottom__footer {
    border-top: 1px solid #e8e8e8;
    padding: 20px 0;
}

.bottom__footer .inner__footer {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
}

.copyright__footer {
    font-size: 13px;
    color: #3A528B;
    margin: 0;
}

.legal__footer {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
}

.legal__footer li + li::before {
    content: '|';
    padding: 0 8px;
    color: #ccc;
}

.legal__footer a {
    font-size: 13px;
    color: #3A528B;
    text-decoration: none;
    transition: color 0.15s;
}

.legal__footer a:hover {
    color: #3A528B;
    text-decoration: underline;
}

/* ── Mobiel ───────────────────────────────────────────── */

@media (max-width: 900px) {
    .grid__footer {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }

    .brand__footer {
        grid-column: 1 / -1;
    }

    .wave__footer {
        width: 80%;
        height: 120px;
    }
}

@media (max-width: 560px) {
    .grid__footer {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .inner__footer {
        padding: 0 20px;
    }

    .top__footer {
        padding: 40px 0 60px;
    }

    .wave__footer {
        width: 100%;
        height: 100px;
    }
}

@media (max-width: 1000px) and (min-width: 900px) {
    .golf-footer {
         top: 320px;
    }
}

@media (max-width: 899px) and (min-width: 600px) {
    .golf-footer {
         top: unset;
         bottom: 0;
    }
}

@media (max-width: 599px) {
    .golf-footer {
         top: unset;
         bottom: 0;
         width: 200px;
        height: 65px;
    }
	
	.copyright__footer {
		max-width: 150px;
	}
}

