/* ==========================================================================
   SITE FOOTER - LUXE EDITION 2026
   ========================================================================== */

.site-footer {
    background-color: #111111;
    color: #ffffff;
    /* On augmente l'air (le vide) pour plus de prestige */
    padding: 120px 40px 40px 40px; 
    border-top: 1px solid rgba(255, 255, 255, 0.03);
    font-family: 'Montserrat', sans-serif;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 80px; /* Plus d'espace entre les colonnes */
    align-items: start;
}

/* 1. SECTION LOGO & TAGLINE */
.footer-logo {
    height: 35px; /* Légèrement réduit pour l'élégance */
    width: auto;
    filter: brightness(0) invert(1);
    margin-bottom: 25px;
    opacity: 0.9;
}

.footer-tagline {
    font-size: 0.75rem; /* Plus petit, plus fin */
    letter-spacing: 3px; /* Espacement noble */
    text-transform: uppercase;
    color: #D4A373; 
    margin: 0 0 10px 0;
    font-weight: 400;
}

.footer-location {
    font-size: 0.75rem;
    opacity: 0.4; /* Très discret */
    font-weight: 300;
    letter-spacing: 1.5px;
}

/* 2. NAVIGATION & CONTACT (TITRES) */
.footer-section h3 {
    font-size: 0.85rem; /* Réduction de la taille */
    text-transform: uppercase;
    letter-spacing: 4px; /* Très espacé pour le look "Luxe" */
    margin: 0 0 35px 0;
    font-weight: 600;
    color: #ffffff;
}

.footer-links li {
    margin-bottom: 15px;
}

.footer-links a {
    color: #ffffff;
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 300;
    opacity: 0.5; /* Les liens sont grisés par défaut */
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.footer-links a:hover {
    opacity: 1; /* Ne s'allume qu'au survol */
    color: #D4A373;
    letter-spacing: 1px; /* Micro-mouvement élégant */
}

/* 3. CONTACT & SOCIALS */
.contact-email {
    color: #ffffff;
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 300;
    opacity: 0.8;
    /* Remplacement du cadre par un soulignement fin */
    border-bottom: 1px solid rgba(212, 163, 115, 0.2);
    padding-bottom: 4px;
    transition: all 0.5s ease;
}

.contact-email:hover {
    opacity: 1;
    border-color: #D4A373;
}

.footer-socials {
    display: flex;
    gap: 25px;
    margin-top: 40px;
}

.footer-socials a {
    color: #ffffff;
    opacity: 0.4;
    transition: opacity 0.4s ease, transform 0.4s ease;
}

.footer-socials a:hover {
    opacity: 1;
    transform: translateY(-2px);
}

/* 4. FOOTER BOTTOM */
.footer-bottom {
    max-width: 600px; /* Ligne de séparation plus courte */
    margin: 100px auto 0 auto;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    text-align: center;
}

.footer-bottom p {
    font-size: 0.7rem;
    font-weight: 300;
    opacity: 0.3;
    letter-spacing: 2px;
    text-transform: uppercase;
}

/* 5. RESPONSIVE */
@media (max-width: 992px) {
    .site-footer { padding: 80px 20px; }
    .footer-content { grid-template-columns: 1fr; text-align: center; gap: 50px; }
    .footer-socials { justify-content: center; }
    .footer-links a:hover { transform: none; letter-spacing: 0; }
}