/* Styles du footer - Version commune à mobile et desktop */
footer.copyright {
    width: 100vw;
    min-height: 250px;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #fff;
    font-family: var(--main-font-family);
    text-align: center;
    overflow: hidden;
    margin: 0;
    margin-left: calc(-50vw + 50%);
    margin-right: calc(-50vw + 50%);
    padding: 0;
    box-sizing: border-box;
    bottom: 0;
    clear: both;
    z-index: 10;
    margin-top: 0;
}

/* Fond du footer avec l'image */
    .footer-background {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        z-index: 0;
    }

    .footer-background::after {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: linear-gradient(to bottom, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.7));
        pointer-events: none;
    }

    .footer-background img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: center;
        filter: sepia(80%) hue-rotate(330deg) saturate(120%) brightness(70%);
    }

    /* Conteneur du contenu */
    .footer-content-container {
        position: relative;
        z-index: 2;
        width: 150%;
        padding: 30px 15px;
        margin: 0;
    }

    /* Carte de contenu */
    .footer-content-card {
        background-color: rgba(0, 0, 0, 0.6);
        border-radius: 10px;
        padding: 40px;
        margin: 50px auto;
        width: 90%;
        max-width: 800px;
        box-shadow: 0 0 20px rgba(0, 0, 0, 0.5);
        backdrop-filter: blur(5px);
        border: 1px solid rgba(255, 255, 255, 0.1);
    }

    /* Titre Contact */
    .footer-content-card h3 {
        color: #f8f3e9;
        font-size: 2rem;
        margin: 30 0 20px 0;
        text-shadow: 0 0 10px var(--main-decor-color);
        position: relative;
        display: inline-block;
        padding: 0 10px;
    }

    .footer-content-card h3::after {
        content: '';
        position: absolute;
        left: 50%;
        transform: translateX(-50%);
        bottom: -10px;
        width: 80px;
        height: 3px;
        background-color: var(--main-decor-color);
        border-radius: 2px;
        box-shadow: 0 0 8px var(--main-decor-color);
    }

    /* Paragraphes du conteneur */
    .footer-content-card p {
        color: #f8f3e9;
        margin: 8px 0;
        font-size: 1rem;
        line-height: 1.5;
        text-shadow: 0 0 5px rgba(0, 0, 0, 0.5);
        display: flex;
        align-items: center;
        justify-content: center;
    }

    /* Icônes */
    .footer-content-card i {
        margin-right: 10px;
        color: var(--main-decor-color);
    }

    /* Médias sociaux */
    .footer-social-media {
        display: flex;
        justify-content: center;
        gap: 20px;
        margin: 15px 0;
    }

    .footer-social-media a {
        color: #f8f3e9;
        font-size: 1.5rem;
        transition: all 0.3s ease;
    }

    .footer-social-media a:hover {
        transform: scale(1.2);
        color: var(--main-decor-color);
        text-shadow: 0 0 10px var(--main-decor-color);
    }

    /* Ligne copyright */
    .copyright-text {
        margin-top: 15px;
        font-size: 0.85rem;
        opacity: 0.8;
    }

    .copyright a {
        color: #fff;
        text-decoration: none;
        transition: color 0.3s ease;
    }

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