/* FOOTER COMME LA PAGE D'ACCUEIL */

.footer {
    background: #2F5233;
    color: white;
    padding: 2rem 0 1rem;
}

.footer-inner {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-bottom: 1.5rem;
}

.footer-col {
    min-width: 0;
}

.footer-brand {
    display: inline-flex;
    align-items: center;
    gap: 0.7rem;
    margin-bottom: 0.9rem;
    text-decoration: none;
    color: #ffffff;
}

.footer-brand img,
.footer-logo {
    height: 45px;
    width: auto;
    opacity: 0.9;
}

.footer-brand-text {
    display: flex;
    flex-direction: column;
}

.footer-subtitle {
    display: block;
    font-size: 0.65rem;
    font-weight: 500;
    color: rgba(245, 239, 227, 0.7);
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-bottom: 2px;
}

.footer-brand-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.3rem;
    font-weight: 700;
    color: #F5EFE3;
    letter-spacing: 0.03em;
    line-height: 1.1;
}

.footer-desc {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.5;
    font-size: 0.85rem;
}

.footer h4 {
    margin-bottom: 0.9rem;
    font-size: 1rem;
    font-weight: 600;
    color: #ffffff;
}

.footer-links,
.footer-contact {
    list-style: none;
    margin: 0;
    padding: 0;
}

.footer-links li,
.footer-contact li {
    margin-bottom: 0.55rem;
    font-size: 0.85rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.2s ease;
}

.footer-links a:hover {
    color: #F5EFE3;
}

.footer-contact li {
    display: flex;
    align-items: flex-start;
    gap: 0.55rem;
    color: rgba(255, 255, 255, 0.7);
}

.footer-contact i {
    color: #F5EFE3;
    margin-top: 3px;
    min-width: 16px;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 1rem;
    text-align: center;
}

.copyright {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.8rem;
    margin-bottom: 0.5rem;
}

.legal-text {
    font-size: 0.8rem;
    line-height: 1.4;
    max-width: 1000px;
    margin: 0 auto;
}

/* Correction du lien Mentions légales */
.footer-bottom a,
.footer-bottom a:visited,
.legal-text a,
.legal-text a:visited {
    color: #F5EFE3;
    text-decoration: none;
    font-weight: 600;
}

.footer-bottom a:hover,
.legal-text a:hover {
    color: #ffffff;
    text-decoration: underline;
}

@media (max-width: 992px) {
    .footer-inner {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .footer {
        padding: 1.5rem 0 1rem;
    }

    .footer-inner {
        grid-template-columns: 1fr;
        gap: 1.2rem;
        margin-bottom: 1rem;
    }
}