/* ==========================================================================
   FOOTER LUXE (Vert & Or)
   ========================================================================== */
footer {
    background-color: #0E4D36; /* Vert Majorelle Foncé */
    color: #E6D7C3; /* Beige Riad */
    padding: 80px 5% 30px;
    font-family: 'Poppins', sans-serif;
    font-size: 0.9rem;
    border-top: 4px solid var(--or-premium);
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 40px;
    margin-bottom: 50px;
    border-bottom: 1px solid rgba(230, 215, 195, 0.2); /* Ligne beige subtile */
    padding-bottom: 40px;
    justify-items: center;
}

/* Titres en Or */
.footer-col {
    min-width: 180px;
}
.footer-col h3 {
    color: #C8A462; 
    font-family: 'Playfair Display', serif;
    font-size: 1.1rem;
    margin-bottom: 25px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-logo-text {
    font-family: 'Playfair Display', serif;
    font-size: 1.6rem;
    color: #C8A462;
    margin-bottom: 20px;
    display: block;
}

.footer-col p {
    line-height: 1.7;
    margin-bottom: 20px;
    opacity: 0.9;
}

.footer-links li { margin-bottom: 12px; }
.footer-links a {
    color: #E6D7C3;
    display: flex; align-items: center; gap: 10px;
    transition: 0.3s;
}
.footer-links a:hover { color: #C8A462; padding-left: 5px; } /* Hover Or */

.footer-links i { 
    color: #C8A462; /* Icônes en Or */
    font-size: 0.9rem; 
}

/* Réseaux sociaux */
.social-links a {
    color: #E6D7C3;
    font-size: 1.2rem;
    margin-right: 15px;
    transition: 0.3s;
}
.social-links a:hover { color: #B87333; } /* Hover Terracotta */

.copyright { text-align: center; opacity: 0.7; font-size: 0.85rem; }
.copyright a { color: #E6D7C3; text-decoration: none; }