/* ============================
   Fichier : footer.css
   Auteur : lyunabi
   Description : Styles pour le footer
   ============================ */

.footer {
    width: 100%;
    background: linear-gradient(135deg, #1E1E1E 0%, #2a2a2a 100%);
    color: white;
    padding: 60px 5% 30px;
    margin-top: 80px;
    position: relative;
    overflow: hidden;
}

/* Effet de pixel décoratif en arrière-plan */
/* .footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg,
        #FF84F7 0%,
        #FFB8FA 25%,
        #FF84F7 50%,
        #FFB8FA 75%,
        #FF84F7 100%
    );
    background-size: 200% 100%;
    animation: shimmer 3s linear infinite;
}

@keyframes shimmer {
    0% {
        background-position: -200% 0;
    }
    100% {
        background-position: 200% 0;
    }
} */

/* Container principal */
.footer-content {
    max-width: 1352px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr 1.5fr;
    gap: 60px;
    padding-bottom: 40px;
}

/* Sections du footer */
.footer-section h4 {
    font-family: 'Pixelify Sans', sans-serif;
    color: #FFB8FA;
    margin-bottom: 20px;
    font-size: 20px;
    font-weight: 600;
}

/* Section Logo */
.footer-section.about {
    display: flex;
    align-items: flex-start;
}

.footer-logo {
    width: 200px;
    height: auto;
}

/* Section liens */
.footer-section.links ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-section.links li {
    margin-bottom: 12px;
}

.footer-section.links a {
    font-family: 'Plus Jakarta Sans';
    font-weight: 900;
    font-size: 15px;
    color: rgb(221, 221, 221) ;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block ;
    position: relative;
}

.footer-section.links a::before {
    content: '→ ';
    position: absolute;
    left: -20px;
    opacity: 0;
    transition: all 0.3s ease;
    color: #FF84F7;
}

.footer-section.links a:hover {
    color: #FFB8FA;
    transform: translateX(10px);
}

.footer-section.links a:hover::before {
    opacity: 1;
    left: -15px;
}

/* Section contact & réseaux sociaux */
.social-links {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
}

.social-icon {
    width: 45px;
    height: 45px;
    border-radius: 10px;
    background: rgba(255, 184, 250, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #FFB8FA;
    transition: all 0.3s ease;
    text-decoration: none;
}

.social-icon:hover {
    background: #FF84F7;
    color: white;
    transform: translateY(-5px) rotate(5deg);
    box-shadow: 0 10px 20px rgba(255, 132, 247, 0.3);
}

.social-icon svg {
    width: 24px;
    height: 24px;
}

.contact-email {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 15px;
    color: white !important;
    margin-top: 15px;
    display: block !important;
}

/* Bottom bar */
.footer-bottom {
    max-width: 1352px;
    margin: 0 auto;
    padding-top: 30px;
    padding-bottom: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 14px;
    color: white;
}

.copyright {
    margin: 0;
}

.made-with {
    display: flex;
    align-items: center;
    gap: 5px;
    margin: 0;
}

.heart {
    color: #FF84F7;
    animation: heartbeat 1.5s ease-in-out infinite;
    font-size: 16px;
}

@keyframes heartbeat {
    0%, 100% {
        transform: scale(1);
    }
    25% {
        transform: scale(1.2);
    }
    50% {
        transform: scale(1);
    }
}

/* ============================================ */
/* RESPONSIVE TABLETTE (768px - 1024px) */
/* ============================================ */

@media (max-width: 1024px) {
    .footer {
        padding: 50px 4% 25px;
        margin-top: 60px;
    }

    .footer-content {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
        padding-bottom: 30px;
    }

    .footer-section.about {
        grid-column: 1 / -1;
    }

    .footer-section h3 {
        font-size: 24px;
    }

    .footer-section h4 {
        font-size: 18px;
    }

    .footer-description {
        font-size: 14px;
        max-width: 100%;
    }

    .footer-bottom {
        padding-top: 25px;
        font-size: 13px;
    }
}

/* ============================================ */
/* RESPONSIVE MOBILE (< 768px) */
/* ============================================ */

@media (max-width: 768px) {
    .footer {
        padding: 40px 20px 20px;
        margin-top: 40px;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 35px;
        padding-bottom: 25px;
    }

    .footer-section.about {
        grid-column: 1;
    }

    .footer-section h3 {
        font-size: 22px;
        margin-bottom: 15px;
    }

    .footer-section h4 {
        font-size: 16px;
        margin-bottom: 15px;
    }

    .footer-description {
        font-size: 14px;
    }

    .footer-section.links li {
        margin-bottom: 10px;
    }

    .footer-section.links a {
        font-size: 14px;
    }

    .social-links {
        gap: 12px;
        margin-bottom: 15px;
    }

    .social-icon {
        width: 40px;
        height: 40px;
    }

    .social-icon svg {
        width: 20px;
        height: 20px;
    }

    .contact-email {
        font-size: 14px;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 10px;
        text-align: center;
        padding-top: 20px;
        font-size: 12px;
    }
}

/* ============================================ */
/* RESPONSIVE TRÈS PETIT MOBILE (< 480px) */
/* ============================================ */

@media (max-width: 480px) {
    .footer {
        padding: 30px 15px 15px;
        margin-top: 30px;
    }

    .footer-content {
        gap: 30px;
        padding-bottom: 20px;
    }

    .footer-section h3 {
        font-size: 20px;
    }

    .footer-section h4 {
        font-size: 15px;
    }

    .footer-description {
        font-size: 13px;
    }

    .footer-section.links a {
        font-size: 13px;
    }

    .social-links {
        gap: 10px;
    }

    .social-icon {
        width: 38px;
        height: 38px;
    }

    .contact-email {
        font-size: 13px;
    }

    .footer-bottom {
        font-size: 11px;
    }

    .heart {
        font-size: 14px;
    }
}
