/* ======================================================================
   FOOTER
====================================================================== */

/* Container global qui englobe le footer et l'image décorative */
.footer-wrapper {
    position: relative;
    width: 100%;
    margin-top: 20px;
    scroll-snap-align: end;
    z-index: 2;
}

/* Image de la mozzarella */
.mozzarella-dough-img {
    position: absolute;
    top: -180px;
    left: -70px;
    width: 350px;
    height: auto;
    pointer-events: none;
    z-index: 1;
}

/* Le footer */
.site-footer {
    position: relative;
    background-color: #ffffff;
    color: #333333;
    padding: 40px 20px 20px 20px;
    font-family: Arial, sans-serif;
}

/* Grille principale du footer */
.footer-container {
    margin: 0 30px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 135px;
    align-items: center;
}

/* Organisation du bloc de gauche */
.footer-left-block {
    display: flex;
    flex-direction: column;
    gap: 25px;
    width: 100%;
}

/* Ligne supérieure : Logo à gauche, Réseaux à droite */
.footer-top-row, .footer-links {
    display: grid;
    grid-template-columns: 6fr 4fr; 
    align-items: center;
    width: 100%;
}

/* Style du Logo */
.footer-logo {
    max-width: 250px;
    height: auto;
}

/* Zone "Nous suivre" à droite du logo */
.footer-socials {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
}

.footer-socials span {
    font-weight: bold;
    font-size: 2rem;
    color: #333333;
    font-family: 'Cormorant Garamond', Georgia, serif;
}

.social-icons {
    display: flex;
    gap: 30px;
}

.social-icons a {
    display: flex;
    align-items: center;
}

.social-custom-icon-instagram{
    width: 55px;
    height: 55px;
    object-fit: contain;
    transition: transform 0.2s;
}

.social-custom-icon-facebook{
    width: 50px;
    height: 50px;
    object-fit: contain;
    transition: transform 0.2s;
}

.social-custom-icon-instagram:hover, .social-custom-icon-facebook:hover {
    transform: scale(1.1);
}

/* Liens du footer Mentions légales et politique de confidentialité */
.footer-links {
    padding-top: 15px;
    align-items: flex-start;
}

.footer-links a {
    color: #000;
    text-decoration: none;
    font-size: 1.5rem;
    transition: color 0.2s;
}

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

/* Le conteneur de la carte */
.footer-map {
    width: 100%;
    height: 220px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}

.footer-map iframe {
    display: block;
    width: 100%;
    height: 100%;
}

/* Barre de crédit tout en bas */
.footer-bottom {
    margin-top: 30px;
    padding-top: 15px;
    text-align: center;
    font-size: 0.85rem;
    color: #999999;
}

/* ======================================================================
   AJUSTEMENTS RESPONSIVE (Mobiles et tablettes)
====================================================================== */

@media screen and (max-width: 1024px) {
    .footer-container {
        gap: 50px;
        margin: 0 15px;
    }

    .footer-left-block {
        align-items: center; 
        text-align: center;
    }

    .footer-top-row {
        grid-template-columns: 1fr; 
        gap: 25px;
        justify-items: center;
    }

    .footer-brand {
        display: flex;
        justify-content: center;
        width: 100%;
    }

    .footer-socials {
        align-items: center; 
        width: 100%;
    }

    .footer-links {
        grid-template-columns: 1fr;
        gap: 12px;
        padding-top: 5px;
        justify-items: center;
        width: 100%;
    }

    .footer-socials span {
        font-size: 1.5rem;
    }

    .footer-links a {
        font-size: 1.2rem;
    }

    .footer-map {
        width: 85%;
        height: 325px;
    }

    .mozzarella-dough-img {
        width: 220px;
        top: -110px;
        left: -30px;
    }
}

@media screen and (max-width: 768px) {
    .footer-container {
        grid-template-columns: 1fr;
        gap: 40px;
        margin: 0 15px;
    }

    .footer-top-row {
        grid-template-columns: 1fr; 
        text-align: center;
        gap: 30px;
    }

    .footer-brand {
        display: flex;
        justify-content: center;
    }

    .footer-logo {
        max-width: 200px;
    }

    .footer-socials {
        align-items: center;
    }

    .footer-socials span {
        font-size: 1.5rem;
    }

    .social-icons {
        gap: 25px;
    }

    .social-custom-icon-instagram {
        width: 45px;
        height: 45px;
    }

    .social-custom-icon-facebook {
        width: 40px;
        height: 40px;
    }
    
    .footer-links {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 15px;
        padding-top: 10px;
    }

    .footer-links a {
        font-size: 1rem;
        display: block;
    }

    .footer-map {
        width: 100%;
        height: 200px;
    }

    .mozzarella-dough-img {
        width: 180px;
        top: -90px;
        left: -25px;
    }

    .footer-bottom p {
        padding: 0 10px;
    }
}