/* Variables de couleurs */
:root {
    --primary: #06713d;
    --secondary: #ffac2e;
    --tertiary: #000000;
    --white: #ffffff;
    --gray-light: #f9f9f9;
}

.main-footer {
    background-color: var(--tertiary);
    color: var(--white);
    padding: 60px 0 20px 0;
    margin-top: 50px;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    padding: 0 20px;
}

.footer-section h3, .footer-section h4 {
    color: var(--secondary);
    margin-bottom: 20px;
    text-transform: uppercase;
    font-size: 1.2rem;
}

.footer-section p {
    line-height: 1.6;
    margin-bottom: 10px;
    color: #ccc;
}

.footer-section ul {
    list-style: none;
    padding: 0;
}

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

.footer-section ul li a {
    color: #ccc;
    text-decoration: none;
    transition: 0.3s;
}

.footer-section ul li a:hover {
    color: var(--secondary);
    padding-left: 5px;
}

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

.social-icons a {
    background: var(--primary);
    color: white;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    text-decoration: none;
    transition: 0.3s;
}

.social-icons a:hover {
    background: var(--secondary);
    transform: translateY(-3px);
}

/* Bas du footer */
.footer-bottom {
    text-align: center;
    margin-top: 50px;
    padding-top: 20px;
    border-top: 1px solid #333;
    font-size: 0.9rem;
    color: #888;
}

.footer-bottom strong {
    color: var(--secondary);
}

/* Responsivité */
@media (max-width: 768px) {
    .footer-container {
        text-align: center;
    }
    
    .social-icons {
        justify-content: center;
    }
}
