/* --- Footer Basis --- */
.main-footer {
    background-color: #111;
    color: #bbb;
    padding: 80px 5% 20px;
    font-size: 0.9rem;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 1fr 1.5fr 1.5fr;
    gap: 40px;
}

.footer-col h3 {
    color: #fff;
    font-size: 1.2rem;
    margin-bottom: 25px;
    position: relative;
}

.footer-col h3::after {
    content: '';
    position: absolute;
    left: 0; bottom: -8px;
    width: 40px; height: 2px;
    background: var(--brand-yellow);
}

.footer-logo { height: 50px; margin-bottom: 20px; }

/* Links & Lijsten */
.footer-col ul { list-style: none; padding: 0; }
.footer-col ul li { margin-bottom: 12px; }
.footer-col ul li a { color: #bbb; text-decoration: none; transition: 0.3s; }
.footer-col ul li a:hover { color: var(--brand-yellow); padding-left: 5px; }

/* Social Icons */
.social-links { display: flex; gap: 15px; margin-top: 20px; }
.social-links a {
    width: 35px; height: 35px;
    background: #222;
    display: flex; align-items: center; justify-content: center;
    border-radius: 50%; color: #fff; transition: 0.3s;
    text-decoration: none;
}
.social-links a:hover { background: var(--brand-yellow); color: var(--brand-dark); }

/* Contact Specifics */
.contact-list li i { color: var(--brand-yellow); margin-right: 10px; width: 20px; }

/* Boekingsknop Footer */
.footer-booking-btn {
    display: block;
    background: var(--brand-yellow);
    color: var(--brand-dark);
    text-align: center;
    padding: 12px;
    border-radius: 5px;
    font-weight: 800;
    text-decoration: none;
    margin-top: 15px;
    transition: 0.3s;
}
.footer-booking-btn:hover { background: #fff; }

.payment-methods { margin-top: 20px; font-size: 1.5rem; display: flex; gap: 15px; opacity: 0.6; }

/* Footer Bottom */
.footer-bottom {
    text-align: center;
    margin-top: 60px;
    padding-top: 20px;
    border-top: 1px solid #222;
    font-size: 0.8rem;
}

/* Responsiviteit */
@media (max-width: 992px) {
    .footer-container { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 600px) {
    .footer-container { grid-template-columns: 1fr; }
}