/* Footer Styles */
.footer {
    background: linear-gradient(135deg, #2c3e50, #34495e);
    color: white;
    margin-top: 50px;
    border-top: 4px solid #3498db;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.footer-section h3 {
    color: #3498db;
    margin-bottom: 15px;
    font-size: 24px;
}

.footer-section h4 {
    color: #ecf0f1;
    margin-bottom: 15px;
    font-size: 18px;
    border-bottom: 2px solid #3498db;
    padding-bottom: 5px;
    display: inline-block;
}

.footer-section p {
    line-height: 1.6;
    color: #bdc3c7;
    margin-bottom: 15px;
}

/* Liens sociaux */
.social-links {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-top: 15px;
}

.social-link {
    background: rgba(52, 152, 219, 0.2);
    color: white;
    padding: 8px 15px;
    border-radius: 20px;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 1px solid #3498db;
}

.social-link:hover {
    background: #3498db;
    transform: translateY(-2px);
}

/* Liens de navigation */
.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: #bdc3c7;
    text-decoration: none;
    transition: color 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
}

.footer-links a:hover {
    color: #3498db;
    transform: translateX(5px);
}

/* Informations de contact */
.contact-info p {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
}

/* Section copyright */
.footer-bottom {
    background: rgba(0, 0, 0, 0.3);
    padding: 20px 0;
    border-top: 1px solid #34495e;
}

.footer-bottom-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    text-align: center;
    color: #95a5a6;
}

.footer-bottom-content p {
    margin: 5px 0;
}

/* Responsive */
@media (max-width: 768px) {
    .footer-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 20px;
    }

    .social-links {
        justify-content: center;
    }

    .footer-links a {
        justify-content: center;
    }

    .contact-info p {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .footer-container {
        padding: 30px 15px;
    }
    
    .social-links {
        flex-direction: column;
        align-items: center;
    }
    
    .social-link {
        width: 200px;
        text-align: center;
    }
}

/* Footer Simple */
.footer-simple {
    background: #2c3e50;
    color: white;
    padding: 30px 20px;
    margin-top: 50px;
}

.footer-simple-content {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.footer-logo h3 {
    color: #3498db;
    margin-bottom: 5px;
}

.footer-logo p {
    color: #bdc3c7;
    margin-bottom: 20px;
}

.footer-links-simple {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    margin-bottom: 20px;
}

.footer-links-simple a {
    color: #ecf0f1;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-links-simple a:hover {
    color: #3498db;
}

.footer-copyright {
    border-top: 1px solid #34495e;
    padding-top: 15px;
    color: #95a5a6;
}