/* Footer Styles - Fiona Bouakaz */
footer {
    background: var(--brown-dark);
    color: white;
    padding: 3rem 2rem 1.5rem;
    margin-top: 5rem;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    margin-bottom: 2rem;
}

.footer-section h4 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--cream-light);
}

.footer-section p {
    font-size: 1rem;
    opacity: 0.9;
    margin-bottom: 0.5rem;
}

.footer-section a {
    color: var(--cream-light);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: var(--cream);
}

/* Liens du footer - VERSION HORIZONTALE */
.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: center;
}

.footer-links-horizontal {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem 2rem;
    justify-content: center;
}

.footer-links-horizontal li {
    display: inline-block;
    padding: 0.5rem 0;
}

.footer-links-horizontal li:not(:last-child)::after {
    content: '•';
    margin-left: 2rem;
    opacity: 0.5;
    color: white;
}

.footer-links li a {
    position: relative;
    padding-right: 0;
    transition: all 0.3s ease;
    color: white !important;
    text-decoration: none;
}

.footer-links li a:hover {
    color: var(--cream) !important;
    transform: translateX(3px);
}

.footer-links li a:visited {
    color: white !important;
}

/* Container du footer */
.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.footer-container p {
    font-size: 0.95rem;
    opacity: 0.9;
    margin-bottom: 1rem;
    color: white;
}

/* Bas du footer */
.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    padding-top: 2rem;
    border-top: 1px solid rgba(245, 239, 230, 0.2);
    text-align: center;
}

.footer-bottom p {
    font-size: 0.95rem;
    opacity: 0.8;
}

/* Responsive Mobile */
@media (max-width: 768px) {
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
    
    .footer-links-horizontal {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .footer-links-horizontal li:not(:last-child)::after {
        display: none;
    }
    
    footer {
        padding: 2.5rem 1.5rem 1.5rem;
    }
}

/* Large screens */
@media (min-width: 1600px) {
    .footer-content {
        max-width: 1400px;
    }
    
    .footer-bottom {
        max-width: 1400px;
    }
    
    .footer-section h4 {
        font-size: 1.6rem;
    }
    
    .footer-section p {
        font-size: 1.1rem;
    }
    
    .footer-links li a {
        font-size: 1.1rem;
    }
}

@media (min-width: 2000px) {
    .footer-content {
        max-width: 1600px;
    }
    
    .footer-bottom {
        max-width: 1600px;
    }
}
