/* =========================================================================
   CHARTE GRAPHIQUE GLOBALE - EMPREINTES DE VIE
   ========================================================================= */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,500;0,600;1,400&family=Inter:wght@300;400;500;600&display=swap');

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

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.7;
    color: #1a1a1a;
    background-color: #fafaf8;
    -webkit-font-smoothing: antialiased;
}

.container {
    width: 90%;
    max-width: 1100px;
    margin: 0 auto;
}

/* --- HEADER & NAVIGATION --- */
header {
    background-color: rgba(250, 250, 248, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid #e8e8e2;
    padding: 30px 0;
    position: sticky;
    top: 0;
    z-index: 100;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo a {
    font-family: 'Playfair Display', serif;
    font-size: 32px;
    font-weight: 500;
    color: #1a1a1a;
    text-decoration: none;
    letter-spacing: 1px;
}

nav ul {
    display: flex;
    list-style: none;
    gap: 35px;
}

nav ul li a {
    font-size: 13px;
    font-weight: 400;
    color: #666;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: color 0.3s ease;
}

nav ul li a:hover,
nav ul li a.active {
    color: #8a2b2b;
}

/* --- SECTIONS EDITEURS --- */
.section {
    padding: 90px 0;
}

.section-title {
    font-family: 'Playfair Display', serif;
    font-size: 38px;
    font-weight: 400;
    line-height: 1.3;
    margin-bottom: 40px;
    color: #1a1a1a;
}

.section-subtitle {
    font-family: 'Playfair Display', serif;
    font-size: 22px;
    font-style: italic;
    font-weight: 400;
    margin-bottom: 30px;
    color: #444;
}

.editorial-text p {
    font-size: 16px;
    color: #333;
    margin-bottom: 25px;
    text-align: justify;
}

.editorial-text strong {
    font-weight: 500;
    color: #000;
}

blockquote {
    font-family: 'Playfair Display', serif;
    font-size: 20px;
    font-style: italic;
    margin: 40px 0;
    padding-left: 25px;
    border-left: 2px solid #8a2b2b;
    color: #555;
}

/* --- BOUTONS --- */
.btn {
    display: inline-block;
    padding: 14px 32px;
    background-color: #1a1a1a;
    color: #fff;
    text-decoration: none;
    font-size: 12px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    border: none;
    border-radius: 0;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.btn:hover {
    background-color: #8a2b2b;
}

/* --- FOOTER --- */
footer {
    background-color: #fafaf8;
    border-top: 1px solid #e8e8e2;
    padding: 40px 0;
    text-align: center;
}

footer p {
    font-size: 12px;
    color: #888;
    letter-spacing: 0.5px;
}

/* Responsive */
@media (max-width: 768px) {
    nav { flex-direction: column; gap: 20px; }
    nav ul { gap: 15px; flex-wrap: wrap; justify-content: center; }
    .section-title { font-size: 28px; }
}