/* Styles pour la page Mentions Légales */
.legal-container {
    padding-top: 80px;
    min-height: 100vh;
    background: var(--background-dark);
}

/* Hero Section */
.legal-hero {
    background: var(--hero-gradient);
    padding: 4rem 5%;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.legal-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at center, rgba(0,123,255,0.15) 0%, transparent 70%);
}

.legal-hero h1 {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 1rem;
    background: linear-gradient(45deg, #ffffff, #007bff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    position: relative;
}

.legal-hero .subtitle {
    font-size: 1.2rem;
    color: var(--text-gray);
    max-width: 600px;
    margin: 0 auto;
    position: relative;
}

/* Content Section */
.legal-content {
    padding: 4rem 5%;
    max-width: 1000px;
    margin: 0 auto;
}

.legal-section {
    background: var(--card-background);
    border-radius: 15px;
    padding: 2rem;
    margin-bottom: 2rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.legal-section:hover {
    transform: translateY(-5px);
}

.legal-section h2 {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    color: var(--text-light);
    display: flex;
    align-items: center;
    gap: 1rem;
}

.legal-section h2 i {
    color: var(--primary-color);
    font-size: 1.6rem;
}

.legal-section h3 {
    font-size: 1.3rem;
    color: var(--text-light);
    margin: 1.5rem 0 1rem;
}

.content-block {
    color: var(--text-gray);
    line-height: 1.8;
}

.content-block p {
    margin-bottom: 1rem;
}

.content-block strong {
    color: var(--text-light);
    font-weight: 600;
}

.content-block ul {
    list-style: none;
    padding-left: 1.5rem;
    margin: 1rem 0;
}

.content-block ul li {
    position: relative;
    margin-bottom: 0.8rem;
    padding-left: 1.5rem;
}

.content-block ul li::before {
    content: '•';
    color: var(--primary-color);
    position: absolute;
    left: 0;
    font-size: 1.2em;
}

/* Animation au survol des sections */
.legal-section {
    position: relative;
    overflow: hidden;
}

.legal-section::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, transparent, rgba(255,255,255,0.05), transparent);
    transform: translateX(-100%);
    transition: transform 0.6s ease;
}

.legal-section:hover::after {
    transform: translateX(100%);
}

/* Responsive Design */
@media (max-width: 768px) {
    .legal-hero h1 {
        font-size: 2.2rem;
    }

    .legal-hero .subtitle {
        font-size: 1rem;
    }

    .legal-section {
        padding: 1.5rem;
    }

    .legal-section h2 {
        font-size: 1.5rem;
    }

    .legal-section h3 {
        font-size: 1.2rem;
    }

    .content-block {
        font-size: 0.95rem;
    }
}

/* Animation d'entrée des sections */
.legal-section {
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.6s ease forwards;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Délai d'animation pour chaque section */
.legal-section:nth-child(1) { animation-delay: 0.1s; }
.legal-section:nth-child(2) { animation-delay: 0.2s; }
.legal-section:nth-child(3) { animation-delay: 0.3s; }
.legal-section:nth-child(4) { animation-delay: 0.4s; }
.legal-section:nth-child(5) { animation-delay: 0.5s; }
.legal-section:nth-child(6) { animation-delay: 0.6s; } 