/*
Theme Name: DepotJeux Theme
Version: 1.0
*/

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&family=Sora:wght@600;700;800&display=swap');

:root {
    --primary: #2563EB;
    --secondary: #059669;
    --accent: #DC2626;
    --orange: #EA580C;
    --purple: #7C3AED;
    --dark: #0F172A;
    --gray: #64748B;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

body {
    font-family: 'Inter', sans-serif;
    color: var(--dark);
    line-height: 1.6;
    background: white !important;
}

/* Header */
.site-header {
    position: sticky;
    top: 0;
    background: rgba(255,255,255,0.98);
    border-bottom: 1px solid #E2E8F0;
    z-index: 100;
    box-shadow: 0 1px 3px rgba(0,0,0,0.04);
}

.header-nav {
    max-width: 1400px;
    margin: 0 auto;
    padding: 1.2rem 3rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.site-logo {
    font-family: 'Sora', sans-serif;
    font-size: 1.6rem;
    font-weight: 800;
    color: var(--primary);
    text-decoration: none;
}

.site-nav {
    flex: 1;
    display: flex;
    justify-content: center;
}

.site-nav ul {
    display: flex;
    gap: 2.5rem;
    list-style: none;
    align-items: center;
    margin: 0;
    padding: 0;
}

.site-nav a {
    color: var(--dark);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    transition: color 0.2s;
}

.site-nav a:hover,
.site-nav .current-menu-item a { 
    color: var(--primary); 
}
.btn-nav {
    color: white !important;
}

.btn-nav {
    background: var(--primary) !important;
    color: white !important;
    padding: 0.7rem 1.5rem;
    border-radius: 8px;
    font-weight: 700;
}

/* Hero */
.hero {
    padding: 3rem 3rem;
    background: linear-gradient(135deg, #1E40AF 0%, #7C3AED 50%, #DB2777 100%);
    color: white;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    width: 600px;
    height: 00px;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
    top: -200px;
    right: -100px;
    border-radius: 50%;
}

.hero-content {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 5rem;
    align-items: center;
    position: relative;
}

.badge {
    display: inline-block;
    background: rgba(255,255,255,0.2);
    backdrop-filter: blur(10px);
    padding: 0.6rem 1.5rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.85rem;
    margin-bottom: 2rem;
    border: 1px solid rgba(255,255,255,0.3);
}

h1 {
    font-family: 'Sora', sans-serif;
    font-size: 3.5rem;
    line-height: 1.15;
    margin-bottom: 1.2rem;
    font-weight: 800;
}

.hero-subtitle {
    font-size: 1.15rem;
    margin-bottom: 1.5rem;
    line-height: 1.7;
    opacity: 0.95;
}

.hero-cta {
    display: flex;
    gap: 1rem;
    margin-bottom: 3rem;
}

.btn {
    padding: 1.1rem 2.2rem;
    border-radius: 10px;
    font-weight: 700;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.7rem;
    transition: all 0.2s;
    border: 2px solid transparent;
}

.btn-white {
    background: white;
    color: var(--primary);
}

.btn-white:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

.btn-outline {
    background: transparent;
    color: white;
    border-color: white;
}

.btn-outline:hover {
    background: rgba(255,255,255,0.1);
}

.stats {
    display: flex;
    gap: 4rem;
    padding-top: 2.5rem;
    border-top: 1px solid rgba(255,255,255,0.2);
}

.stat-number {
    font-family: 'Sora', sans-serif;
    font-size: 2.5rem;
    font-weight: 800;
    display: block;
    line-height: 1;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 0.9rem;
    opacity: 0.9;
}

.process-box {
    background: rgba(255,255,255,0.15);
    backdrop-filter: blur(10px);
    padding: 3rem;
    border-radius: 20px;
    border: 1px solid rgba(255,255,255,0.2);
}

.process-title {
    font-weight: 700;
    font-size: 1.2rem;
    margin-bottom: 2rem;
}

.process-steps {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.process-step {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.process-number {
    width: 35px;
    height: 35px;
    background: white;
    color: var(--primary);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    flex-shrink: 0;
}

.process-arrow {
    padding-left: 1.2rem;
    color: rgba(255,255,255,0.6);
}

/* Advantages Cards */
.advantages {
    padding: 5rem 3rem;
    background: white;
}

.section-header {
    max-width: 800px;
    margin: 0 auto 4rem;
    text-align: center;
}

.section-tag {
    display: inline-block;
    background: #EFF6FF;
    color: var(--primary);
    padding: 0.5rem 1.2rem;
    border-radius: 6px;
    font-weight: 700;
    font-size: 0.85rem;
    text-transform: uppercase;
    margin-bottom: 1rem;
    letter-spacing: 0.05em;
}

h2 {
    font-family: 'Sora', sans-serif;
    font-size: 3rem;
    margin-bottom: 1rem;
    font-weight: 800;
    color: var(--dark);
}

.section-desc {
    font-size: 1.2rem;
    color: var(--gray);
    line-height: 1.7;
}

.advantages-grid {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.advantage-card {
    background: linear-gradient(135deg, #FFFFFF 0%, #F8FAFC 100%);
    padding: 2.5rem;
    border: 2px solid #E2E8F0;
    border-radius: 16px;
    transition: all 0.2s;
    text-align: center;
}

.advantage-card:hover {
    border-color: var(--primary);
    box-shadow: 0 10px 30px rgba(37,99,235,0.15);
    transform: translateY(-5px);
}

.advantage-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 1.5rem;
    background: linear-gradient(135deg, var(--primary) 0%, #3B82F6 100%);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.advantage-icon svg {
    width: 38px;
    height: 38px;
    color: white;
}

.advantage-card h3 {
    font-family: 'Sora', sans-serif;
    font-size: 1.2rem;
    margin-bottom: 1rem;
    font-weight: 700;
    color: var(--dark);
}

.advantage-card p {
    color: var(--gray);
    line-height: 1.6;
    font-size: 0.95rem;
}

/* Services Grid */
.services {
    padding: 5rem 3rem;
    background: #F8FAFC;
}

.services-grid {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.service-card {
    background: white;
    padding: 3rem;
    border: 2px solid #E2E8F0;
    border-radius: 16px;
    transition: all 0.2s;
}

.service-card:hover {
    border-color: var(--primary);
    box-shadow: 0 10px 30px rgba(37,99,235,0.12);
}

.service-number {
    background: var(--primary);
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Sora', sans-serif;
    font-weight: 800;
    font-size: 1.4rem;
    margin-bottom: 1.5rem;
}

.service-card h3 {
    font-family: 'Sora', sans-serif;
    font-size: 1.4rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.service-card p {
    color: var(--gray);
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.service-link {
    color: var(--primary);
    font-weight: 700;
    text-decoration: none;
}

.service-link:hover {
    text-decoration: underline;
}

/* CTA */
.cta {
    padding: 5rem 3rem;
    background: linear-gradient(135deg, var(--secondary) 0%, #047857 100%);
    color: white;
    text-align: center;
}

.cta h2 {
    color: white;
    margin-bottom: 1.5rem;
}

.cta p {
    font-size: 1.3rem;
    margin-bottom: 3rem;
    opacity: 0.95;
}

.cta-content {
    max-width: 1000px;
    margin: 0 auto;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
}

/* Footer */
.site-footer {
    background: var(--dark);
    color: white;
    padding: 4rem 3rem 2rem;
}

.footer-content {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-brand {
    font-family: 'Sora', sans-serif;
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 1rem;
}

.footer-desc {
    color: #94A3B8;
    line-height: 1.7;
}

.footer-column h4 {
    font-weight: 700;
    margin-bottom: 1.2rem;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 0.7rem;
}

.footer-links a {
    color: #94A3B8;
    text-decoration: none;
    font-size: 0.95rem;
}

.footer-links a:hover {
    color: white;
}

.footer-bottom {
    max-width: 1400px;
    margin: 0 auto;
    padding-top: 2rem;
    border-top: 1px solid #334155;
    display: flex;
    justify-content: space-between;
    color: #64748B;
    font-size: 0.9rem;
}

/* Content (pages simples) */
.page-content {
    max-width: 1200px;
    margin: 3rem auto;
    padding: 0 3rem;
}

.page-content h1 {
    font-family: 'Sora', sans-serif;
    font-size: 3rem;
    margin-bottom: 2rem;
    color: var(--dark);
}

/* Responsive */
@media (max-width: 1200px) {
    .hero-content { grid-template-columns: 1fr; }
    .advantages-grid { grid-template-columns: repeat(2, 1fr); }
    .services-grid { grid-template-columns: 1fr; }
    .footer-content { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
    h1 { font-size: 2.5rem; }
    .site-nav { display: none; }
    .advantages-grid { grid-template-columns: 1fr; }
}
/* ========================================
   PAGE CONTACT
   ======================================== */

.page-header {
    padding: 5rem 3rem 4rem;
    background: linear-gradient(135deg, #1E40AF 0%, #7C3AED 50%, #DB2777 100%);
    color: white;
    text-align: center;
}

.page-header h1 {
    font-family: 'Sora', sans-serif;
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
}

.page-header p {
    font-size: 1.3rem;
    opacity: 0.95;
    max-width: 800px;
    margin: 0 auto;
}

.contact-container {
    max-width: 1200px;
    margin: 5rem auto;
    padding: 0 3rem;
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 4rem;
    align-items: start;
}

.contact-info h2 {
    font-family: 'Sora', sans-serif;
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 2rem;
}

.contact-info > p {
    font-size: 1.1rem;
    color: var(--gray);
    margin-bottom: 3rem;
    line-height: 1.8;
}

.contact-methods {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-method {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
}

.contact-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #EFF6FF 0%, #DBEAFE 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    flex-shrink: 0;
}

.contact-method h3 {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--dark);
}

.contact-method p {
    color: var(--gray);
    margin: 0;
}

.contact-form {
    background: white;
    padding: 3rem;
    border: 2px solid #E2E8F0;
    border-radius: 16px;
}

.contact-form h2 {
    font-family: 'Sora', sans-serif;
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 2rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    font-weight: 700;
    margin-bottom: 0.7rem;
    color: var(--dark);
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 1rem;
    border: 2px solid #E2E8F0;
    border-radius: 8px;
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    transition: border-color 0.2s;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--primary);
}

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

.btn-submit {
    width: 100%;
    padding: 1.1rem 2rem;
    border-radius: 8px;
    font-weight: 700;
    border: none;
    cursor: pointer;
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    background: var(--primary);
    color: white;
    transition: all 0.2s;
}

.btn-submit:hover {
    background: #1E40AF;
    transform: translateY(-1px);
}

@media (max-width: 1024px) {
    .contact-container {
        grid-template-columns: 1fr;
    }
}
/* ========================================
   PAGE CONSEILS
   ======================================== */

.content-conseils {
    max-width: 1200px;
    margin: 0 auto;
    padding: 5rem 3rem;
}

.guide-section {
    margin-bottom: 5rem;
}

.guide-section h2 {
    font-family: 'Sora', sans-serif;
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    font-weight: 800;
    padding-bottom: 1rem;
    border-bottom: 3px solid var(--primary);
}

.guide-section h3 {
    font-size: 1.8rem;
    margin: 2.5rem 0 1.5rem;
    font-weight: 700;
}

.guide-section p {
    font-size: 1.1rem;
    color: var(--gray);
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.alert-box {
    background: linear-gradient(135deg, #FEF2F2 0%, #FEE2E2 100%);
    border-left: 5px solid var(--accent);
    padding: 2rem;
    margin: 2.5rem 0;
    border-radius: 8px;
}

.alert-box h4 {
    font-size: 1.3rem;
    font-weight: 800;
    color: var(--accent);
    margin-bottom: 1rem;
}

.alert-box p {
    color: #991B1B;
    font-size: 1.05rem;
    margin: 0;
}

.info-box {
    background: linear-gradient(135deg, #EFF6FF 0%, #DBEAFE 100%);
    border-left: 5px solid var(--primary);
    padding: 2rem;
    margin: 2.5rem 0;
    border-radius: 8px;
}

.info-box h4 {
    font-size: 1.3rem;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 1rem;
}

.info-box p {
    color: #1E40AF;
    font-size: 1.05rem;
    margin: 0;
}

.checklist {
    list-style: none;
    margin: 2rem 0;
}

.checklist li {
    padding: 1.2rem 0;
    border-bottom: 1px solid #E2E8F0;
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.check-icon {
    width: 28px;
    height: 28px;
    background: var(--secondary);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 900;
    font-size: 1rem;
    flex-shrink: 0;
    margin-top: 0.2rem;
}

.cta-section {
    text-align: center;
    margin-top: 5rem;
}

.cta-section h2 {
    font-family: 'Sora', sans-serif;
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.cta-section p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: var(--gray);
}
/* ========================================
   PAGE TARIFS
   ======================================== */

.pricing {
    padding: 5rem 3rem;
    max-width: 1400px;
    margin: 0 auto;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
    margin-bottom: 5rem;
}

.pricing-card {
    background: white;
    padding: 3rem;
    border: 3px solid #E2E8F0;
    border-radius: 20px;
    transition: all 0.2s;
    position: relative;
}

.pricing-card:hover {
    border-color: var(--primary);
    box-shadow: 0 15px 40px rgba(37,99,235,0.15);
    transform: translateY(-5px);
}

.pricing-card.featured {
    border-color: var(--primary);
    background: linear-gradient(135deg, #FFFFFF 0%, #EFF6FF 100%);
}

.featured-badge {
    position: absolute;
    top: -15px;
    right: 30px;
    background: var(--primary);
    color: white;
    padding: 0.5rem 1.2rem;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 800;
    text-transform: uppercase;
}

.pricing-name {
    font-family: 'Sora', sans-serif;
    font-size: 1.8rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
}

.pricing-desc {
    color: var(--gray);
    margin-bottom: 2rem;
}

.price-amount {
    font-family: 'Sora', sans-serif;
    font-size: 4rem;
    font-weight: 900;
    color: var(--primary);
    line-height: 1;
}

.price-period {
    font-size: 1.1rem;
    color: var(--gray);
}

.pricing-features {
    list-style: none;
    margin: 2rem 0;
}

.pricing-features li {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
    align-items: flex-start;
}

.check {
    width: 24px;
    height: 24px;
    background: var(--secondary);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 900;
    font-size: 0.75rem;
    flex-shrink: 0;
}

/* Boutons */
.btn {
    display: block;
    width: 100%;
    padding: 1.1rem 2rem;
    border-radius: 10px;
    font-weight: 700;
    text-decoration: none;
    text-align: center;
    transition: all 0.2s;
    border: 2px solid transparent;
}

.btn-primary {
    background: var(--primary);
    color: white;
}

.btn-primary:hover {
    background: #1E40AF;
    transform: translateY(-2px);
}

.btn-secondary {
    background: white;
    color: var(--primary);
    border: 2px solid var(--primary);
}

.btn-secondary:hover {
    background: var(--primary);
    color: white;
}

.addons {
    padding: 5rem 3rem;
    background: #F8FAFC;
}

.section-desc {
    text-align: center;
    font-size: 1.2rem;
    color: var(--gray);
    margin-bottom: 4rem;
}

.addons-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.addon-card {
    background: white;
    padding: 2.5rem;
    border-radius: 16px;
    border: 2px solid #E2E8F0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.2s;
}

.addon-card:hover {
    border-color: var(--primary);
    box-shadow: 0 10px 25px rgba(37,99,235,0.1);
}

.addon-info h3 {
    font-family: 'Sora', sans-serif;
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.addon-info p {
    margin: 0;
}

.addon-price {
    text-align: right;
}

.addon-amount {
    font-family: 'Sora', sans-serif;
    font-size: 2rem;
    font-weight: 900;
    color: var(--primary);
    display: block;
}

.cta {
    padding: 5rem 3rem;
    background: linear-gradient(135deg, var(--secondary) 0%, #047857 100%);
    color: white;
    text-align: center;
}

.cta h2 {
    color: white;
}

.cta p {
    font-size: 1.3rem;
    margin-bottom: 3rem;
    opacity: 0.95;
}

.btn-white {
    background: white;
    color: var(--primary);
    display: inline-block;
    width: auto;
}

.btn-white:hover {
    background: #F8FAFC;
    transform: translateY(-2px);
}

@media (max-width: 1024px) {
    .pricing-grid, 
    .addons-grid {
        grid-template-columns: 1fr;
    }
}
/* ========================================
   PAGE DÉPOSER UN JEU
   ======================================== */

.depot-container {
    max-width: 800px;
    margin: 5rem auto;
    padding: 0 3rem;
}

.depot-form {
    background: white;
    border: 2px solid #E2E8F0;
    border-radius: 16px;
    overflow: hidden;
}

.form-section {
    padding: 3rem;
    border-bottom: 2px solid #F1F5F9;
}

.form-section:last-of-type {
    border-bottom: none;
}

.form-section h3 {
    font-family: 'Sora', sans-serif;
    font-size: 1.5rem;
    margin-bottom: 2rem;
    color: var(--dark);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.btn-large {
    width: calc(100% - 6rem);
    margin: 3rem;
    padding: 1.3rem 2rem;
    font-size: 1.1rem;
}

.success-box {
    background: linear-gradient(135deg, #ECFDF5 0%, #D1FAE5 100%);
    border: 3px solid var(--secondary);
    border-radius: 20px;
    padding: 4rem;
    text-align: center;
}

.success-icon {
    font-size: 5rem;
    margin-bottom: 1rem;
}

.success-box h2 {
    font-family: 'Sora', sans-serif;
    color: var(--secondary);
    margin-bottom: 1rem;
}

.error-box {
    background: #FEF2F2;
    border: 2px solid var(--accent);
    border-radius: 12px;
    padding: 2rem;
    margin-bottom: 2rem;
}

/* ========================================
   PAGE JEUX DÉPOSÉS
   ======================================== */

.jeux-container {
    max-width: 1200px;
    margin: 5rem auto;
    padding: 0 3rem;
}

.jeux-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 2.5rem;
}

.jeu-card {
    background: white;
    border: 2px solid #E2E8F0;
    border-radius: 16px;
    padding: 2.5rem;
    position: relative;
    transition: all 0.2s;
}

.jeu-card:hover {
    border-color: var(--primary);
    box-shadow: 0 10px 30px rgba(37,99,235,0.15);
    transform: translateY(-5px);
}

.jeu-badge {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    background: var(--secondary);
    color: white;
    padding: 0.4rem 1rem;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 700;
}

.jeu-card h3 {
    font-family: 'Sora', sans-serif;
    font-size: 1.5rem;
    margin-bottom: 1rem;
    padding-right: 4rem;
}

.jeu-content {
    color: var(--gray);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.jeu-meta {
    border-top: 1px solid #E2E8F0;
    padding-top: 1.5rem;
}

.jeu-info {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-bottom: 1rem;
    font-size: 0.9rem;
    color: var(--gray);
}

.btn-small {
    display: inline-block;
    padding: 0.7rem 1.5rem;
    font-size: 0.9rem;
}

.no-jeux {
    text-align: center;
    padding: 5rem 2rem;
}

.no-jeux h2 {
    font-family: 'Sora', sans-serif;
    margin-bottom: 1rem;
}

@media (max-width: 768px) {
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .jeux-grid {
        grid-template-columns: 1fr;
    }
}
.canvas-admin-container {
    min-height: 70vh; /* Force la page à prendre au moins 70% de la hauteur de l'écran */
}
.logout-link:hover {
    text-decoration: underline;
    opacity: 0.8;
}

.menu-gestionnaire {
    list-style: none;
    display: flex;
    gap: 20px;
    margin: 0;
    padding: 0;
}

.menu-gestionnaire a {
    text-decoration: none;
    color: #333;
    font-size: 14px;
}
.depot-minimal {
    max-width: 650px;
    margin: 50px auto;
    font-family: "Helvetica Neue", Arial, sans-serif;
}

.form-pro {
    background: #fff;
    padding: 30px;
    border: 1px solid #e0e0e0;
    border-radius: 4px;
}

.field-row {
    display: flex;
    gap: 20px;
    margin-bottom: 15px;
}

.field-group {
    flex: 1;
    margin-bottom: 15px;
}

.field-group label {
    display: block;
    font-size: 13px;
    font-weight: bold;
    text-transform: uppercase;
    color: #666;
    margin-bottom: 5px;
}

.form-pro input, .form-pro textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 2px;
}

.btn-primary-pro {
    background: #2c3e50; /* Couleur sombre, sérieuse */
    color: white;
    padding: 12px 25px;
    border: none;
    cursor: pointer;
    width: 100%;
    font-weight: bold;
}
/* Couleur Orange pour RGPD */
.text-orange {
    color: #FF8A00; /* Un orange vif qui ressort sur le violet */
    text-shadow: 0 0 20px rgba(255, 138, 0, 0.3);
}

/* Container Zigzag */
.zigzag-container {
    display: flex;
    flex-direction: column;
    gap: 20px;
    perspective: 1000px;
}

.zigzag-card {
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 1.5rem 2rem;
    border-radius: 15px;
    display: flex;
    align-items: center;
    gap: 15px;
    width: 320px;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.zigzag-card:hover {
    transform: scale(1.05) rotate(0deg) !important;
    background: rgba(255, 255, 255, 0.2);
    border-color: #FF8A00;
}

/* L'effet Zigzag "Tordu" propre */
.card-1 { transform: rotate(-3deg); align-self: flex-start; }
.card-2 { transform: rotate(2deg); align-self: flex-end; margin-right: -20px; }
.card-3 { transform: rotate(-2deg); align-self: flex-start; margin-left: -10px; }
.card-4 { transform: rotate(3deg); align-self: flex-end; }

.zigzag-number {
    font-family: 'Sora', sans-serif;
    font-size: 1.8rem;
    font-weight: 800;
    color: #FF8A00;
    opacity: 0.8;
}

.zigzag-txt {
    font-weight: 600;
    font-size: 1.1rem;
    color: white;
}

/* Correction responsive pour mobile */
@media (max-width: 768px) {
    .zigzag-container {
        align-items: center;
    }
    .zigzag-card {
        align-self: center !important;
        margin: 0 !important;
        width: 100%;
        transform: none !important;
    }
}
/* ========================================
   ARTICLES DE BLOG AUTO-GÉNÉRÉS
   ======================================== */

.single-article-header {
    padding: 4rem 3rem;
    background: linear-gradient(135deg, #1E40AF 0%, #7C3AED 50%, #DB2777 100%);
    color: white;
    text-align: center;
}

.single-article-header h1 {
    font-family: 'Sora', sans-serif;
    font-size: 2.8rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: white;
}

.dj-article h2 {
    font-family: 'Sora', sans-serif;
    font-size: 1.6rem;
    font-weight: 800;
    color: #0F172A;
    margin-top: 2.5em;
    margin-bottom: 0.8em;
    padding-bottom: 10px;
    border-bottom: 3px solid #2563EB;
    line-height: 1.3;
}

.dj-article h3 {
    font-family: 'Sora', sans-serif;
    font-size: 1.15rem;
    font-weight: 700;
    color: #0F172A;
    margin-top: 1.8em;
    margin-bottom: 0.5em;
}

.dj-article p {
    font-size: 1.08rem;
    color: #1e293b;
    line-height: 2;
    margin-bottom: 1.2em;
}

.dj-article ul, .dj-article ol {
    padding-left: 1.5em;
    margin-bottom: 1.5em;
}

.dj-article ul li, .dj-article ol li {
    font-size: 1.08rem;
    color: #1e293b;
    line-height: 2;
    margin-bottom: 8px;
}

.dj-article ul li::marker {
    color: #2563EB;
}

.dj-article ol li::marker {
    color: #2563EB;
    font-weight: 700;
}

.dj-article strong {
    color: #0F172A;
    font-weight: 700;
}

.dj-article img {
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.10);
}

/* Quiz styler via inline — override couleurs texte */
.dj-article div[style*="1E40AF"] h2 {
    color: #FCD34D !important;
    border-bottom: 2px solid rgba(255,255,255,0.3) !important;
}

.dj-article div[style*="1E40AF"] p,
.dj-article div[style*="1E40AF"] li,
.dj-article div[style*="1E40AF"] ol {
    color: rgba(255,255,255,0.92) !important;
}

.dj-article div[style*="1E40AF"] strong {
    color: #FCD34D !important;
}

@media (max-width: 768px) {
    .single-article-header { padding: 3rem 1.5rem; }
    .single-article-header h1 { font-size: 2rem; }
    .dj-article { padding: 0 1.5rem !important; }
}

/* Cacher nav et footer sur articles */
.single .site-nav { display: none !important; }
.single .btn-nav { display: none !important; }
.single .site-footer { display: none !important; }
.single .site-logo { display: none !important; }
.single .site-header { display: none !important; }