/* ========================================
   FOOTER - STYLES
======================================== */

footer {
    background-color: #1A1A1A;
    color: #ffffff;
    padding: 60px 20px 20px;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.1);
}

.footer-container {
    max-width: 1400px;
    margin: 0 auto;
}

/* Footer Logo Section */
.footer-logo-section {
    margin-bottom: 50px;
    padding-bottom: 30px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.footer-logo {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 15px;
}

.footer-logo img {
    max-width: 70px;
    height: auto;
    filter: brightness(0) invert(1);
}

.footer-logo-text {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    font-weight: 700;
    color: #ffffff;
    letter-spacing: 1px;
}

.footer-tagline {
    color: #D7C8B8;
    font-size: 15px;
    font-style: italic;
    margin-top: 10px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 50px;
    margin-bottom: 40px;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.footer-col h3,
.footer-col h4 {
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 25px;
    color: #ffffff;
    font-weight: 600;
}

.footer-col ul {
    list-style: none;
}

.footer-col li {
    margin-bottom: 12px;
}

.footer-col a {
    color: #bbb;
    font-size: 14px;
    transition: all 0.3s ease;
}

.footer-col a:hover {
    color: #D3AFC0;
    padding-left: 5px;
}

/* Social Icons */
.social-icons {
    display: flex;
    gap: 15px;
    margin-bottom: 25px;
}

.social-icons a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: rgba(255,255,255,0.15); /* Fond plus visible */
    border-radius: 50%;
    color: #ffffff;
    font-size: 22px; /* Icônes plus grandes */
    transition: all 0.3s ease;
}

.social-icons a i {
    color: #ffffff;
    font-size: 22px;
}

.social-icons a:hover {
    background-color: #D3AFC0;
    transform: translateY(-3px);
}

.social-icons a:hover i {
    color: #ffffff;
}

/* Newsletter */
.newsletter-text {
    color: #bbb;
    font-size: 14px;
    margin-bottom: 15px;
}

.newsletter-form {
    display: flex;
    gap: 10px;
}

.newsletter-form input {
    flex: 1;
    padding: 12px 15px;
    border: 1px solid rgba(255,255,255,0.2);
    background-color: rgba(255,255,255,0.05);
    color: #ffffff;
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    transition: all 0.3s ease;
}

.newsletter-form input:focus {
    outline: none;
    border-color: #D3AFC0;
    background-color: rgba(255,255,255,0.1);
}

.newsletter-form input::placeholder {
    color: #999;
}

.newsletter-form button {
    padding: 12px 20px;
    background-color: #D3AFC0;
    border: none;
    color: #ffffff;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 20px;
}

.newsletter-form button:hover {
    background-color: #A8B7A0;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    color: #ccc; /* Gris plus clair pour meilleur contraste sur fond noir */
    font-size: 13px;
}

.footer-bottom a {
    color: #ccc; /* Gris plus clair pour meilleur contraste sur fond noir */
    transition: all 0.3s ease;
}

.footer-bottom a:hover {
    color: #D3AFC0;
}

/* --- RESPONSIVE --- */
@media (max-width: 768px) {
    .footer-logo img {
        max-width: 60px;
    }

    .footer-logo-text {
        font-size: 1.6rem;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}

@media (max-width: 480px) {
    footer {
        padding: 40px 15px 15px;
    }

    .footer-logo-text {
        font-size: 1.4rem;
    }
}
