<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/* Assurons-nous que les variables CSS sont dÃ©finies mÃªme si header-public.css n'est pas chargÃ© */
:root {
    --primary-color: #ff3b5c;
    --secondary-color: #2d3748;
    --accent-color: #8e2de2;
    --light-bg: #f8fafc;
    --text-dark: #1a202c;
    --text-light: #f7fafc;
    --shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --transition: all 0.3s ease;
}

/* Styles pour le footer public */
.footer {
    background-color: var(--secondary-color);
    color: var(--text-light);
    padding: 3rem 0;
    margin-top: auto;
}

.footer-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 2rem;
}

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

.footer-title {
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    color: var(--text-light);
    position: relative;
    font-weight: 600;
}

.footer-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 40px;
    height: 3px;
    background: var(--primary-color);
    border-radius: 1.5px;
}

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

.footer-list li {
    margin-bottom: 0.8rem;
}

.footer-list a {
    color: #cbd5e0;
    text-decoration: none;
    transition: var(--transition);
}

.footer-list a:hover {
    color: var(--primary-color);
}

.copyright {
    text-align: center;
    padding-top: 2rem;
    margin-top: 2rem;
    border-top: 1px solid #4a5568;
    color: #cbd5e0;
}

.social-icons {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.social-icon {
    color: var(--text-light);
    font-size: 1.5rem;
    transition: var(--transition);
}

.social-icon:hover {
    color: var(--primary-color);
}

.newsletter-form {
    display: flex;
    margin-top: 1rem;
    max-width: 100%;
}

.newsletter-input {
    flex: 1;
    padding: 0.8rem 1rem;
    border: none;
    border-radius: 25px 0 0 25px;
    font-size: 0.9rem;
}

.newsletter-btn {
    padding: 0.8rem 1.2rem;
    background: var(--primary-color);
    color: white;
    border: none;
    border-radius: 0 25px 25px 0;
    cursor: pointer;
    transition: var(--transition);
}

.newsletter-btn:hover {
    background: #e02e4d;
}

/* Ã‰tat de succÃ¨s et d'erreur pour le formulaire de newsletter */
.newsletter-success {
    color: #48bb78;
    margin-top: 0.5rem;
    font-size: 0.9rem;
}

.newsletter-error {
    color: #f56565;
    margin-top: 0.5rem;
    font-size: 0.9rem;
}

/* Responsive styles */
@media (max-width: 768px) {
    .footer-content {
        flex-direction: column;
        gap: 3rem;
    }
}</pre></body></html>