/* assets/pages.css */

/* --- CONFIGURATION GLOBALE PAGE --- */
.page-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 40px 20px;
    min-height: 60vh;
}

/* --- TYPOGRAPHIE & LISIBILITÉ (Mobile First) --- */
.page-header {
    text-align: center;
    margin-bottom: 40px;
}

.page-title {
    font-size: 2rem;
    font-weight: 900;
    margin-bottom: 10px;
    background: linear-gradient(135deg, #fff 30%, #aaa 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.page-subtitle {
    color: var(--text-muted);
    font-size: 1rem;
}

/* Contenu textuel (CGU, Manifeste...) */
.legal-content {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 25px;
    font-size: 1rem;
    color: #d1d5db; /* Gris clair pour lecture */
    line-height: 1.8;
}

.legal-content h2 {
    color: white;
    margin-top: 30px;
    margin-bottom: 15px;
    font-size: 1.4rem;
    border-bottom: 1px solid var(--border);
    padding-bottom: 10px;
}

.legal-content ul {
    list-style: disc;
    margin-left: 20px;
    margin-bottom: 20px;
}

.legal-content p {
    margin-bottom: 20px;
}

/* --- FORMULAIRE DE CONTACT --- */
.contact-wrapper {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

.form-group {
    margin-bottom: 20px;
}

.form-label {
    display: block;
    margin-bottom: 8px;
    color: var(--text-main);
    font-weight: 600;
    font-size: 0.9rem;
}

.form-input, .form-textarea {
    width: 100%;
    padding: 14px;
    background: rgba(0,0,0,0.3);
    border: 1px solid var(--border);
    border-radius: 8px;
    color: white;
    font-family: var(--font-sans);
    font-size: 1rem;
    outline: none;
    transition: border 0.2s;
}

.form-input:focus, .form-textarea:focus {
    border-color: var(--roast-red);
}

.form-textarea {
    min-height: 150px;
    resize: vertical;
}

/* --- RESPONSIVE DESKTOP (min-width: 768px) --- */
@media (min-width: 768px) {
    .page-container {
        padding: 60px 20px;
    }
    
    .page-title {
        font-size: 3rem;
    }
    
    .legal-content {
        padding: 50px; /* Plus d'espace sur PC */
        font-size: 1.05rem;
    }

    .contact-wrapper {
        padding: 50px;
        max-width: 600px;
        margin: 0 auto;
    }
}

/* assets/pages.css */

/* --- LAYOUT --- */
.page-container {
    max-width: 900px; margin: 0 auto; padding: 60px 20px; min-height: 70vh;
}

/* --- HEADER DE PAGE --- */
.branding-header { text-align: center; margin-bottom: 50px; }
.page-title {
    font-size: 2.5rem; font-weight: 900; margin-bottom: 10px;
    background: linear-gradient(135deg, #fff 30%, #aaa 100%);
    -webkit-background-clip: text; -webkit-text-fill-color: transparent;
}
.page-subtitle { color: var(--text-muted); font-size: 1.1rem; }

/* --- CONTENU TEXTE (Legal) --- */
.legal-content {
    background: var(--bg-card); border: 1px solid var(--border);
    border-radius: 16px; padding: 40px; font-size: 1.05rem;
    color: #d4d4d8; line-height: 1.8;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.content-block { margin-bottom: 40px; }
.content-block h2 {
    color: var(--text-main); font-size: 1.5rem; margin-bottom: 15px;
    border-left: 4px solid var(--roast-red); padding-left: 15px;
}
.content-block p { margin-bottom: 15px; }
.content-block ul { margin-left: 20px; margin-bottom: 20px; list-style: disc; color: var(--text-muted); }

.highlight-box {
    background: rgba(239, 68, 68, 0.1); border: 1px solid rgba(239, 68, 68, 0.3);
    padding: 20px; border-radius: 8px; font-style: italic; color: #fca5a5;
    text-align: center; margin: 30px 0; font-weight: 600;
}

/* --- CONTACT FORM --- */
.contact-wrapper {
    max-width: 600px; margin: 0 auto;
    background: var(--bg-card); border: 1px solid var(--border);
    border-radius: 16px; padding: 40px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.5);
}
.form-label { display: block; margin-bottom: 8px; font-weight: 600; color: #e4e4e7; }
.form-input, .form-textarea {
    width: 100%; padding: 12px 15px; background: #09090b;
    border: 1px solid #27272a; border-radius: 8px; color: white;
    font-family: inherit; font-size: 1rem; transition: 0.2s;
}
.form-input:focus, .form-textarea:focus { border-color: var(--roast-red); outline: none; }
.form-textarea { min-height: 120px; resize: vertical; }
.full-width { width: 100%; margin-top: 20px; }

.eco-contact-link { text-align: center; margin-top: 30px; color: #666; font-size: 0.9rem; }
.eco-contact-link a { text-decoration: underline; }

.page-footer-nav { text-align: center; margin-top: 50px; }