.main-footer {
    background: #06668C; /* Ton bleu foncé signature */
    color: white;
    padding: 60px 0 20px 0;
    margin-top: 80px;
    font-family: 'Mulish', sans-serif;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 40px;
    padding: 0 20px;
}

.footer-section {
    flex: 1;
    min-width: 250px;
}

/* Section Branding */
.footer-logo {
    height: 60px;
    margin-bottom: 15px;
    filter: brightness(0) invert(1); /* Rend le logo blanc si nécessaire */
}

.brand-info h3 {
    font-family: 'Quicksand';
    font-size: 1.5em;
    margin-bottom: 10px;
}

.brand-info p {
    font-size: 0.9em;
    line-height: 1.6;
    opacity: 0.8;
    margin-bottom: 20px;
}

/* Réseaux Sociaux */
.footer-social {
    display: flex;
    gap: 15px;
}

.footer-social a {
    color: white;
    font-size: 1.4em;
    transition: transform 0.3s, color 0.3s;
}

.footer-social a:hover {
    color: #A4BD01; /* Ton vert clair */
    transform: translateY(-5px);
}

/* Liens de Navigation */
.footer-links h4, .footer-resources h4 {
    font-family: 'Quicksand';
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-bottom: 2px solid #A4BD01;
    display: inline-block;
    padding-bottom: 5px;
}

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

.footer-links ul li a {
    color: white;
    text-decoration: none;
    opacity: 0.7;
    transition: 0.3s;
}

.footer-links ul li a:hover {
    opacity: 1;
    padding-left: 5px;
}

/* Ressources & CV */
.btn-footer-cv {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #679436;
    color: white;
    padding: 10px 20px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    margin-top: 10px;
    transition: background 0.3s;
}

.btn-footer-cv:hover {
    background: #A4BD01;
}

.footer-status {
    margin-top: 20px;
    font-size: 0.85em;
    display: flex;
    align-items: center;
    gap: 8px;
}

.status-dot {
    height: 10px;
    width: 10px;
    background-color: #A4BD01;
    border-radius: 50%;
    display: inline-block;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(164, 189, 1, 0.7); }
    70% { transform: scale(1); box-shadow: 0 0 0 10px rgba(164, 189, 1, 0); }
    100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(164, 189, 1, 0); }
}

/* Barre de Copyright */
.footer-bottom {
    text-align: center;
    margin-top: 60px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 0.8em;
    opacity: 0.6;
}

@media (max-width: 768px) {
    .footer-container { flex-direction: column; text-align: center; }
    .footer-links h4, .footer-resources h4 { margin: 0 auto 20px auto; display: table; }
    .footer-social { justify-content: center; }
    .footer-status { justify-content: center; }
}