/* assets/css/footer.css */

.site-footer-styled {
    background-color: #f9f9f9; /* Basis licht */
    /* Subtiel verloopje voor luxe gevoel */
    background: linear-gradient(to bottom, #fcfcfc 0%, #f0f0f0 100%);
    color: var(--color-text-main);
    padding: 100px 0 30px 0;
    font-family: 'Helvetica Neue', sans-serif;
    border-top: 1px solid #eaeaea;
    position: relative;
    overflow: hidden;
}

/* Watermerk achtergrond */
.footer-bg-watermark {
    position: absolute;
    bottom: -50px;
    right: -20px;
    font-family: 'Playfair Display', serif;
    font-size: 25rem;
    line-height: 1;
    color: #000;
    opacity: 0.03; /* Heel subtiel */
    pointer-events: none;
    z-index: 0;
    font-style: italic;
}

.relative-z {
    position: relative;
    z-index: 2;
}

/* --- GRID --- */
.footer-row {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr; /* Brand kolom iets breder */
    gap: 60px;
    margin-bottom: 80px;
}

/* Titels in de Editorial Stijl (Goud, Serif, Italic) */
.footer-title {
    font-family: 'Playfair Display', serif;
    font-style: italic;
    font-weight: 400;
    font-size: 1.5rem;
    color: var(--color-gold);
    margin-bottom: 25px;
    display: block;
}

/* Kolom 1: Brand */
.footer-brand-logo {
    display: inline-block;
    font-size: 1.8rem;
    font-weight: 800;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--color-text-main);
    text-decoration: none;
    margin-bottom: 20px;
}
.footer-brand-logo .text-gold { color: var(--color-gold); }

.footer-story {
    font-size: 0.95rem;
    line-height: 1.7;
    color: var(--color-text-light);
    margin-bottom: 30px;
    max-width: 300px;
}

.social-icons-minimal {
    display: flex;
    gap: 15px;
}
.social-icons-minimal a {
    width: 35px; height: 35px;
    border: 1px solid #ddd;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 0.7rem;
    font-weight: 700;
    color: var(--color-text-main);
    text-decoration: none;
    transition: all 0.3s;
    background: #fff;
}
.social-icons-minimal a:hover {
    border-color: var(--color-gold);
    background: var(--color-gold);
    color: #fff;
}

/* Kolom 2: Links */
.footer-links-list {
    list-style: none; padding: 0; margin: 0;
}
.footer-links-list li { margin-bottom: 12px; }
.footer-links-list a {
    text-decoration: none;
    color: var(--color-text-main);
    font-size: 1rem;
    transition: all 0.3s;
    position: relative;
    padding-left: 0;
}
/* Hover effect: Subtiel naar rechts + goud */
.footer-links-list a:hover {
    color: var(--color-gold);
    padding-left: 5px;
}

/* Kolom 3: Contact */
.contact-block {
    margin-bottom: 25px;
}
.cb-label {
    display: block;
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #999;
    margin-bottom: 5px;
    font-weight: 700;
}
.cb-value {
    display: block;
    font-size: 1rem;
    color: var(--color-text-main);
    line-height: 1.5;
}
.cb-link {
    display: block;
    font-size: 1rem;
    color: var(--color-text-main);
    text-decoration: none;
    margin-bottom: 2px;
    font-weight: 500;
}
.cb-link:hover { color: var(--color-gold); }

/* Kolom 4: Actie */
.action-text {
    font-size: 0.95rem;
    color: var(--color-text-light);
    line-height: 1.6;
    margin-bottom: 25px;
}

.btn-footer-gold {
    display: inline-block;
    background-color: var(--color-gold);
    color: #fff;
    padding: 12px 30px;
    text-decoration: none;
    text-transform: uppercase;
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 1px;
    transition: all 0.3s;
    box-shadow: 0 5px 15px rgba(197, 160, 89, 0.2);
}
.btn-footer-gold:hover {
    background-color: #b08d2b; /* Iets donkerder goud */
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(197, 160, 89, 0.3);
}

/* --- BOTTOM BAR --- */
.footer-bottom-styled {
    border-top: 1px solid #e5e5e5;
    padding-top: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #aaa;
    font-size: 0.85rem;
}

.legal-links a {
    color: #aaa; text-decoration: none; transition: color 0.3s;
}
.legal-links a:hover { color: var(--color-text-main); }
.sep { margin: 0 10px; color: #ddd; }

/* --- RESPONSIVE --- */
@media (max-width: 992px) {
    .footer-row {
        grid-template-columns: 1fr 1fr; /* 2 bij 2 op tablet */
        gap: 50px;
    }
}

@media (max-width: 768px) {
    .footer-row {
        grid-template-columns: 1fr; /* 1 kolom op mobiel */
        gap: 40px;
    }
    .footer-bottom-styled {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
    .footer-bg-watermark {
        font-size: 15rem; /* Kleiner op mobiel */
        bottom: 0;
    }
}