/* --- BASE --- */
:root {
    --footer-bg: #B49282; /* Votre beige principal */
    --footer-text: #fff; /* Texte blanc pour le contraste */
    --footer-link-hover: #eee;
    --footer-bottom-bg: #9c7e70; /* Une version un peu plus foncée du beige */
}

/* --- STRUCTURE --- */
.site-footer {
    background-color: var(--footer-bg);
    color: var(--footer-text);
    padding-top: 60px;
    margin-top: auto; /* Pousse le footer en bas si la page est vide */
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    padding-bottom: 40px;
}

/* --- COLONNES --- */
.footer-col h3 {
    font-size: 1.2rem;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Petite ligne sous les titres */
.footer-col h3::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 50px;
    height: 2px;
    background-color: rgba(255, 255, 255, 0.6);
}

.footer-about {
    line-height: 1.6;
    font-size: 0.95rem;
    opacity: 0.9;
    margin-bottom: 20px;
}

.logo-text {
    font-family: 'Times New Roman', serif; /* Style un peu plus "luxe" pour le logo */
    font-weight: bold;
    font-size: 1.5rem;
    letter-spacing: 2px;
}

.social-text {
    font-size: 0.9rem;
    margin-bottom: 15px;
    opacity: 0.9;
}

/* --- LIENS --- */
.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: var(--footer-text);
    text-decoration: none;
    font-size: 0.95rem;
    transition: opacity 0.3s, padding-left 0.3s;
    opacity: 0.8;
    display: inline-block;
}

.footer-links a:hover {
    opacity: 1;
    padding-left: 5px; /* Petit effet de glissement au survol */
}

/* --- ICÔNES RÉSEAUX (PNG) --- */
.footer-icons {
    display: flex;
    gap: 15px;
    align-items: center;
}

.footer-icons img {
    width: 32px;
    height: 32px;
    transition: transform 0.3s ease;
    /* Optionnel : filtre pour rendre les icônes toutes blanches si elles sont colorées */
    /* filter: brightness(0) invert(1); */ 
}

.footer-icons a:hover img {
    transform: scale(1.2); /* Zoom au survol */
}

/* --- BAS DE PAGE (COPYRIGHT) --- */
.footer-bottom {
    background-color: var(--footer-bottom-bg);
    padding: 20px;
    text-align: center;
    font-size: 0.85rem;
    opacity: 0.9;
    border-top: 1px solid rgba(255,255,255,0.1);
}

.footer-bottom p {
    margin: 5px 0;
}

/* --- RESPONSIVE --- */
@media (max-width: 768px) {
    .footer-container {
        grid-template-columns: 1fr; /* Une seule colonne sur mobile */
        text-align: center;
    }

    .footer-col h3::after {
        left: 50%;
        transform: translateX(-50%); /* Centre le trait sous le titre */
    }
    
    .footer-icons {
        justify-content: center;
    }
}