/* ============================================
   MENTIONS-LEGALES.CSS
   ============================================ */

.mentions-page {
    padding: 60px 0 80px;
    background: #f5f6f8;
    min-height: 80vh;
}

/* --- HERO --- */
.mentions-hero {
    text-align: center;
    padding: 50px 0 40px;
    border-bottom: 1px solid #e0e4ea;
    margin-bottom: 40px;
}

.mentions-badge {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    background: rgba(44,95,158,0.1);
    border: 1px solid rgba(44,95,158,0.25);
    color: #2c5f9e;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    padding: 6px 16px;
    border-radius: 50px;
    margin-bottom: 22px;
}

.mentions-hero h1 {
    font-size: 36px;
    font-weight: 600;
    color: #1a1d23;
    line-height: 1.25;
    margin-bottom: 12px;
}

.mentions-hero h1 span {
    color: #2c5f9e;
}

.mentions-hero p {
    font-size: 13px;
    color: #999;
}

/* --- NAVIGATION RAPIDE --- */
.mentions-nav {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
    margin-bottom: 50px;
}

.mentions-nav a {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 9px 18px;
    background: #fff;
    border: 1px solid #e0e4ea;
    border-radius: 50px;
    color: #555;
    font-size: 13px;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.25s ease;
}

.mentions-nav a:hover {
    background: #2c5f9e;
    border-color: #2c5f9e;
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(44,95,158,0.25);
}

.mentions-nav a i {
    font-size: 12px;
}

/* --- SECTIONS --- */
.mentions-content {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.mentions-section {
    background: #fff;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(0,0,0,0.06);
    border: 1px solid #e8ecf0;
}

.mentions-section-header {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 24px 30px;
    border-bottom: 1px solid #f0f2f5;
    background: #fafbfc;
}

.mentions-section-icon {
    width: 40px;
    height: 40px;
    background: rgba(44,95,158,0.1);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #2c5f9e;
    font-size: 16px;
    flex-shrink: 0;
}

.mentions-section-header h2 {
    font-size: 18px;
    font-weight: 600;
    color: #1a1d23;
    margin: 0;
}

.mentions-body {
    padding: 28px 30px;
}

.mentions-body p {
    font-size: 14px;
    color: #555;
    line-height: 1.8;
}

/* --- GRILLE INFOS ÉDITEUR --- */
.info-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
}

.info-item {
    display: flex;
    flex-direction: column;
    gap: 4px;
    padding: 14px 16px;
    background: #f8f9fb;
    border-radius: 10px;
    border: 1px solid #eef0f4;
}

.info-label {
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    color: #2c5f9e;
}

.info-value {
    font-size: 14px;
    color: #333;
    font-weight: 500;
}

/* --- TABLEAU DONNÉES --- */
.data-table {
    border-radius: 10px;
    overflow: hidden;
    border: 1px solid #e8ecf0;
    margin: 20px 0;
}

.data-row {
    display: grid;
    grid-template-columns: 1.5fr 1.5fr 1fr;
    gap: 0;
}

.data-row.header {
    background: #1a1d23;
    color: rgba(255,255,255,0.75);
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.data-row:not(.header) {
    border-bottom: 1px solid #f0f2f5;
    font-size: 13px;
    color: #444;
}

.data-row:last-child {
    border-bottom: none;
}

.data-row span {
    padding: 13px 16px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.data-row:not(.header) span:first-child {
    font-weight: 500;
    color: #333;
}

.data-row:not(.header):hover {
    background: #f8f9fb;
}

.data-row span i {
    color: #2c5f9e;
    font-size: 13px;
    width: 16px;
}

/* --- ALERTE INFO --- */
.mentions-alert {
    display: flex;
    gap: 14px;
    align-items: flex-start;
    background: rgba(44,95,158,0.06);
    border: 1px solid rgba(44,95,158,0.2);
    border-left: 4px solid #2c5f9e;
    border-radius: 10px;
    padding: 16px 18px;
    margin-top: 16px;
}

.mentions-alert i {
    color: #2c5f9e;
    font-size: 16px;
    margin-top: 2px;
    flex-shrink: 0;
}

.mentions-alert p {
    font-size: 13px;
    color: #444;
    line-height: 1.7;
    margin: 0;
}

/* --- GRILLE DROITS --- */
.rights-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    margin-top: 22px;
}

.right-card {
    padding: 22px 20px;
    background: #f8f9fb;
    border-radius: 12px;
    border: 1px solid #eef0f4;
    transition: all 0.25s ease;
}

.right-card:hover {
    border-color: #2c5f9e;
    background: #f0f5ff;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(44,95,158,0.1);
}

.right-icon {
    width: 36px;
    height: 36px;
    background: rgba(44,95,158,0.12);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #2c5f9e;
    font-size: 14px;
    margin-bottom: 12px;
}

.right-card h4 {
    font-size: 14px;
    font-weight: 600;
    color: #1a1d23;
    margin-bottom: 6px;
}

.right-card p {
    font-size: 12.5px;
    color: #777;
    line-height: 1.6;
}

/* --- CONTACT LÉGAL --- */
.contact-legal-box {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    margin-top: 18px;
}

.contact-legal-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 13px 22px;
    background: #2c5f9e;
    color: #fff;
    border-radius: 10px;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.25s ease;
}

.contact-legal-btn:hover {
    background: #1a4a80;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(44,95,158,0.35);
}

.contact-legal-btn i {
    font-size: 14px;
}

/* --- RESPONSIVE --- */
@media (max-width: 768px) {
    .mentions-hero h1 { font-size: 24px; }

    .mentions-section-header { padding: 18px 20px; }
    .mentions-section-header h2 { font-size: 16px; }

    .mentions-body { padding: 20px; }

    .info-grid { grid-template-columns: 1fr; }

    .data-row {
        grid-template-columns: 1fr;
    }
    .data-row.header span:not(:first-child) { display: none; }
    .data-row:not(.header) span:not(:first-child) { 
        display: none; 
    }
    .data-row:not(.header) span:first-child {
        padding: 12px 14px;
    }

    .rights-grid { grid-template-columns: 1fr; gap: 12px; }

    .contact-legal-box { flex-direction: column; }
    .contact-legal-btn { justify-content: center; }

    .mentions-nav a { font-size: 12px; padding: 8px 14px; }
}
