/* ==========================================================================
   MENTIONS LÉGALES PAGE STYLES (AXOLOCA CARTOON STYLE)
   ========================================================================== */

.legal-container {
    max-width: 900px;
    margin: 0 auto;
    padding: 2rem 1rem 5rem 1rem;
    position: relative;
}

@media (max-width: 768px) {
    .legal-container {
        width: 100% !important;
        max-width: none !important;
        padding: 1rem 4px !important;
    }
}

/* Header de la page */
.legal-header {
    text-align: center;
    margin-bottom: 4rem;
    position: relative;
}

.legal-title {
    font-family: 'SavoryCurry', 'Grandstander Clean', cursive;
    font-size: 3.5rem;
    color: #333;
    margin: 0;
    text-shadow: 3px 3px 0px #fff, 6px 6px 0px rgba(0,0,0,0.1);
    position: relative;
    display: inline-block;
}

.legal-subtitle {
    font-family: 'Grandstander Clean', sans-serif;
    font-size: 1.2rem;
    color: #555;
    margin-top: 1rem;
    background: rgba(255, 255, 255, 0.5);
    display: inline-block;
    padding: 0.5rem 1.5rem;
    border-radius: 30px;
}

/* Éléments décoratifs discrets */
.legal-header::before {
    content: "✦";
    position: absolute;
    left: -40px;
    top: 0px;
    color: #64b5f6;
    font-size: 2rem;
    animation: rotate 8s linear infinite;
}

.legal-header::after {
    content: "✿";
    position: absolute;
    right: -40px;
    bottom: 5px;
    color: #81c784;
    font-size: 2rem;
    animation: bounce 6s infinite;
}

/* Sections des mentions légales */
.legal-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

.legal-section {
    background: #ffffff;
    border: 3px solid #333;
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 5px 5px 0px #333;
    transition: transform 0.2s ease;
}

.legal-section:hover {
    transform: translateY(-2px);
}

.legal-section h2 {
    font-family: 'Grandstander Clean', sans-serif;
    font-size: 1.5rem;
    color: #333;
    margin-top: 0;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    border-bottom: 2px dashed #eee;
    padding-bottom: 0.75rem;
}

.legal-section h2::before {
    content: "";
    display: inline-block;
    width: 12px;
    height: 12px;
    background: #ffb74d;
    border: 2px solid #333;
    border-radius: 3px;
    transform: rotate(45deg);
}

.legal-section p, .legal-section ul {
    font-size: 1rem;
    line-height: 1.7;
    color: #555;
    margin: 0;
}

.legal-section ul {
    padding-left: 1.5rem;
    margin-top: 0.5rem;
}

.legal-section ul li {
    margin-bottom: 0.5rem;
}

.legal-section strong {
    color: #333;
    font-weight: 600;
}

/* Animations */
@keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

/* Responsive */
@media (max-width: 768px) {
    .legal-title { font-size: 2.5rem; }
    .legal-header::before, .legal-header::after { display: none; }
    .legal-section { padding: 1.5rem; }
}
