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

:root {
    --bg-color: #0f172a;
    --card-bg: #1e293b;
    --text-color: #f8fafc;
    --text-muted: #94a3b8;
    --accent-color: #38bdf8;
    --gradient: linear-gradient(135deg, #38bdf8 0%, #818cf8 100%);
}

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--bg-color);
    color: var(--text-color);
    margin: 0;
    line-height: 1.6;
    padding-top: 100px;
}

/* NAVBAR */
nav {
    position: fixed;
    top: 0;
    width: 100%;
    height: 70px;
    background: rgba(15, 23, 42, 0.9);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    z-index: 1000;
}

.nav-container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-title {
    font-weight: 700;
    background: var(--gradient);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

nav a {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 0.9rem;
    transition: 0.3s;
}

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

/* CONTENU */
.content-wrapper {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 20px;
}

.veille-header {
    text-align: center;
    margin-bottom: 80px;
}

h1 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.methodo-badges {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-bottom: 25px;
}

.badge {
    background: rgba(56, 189, 248, 0.1);
    border: 1px solid var(--accent-color);
    color: var(--accent-color);
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

.intro {
    font-size: 1.2rem;
    color: var(--text-muted);
}

/* SECTIONS */
.veille-section {
    margin-bottom: 80px;
}

h2 {
    font-size: 1.8rem;
    margin-bottom: 30px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding-bottom: 10px;
}

.accent {
    color: var(--accent-color);
    margin-right: 10px;
}

/* METHODOLOGIE CARDS */
.methodo-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.methodo-card {
    background: var(--card-bg);
    padding: 25px;
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.methodo-card h3 {
    color: var(--accent-color);
    margin-top: 0;
}

/* AXES DE VEILLE */
.axes-container {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.axe {
    display: flex;
    align-items: center;
    gap: 25px;
    background: rgba(255, 255, 255, 0.02);
    padding: 20px;
    border-radius: 12px;
    transition: 0.3s;
}

.axe:hover {
    background: rgba(56, 189, 248, 0.05);
    transform: translateX(10px);
}

.axe-icon {
    font-size: 2rem;
}

.axe-content h3 {
    margin: 0 0 5px 0;
    font-size: 1.1rem;
}

.axe-content p {
    margin: 0;
    color: var(--text-muted);
    font-size: 0.95rem;
}

@media (max-width: 600px) {
    .methodo-grid {
        grid-template-columns: 1fr;
    }
}

/* LISTE DES SOURCES */
.sources-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.source-item {
    background: var(--card-bg);
    padding: 20px;
    border-radius: 12px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: border-color 0.3s ease;
}

.source-item:hover {
    border-color: var(--accent-color);
}

.source-info h4 {
    margin: 0 0 5px 0;
    color: var(--text-color);
}

.source-info p {
    margin: 0;
    font-size: 0.9rem;
    color: var(--text-muted);
}

.source-type {
    background: rgba(129, 140, 248, 0.1);
    color: #818cf8;
    padding: 4px 12px;
    border-radius: 6px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    white-space: nowrap;
}

@media (max-width: 600px) {
    .source-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }
}