/* footer.css */
footer { 
    background: #5E665C; 
    color: white; 
    padding: 40px 20px; 
    margin-top: 40px; 
}

.footer-container { 
    max-width: 1240px; 
    margin: 0 auto; 
    display: grid; 
    grid-template-columns: 1fr 1fr 1fr; 
    gap: 40px; 
}

.footer-container h6 { 
    font-family: 'Prata', serif; 
    font-size: 18px; 
    margin-bottom: 10px; 
    color: white; 
}

.footer-container p { 
    font-size: 14px; 
    line-height: 1.6; 
    color: #ddd; 
}

.footer-container a { 
    color: #ddd; 
    text-decoration: none; 
}

.footer-container a:hover { 
    color: white; 
}

/* Social media iconen met Font Awesome */
.social-links { 
    display: flex; 
    gap: 20px; 
    margin-top: 10px; 
}

.social-links a { 
    color: white; 
    font-size: 28px; 
    text-decoration: none; 
    transition: color 0.2s; 
}

.social-links a:hover { 
    color: #ddd; 
}

/* Nieuwsbrief formulier */
.newsletter-form {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 10px;
}

.newsletter-form input[type="email"] {
    padding: 12px 16px;
    border: 1px solid rgba(255,255,255,0.3);
    border-radius: 6px;
    background: rgba(255,255,255,0.1);
    color: white;
    font-size: 14px;
    font-family: 'Montserrat', sans-serif;
    width: 100%;
    box-sizing: border-box;
}

.newsletter-form input[type="email"]::placeholder {
    color: rgba(255,255,255,0.6);
}

.newsletter-form input[type="email"]:focus {
    outline: none;
    border-color: white;
    background: rgba(255,255,255,0.15);
}

.newsletter-form button {
    padding: 12px 20px;
    background: white;
    color: #2f1c6a;
    border: none;
    border-radius: 6px;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    cursor: pointer;
    transition: background 0.2s, transform 0.1s;
    font-family: 'Montserrat', sans-serif;
}

.newsletter-form button:hover {
    background: #e8e8e8;
}

.newsletter-form button:active {
    transform: scale(0.97);
}

.footer-bottom { 
    text-align: center; 
    padding-top: 20px; 
    margin-top: 20px; 
    border-top: 1px solid rgba(255,255,255,0.2); 
    font-size: 14px; 
    color: #ddd; 
}

/* Responsive */
@media (max-width:768px) {
    .footer-container { 
        grid-template-columns: 1fr; 
        gap: 30px; 
        text-align: center; 
    }
    .social-links { 
        justify-content: center; 
    }
    .newsletter-form input[type="email"] { 
        text-align: center; 
    }
}