/* 
 * Styles pour les conteneurs et composants du footer
 * Ce fichier contient les styles généraux du footer pour compléter footer-styles.css
 */

/* Styles généraux du footer */
.footer {
    width: 100%;
    background: var(--main-header-background);
    position: relative;
    overflow: hidden;
    margin: 0;
    padding: 0;
    clear: both;
    bottom: 0;
}

.footer-image {
    width: 100%;
    height: clamp(300px, 50vh, 600px);
    position: relative;
    overflow: hidden;
    background-color: #000;
}

.footer-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    filter: sepia(80%) hue-rotate(330deg) saturate(120%) brightness(90%);
    position: absolute;
    top: 0;
    left: 0;
}

.footer-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 20px;
    color: #f8f3e9;
    text-shadow: 0 0 10px var(--main-decor-color);
}

.footer-content {
    max-width: min(90%, 600px);
    text-align: center;
}

.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin: 0;
}

.footer-contact p {
    font-size: clamp(0.8rem, 2vw, 1rem);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.footer-social {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin: 0;
}

.footer-social a {
    color: #f8f3e9;
    font-size: clamp(1.5rem, 3vw, 2rem);
    transition: transform 0.3s ease;
}

.footer-social a:hover {
    transform: translateY(-3px);
    color: var(--main-decor-color);
}

/* Styles pour dispositifs mobiles */
@media (max-width: 768px) {
    .footer-contact {
        gap: 8px;
    }

    .footer-social {
        gap: 10px;
    }

    .footer-image {
        height: clamp(250px, 40vh, 400px);
    }
}

/* Styles spécifiques pour le contact footer */
.footer-contact {
    display: flex;
    flex-direction: column;
    /* Stack items vertically */
    align-items: center;
    /* Center items horizontally */
    gap: 10px;
    /* Add spacing between items */
}

.footer-contact p {
    font-size: 1rem;
    /* Adjust font size */
    color: #f8f3e9;
    /* Light beige text color */
    text-shadow: 0 0 10px var(--main-decor-color);
    text-align: center;
    /* Center text within each paragraph */
    font-family: var(--main-font-family);
}

.footer-contact a {
    text-decoration: none;
    /* Remove default underline */
    color: inherit;
    /* Inherit the light beige color */
    transition: color 0.3s ease;
    /* Add transition for hover effect */
}

.footer-contact a:hover {
    color: var(--main-decor-color);
}

.footer-social {
    margin-top: 10px;
    display: flex;
    justify-content: center;
    width: 100%;
}
.footer-content-container {
    position: relative;
    z-index: 2;
    width: 100%;
    padding: 40px 20px;
    margin: 0;
    background-color: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(5px);
    left: 0;
    right: 0;
}