/* ========================= PAGES STATIQUES ========================= */
/* Style pour les pages confidentialité et mentions légales */

.static-page-container {
    min-height: 60vh;
    padding: 3rem 1rem;
    background-color: #f9f9f9;
}

.static-page-content {
    max-width: 900px;
    margin: 0 auto;
    background-color: white;
    padding: 3rem;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.static-page-content h1.public-title {
    font-family: 'More Sugar', cursive !important;
    font-weight: 400 !important;
    line-height: 1 !important;
    letter-spacing: -0.04em !important;
    text-align: center !important;
    color: #f07a5c !important;
    margin-bottom: 2.5rem !important;
}

.static-page-text {
    font-family: 'Causten', sans-serif;
    font-size: 1rem;
    line-height: 1.8;
    color: #333;
}

.static-page-text h2 {
    font-family: 'More Sugar', cursive !important;
    font-size: 1.8rem !important;
    font-weight: 400 !important;
    line-height: 1 !important;
    letter-spacing: -0.04em !important;
    color: #f07a5c !important;
    margin-top: 2rem !important;
    margin-bottom: 1rem !important;
}

.static-page-text h3 {
    font-family: 'Causten', sans-serif;
    font-weight: 700;
    font-size: 1.3rem;
    color: #333;
    margin-top: 1.5rem;
    margin-bottom: 0.8rem;
}

.static-page-text p {
    margin-bottom: 1rem;
}

.static-page-text ul,
.static-page-text ol {
    margin-left: 2rem;
    margin-bottom: 1rem;
}

.static-page-text li {
    margin-bottom: 0.5rem;
}

.static-page-text a {
    color: #f07a5c;
    text-decoration: none;
    border-bottom: 1px solid transparent;
    transition: border-bottom-color 0.2s ease;
}

.static-page-text a:hover {
    border-bottom-color: #f07a5c;
}

.static-page-text strong {
    font-weight: 700;
    color: #222;
}

.static-page-placeholder {
    font-family: 'Causten', sans-serif;
    font-style: italic;
    color: #666;
    text-align: center;
    padding: 2rem;
}

/* Responsive */
@media (max-width: 768px) {
    .static-page-content {
        padding: 2rem 1.5rem;
    }
    
    .static-page-content h1.public-title {
        font-size: 2.2rem;
    }
    
    .static-page-text h2 {
        font-size: 1.5rem;
    }
}

@media (max-width: 480px) {
    .static-page-container {
        padding: 2rem 0.5rem;
    }
    
    .static-page-content {
        padding: 1.5rem 1rem;
        border-radius: 4px;
    }
    
    .static-page-content h1.public-title {
        font-size: 1.8rem;
    }
    
    .static-page-text {
        font-size: 0.95rem;
    }
}
