/* style.css */
:root {
    --primary-color: #ff2a75;
    --bg-color: #121212;
    --text-color: #f5f5f5;
    --card-bg: #1e1e1e;
}

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

body {
    font-family: 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
    background-color: var(--bg-color);
    color: var(--text-color);
    line-height: 1.6;
}

header {
    background-color: #000;
    padding: 1.5rem 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 2px solid var(--primary-color);
}

.logo {
    font-size: 1.8rem;
    font-weight: 800;
    color: #fff;
    text-decoration: none;
    letter-spacing: 1px;
}

.logo span {
    color: var(--primary-color);
}

nav ul {
    list-style: none;
    display: flex;
    gap: 2rem;
}

nav a {
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.9rem;
    transition: color 0.3s;
}

nav a:hover {
    color: var(--primary-color);
}

.hero {
    text-align: center;
    padding: 6rem 2rem;
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.9));
    border-bottom: 1px solid #333;
}

.hero h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.hero p {
    font-size: 1.2rem;
    max-width: 600px;
    margin: 0 auto 2rem auto;
    color: #bbb;
}

.btn {
    display: inline-block;
    background-color: var(--primary-color);
    color: #fff;
    padding: 0.8rem 2rem;
    text-decoration: none;
    border-radius: 30px;
    font-weight: bold;
    text-transform: uppercase;
    transition: background 0.3s, transform 0.3s;
}

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

.container {
    max-width: 1100px;
    margin: 3rem auto;
    padding: 0 2rem;
}

.section-title {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 3rem;
    color: var(--primary-color);
}

.article-card {
    background: var(--card-bg);
    padding: 2rem;
    border-radius: 10px;
    margin-bottom: 2rem;
    border-left: 4px solid var(--primary-color);
}

.article-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.article-card .meta {
    font-size: 0.85rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
    text-transform: uppercase;
    font-weight: bold;
}

.article-card p {
    color: #ccc;
    margin-bottom: 1.5rem;
}

.read-more {
    color: #fff;
    text-decoration: none;
    border-bottom: 1px solid var(--primary-color);
    padding-bottom: 2px;
}

.read-more:hover {
    color: var(--primary-color);
}

footer {
    text-align: center;
    padding: 2rem;
    background-color: #000;
    margin-top: 4rem;
    font-size: 0.9rem;
    color: #777;
}
/* Nouvelles classes pour la page d'accueil enrichie */
.grid-3 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.feature-box {
    background: #1a1a1a;
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
    border: 1px solid #333;
    transition: transform 0.3s, border-color 0.3s;
}

.feature-box:hover {
    transform: translateY(-5px);
    border-color: var(--primary-color);
}

.feature-box h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.testimonial {
    background: #1e1e1e;
    padding: 2rem;
    border-radius: 10px;
    border-left: 4px solid #fff;
    font-style: italic;
    color: #ccc;
    position: relative;
}

.testimonial span {
    display: block;
    margin-top: 1rem;
    font-weight: bold;
    color: var(--primary-color);
    font-style: normal;
}

.cta-section {
    text-align: center;
    padding: 4rem 2rem;
    background: linear-gradient(135deg, #121212, #2a0813);
    border-top: 1px solid var(--primary-color);
    border-bottom: 1px solid var(--primary-color);
    margin: 4rem 0;
}

.cta-section h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}
/* Styles pour le tableau comparatif */
.table-container {
    overflow-x: auto;
    margin: 2rem 0 4rem 0;
    background: var(--card-bg);
    border-radius: 10px;
    border: 1px solid #333;
}

table {
    width: 100%;
    border-collapse: collapse;
    text-align: left;
    font-size: 0.95rem;
}

th, td {
    padding: 1rem 1.5rem;
    border-bottom: 1px solid #333;
}

th {
    background-color: #000;
    color: var(--primary-color);
    font-weight: bold;
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 1px;
}

tr:last-child td {
    border-bottom: none;
}

tr:hover td {
    background-color: #252525;
}

/* Badges de statut */
.status-badge {
    padding: 0.3rem 0.6rem;
    border-radius: 4px;
    font-size: 0.8rem;
    font-weight: bold;
    text-transform: uppercase;
}

.status-high { background-color: #2aff95; color: #000; }
.status-med { background-color: #ffb82a; color: #000; }
.status-low { background-color: #ff2a75; color: #fff; }