/* Footer styles - Charte graphique moderne et chaleureuse - Accent caramel #a67c52 */
@font-face {
    font-family: 'ThirstyScriptExtraBoldDemo';
    src: url('../fonts/ThirstyScriptExtraBoldDemo.otf') format('opentype');
    font-weight: bold;
    font-style: normal;
    font-display: swap;
}

.footer {
    background-color: #1e1e1e;
    color: #ffffff;
    padding: 4rem 1.5rem 2rem;
    position: relative;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(to right, #8a6642, #a67c52, #e8d8c3);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
}

.footer-brand {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.footer-logo {
    margin-bottom: 1rem;
    max-width: 110px;
    height: auto;
}

.footer-title {
    font-family: 'ThirstyScriptExtraBoldDemo', cursive;
    font-size: 1.8rem;
    margin-bottom: 0.8rem;
    color: #a67c52;
}

.footer-adresse {
    font-family: 'Rubik', 'Inter', sans-serif;
    font-size: 0.95rem;
    line-height: 1.4;
    color: #cccccc;
    margin-bottom: 1rem;
}

.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-top: 0.5rem;
}

.footer-phone,
.footer-email {
    color: #a67c52;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: color 0.3s ease;
}

.footer-phone:hover,
.footer-email:hover {
    color: #e8d8c3;
}

.footer-phone i,
.footer-email i {
    font-size: 0.8rem;
    width: 16px;
    text-align: center;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.footer-link {
    font-family: 'Rubik', 'Inter', sans-serif;
    color: #ffffff;
    text-decoration: none;
    font-size: 1rem;
    transition: all 0.3s ease;
    position: relative;
    padding-left: 0;
}

.footer-link:hover {
    color: #a67c52;
    transform: translateX(5px);
}

.footer-social {
    display: flex;
    gap: 1rem;
}

.footer-social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    transition: all 0.3s ease;
}

.footer-social-link:hover {
    background-color: rgba(166, 124, 82, 0.3);
    transform: translateY(-3px);
}

.footer-social-link svg {
    width: 20px;
    height: 20px;
    fill: #a67c52;
    transition: all 0.3s ease;
}

.footer-social-link:hover svg {
    fill: #ffffff;
}

.footer-bottom {
    max-width: 1200px;
    margin: 3rem auto 0;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(166, 124, 82, 0.2);
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.footer-legale {
    font-family: 'Rubik', 'Inter', sans-serif;
    font-size: 0.9rem;
    color: #aaaaaa;
}

.footer-legale .footer-link {
    color: #aaaaaa;
    display: inline;
}

.footer-legale .footer-link:hover {
    color: #a67c52;
    transform: none;
}

.footer-copyright {
    font-family: 'Rubik', 'Inter', sans-serif;
    font-size: 0.85rem;
    color: #888888;
}

/* Media Queries */
@media (max-width: 992px) {
    .footer {
        padding: 3.5rem 1.5rem 1.8rem;
    }
    
    .footer-content {
        gap: 2.5rem;
    }
}

@media (max-width: 768px) {
    .footer {
        padding: 3rem 1.2rem 1.5rem;
    }
    
    .footer-content {
        gap: 2rem;
    }
    
    .footer-title {
        font-size: 1.6rem;
    }
    
    .footer-links {
        gap: 0.8rem;
    }
}

@media (max-width: 576px) {
    .footer {
        padding: 2.5rem 1rem 1.2rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }
    
    .footer-brand {
        align-items: center;
    }
    
    .footer-social {
        justify-content: center;
    }
    
    .footer-bottom {
        margin-top: 2rem;
    }
}
