/* Styles pour les sections de contenu du footer */
.footer-content-section {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.95);
    z-index: 10000;
    overflow-y: auto;
    padding: 80px 20px 40px;
}

.footer-content-section.active {
    display: block;
}

.footer-content-container {
    max-width: 900px;
    margin: 0 auto;
    background: linear-gradient(135deg, rgba(20, 20, 30, 0.98), rgba(30, 30, 45, 0.95));
    border-radius: 12px;
    padding: 40px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-content-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 2px solid rgba(255, 255, 255, 0.1);
}

.footer-content-title {
    font-size: 2rem;
    font-weight: 700;
    color: #fff;
    margin: 0;
    background: linear-gradient(90deg, #5f5dff, #7b79ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.footer-content-close {
    background: rgba(255, 255, 255, 0.1);
    border: none;
    color: #fff;
    font-size: 2rem;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
}

.footer-content-close:hover {
    background: rgba(95, 93, 255, 0.3);
    transform: rotate(90deg);
}

.footer-content-body {
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.8;
    font-size: 1rem;
}

.footer-content-body h2 {
    color: #fff;
    font-size: 1.5rem;
    margin: 30px 0 15px;
    font-weight: 600;
}

.footer-content-body h3 {
    color: #fff;
    font-size: 1.2rem;
    margin: 25px 0 12px;
    font-weight: 500;
}

.footer-content-body p {
    margin: 15px 0;
}

.footer-content-body ul {
    margin: 15px 0;
    padding-left: 20px;
}

.footer-content-body li {
    margin: 8px 0;
}

.footer-content-body a {
    color: #5f5dff;
    text-decoration: none;
    transition: color 0.2s ease;
}

.footer-content-body a:hover {
    color: #7b79ff;
    text-decoration: underline;
}

.footer-content-body strong {
    color: #fff;
    font-weight: 600;
}

.footer-contact-info {
    background: rgba(95, 93, 255, 0.1);
    border-left: 3px solid #5f5dff;
    padding: 15px 20px;
    margin: 20px 0;
    border-radius: 4px;
}

.footer-highlight-box {
    background: rgba(100, 150, 255, 0.1);
    border-left: 3px solid #6496ff;
    padding: 15px 20px;
    margin: 20px 0;
    border-radius: 4px;
}

/* Animation d'entrée */
@keyframes fadeInContent {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.footer-content-section.active .footer-content-container {
    animation: fadeInContent 0.3s ease-out;
}

/* Responsive */
@media (max-width: 768px) {
    .footer-content-section {
        padding: 60px 15px 30px;
    }
    
    .footer-content-container {
        padding: 25px;
    }
    
    .footer-content-title {
        font-size: 1.5rem;
    }
    
    .footer-content-body {
        font-size: 0.95rem;
    }
}
