:root {
    --primary: #2c3e50;
    --accent: #e67e22;
    --text: #1a1a1a;
    --light-bg: #f8fafc;
    --white: #ffffff;
    --shadow: 0 4px 20px rgba(0,0,0,0.08);
}

* { box-sizing: border-box; }

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.7;
    color: var(--text);
    background-color: var(--light-bg);
    margin: 0;
    padding: 0;
}

/* Navigation Moderne */
nav {
    background: var(--white);
    padding: 1rem 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: var(--shadow);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.logo { font-weight: 700; font-size: 1.5rem; color: var(--primary); text-decoration: none; }

/* Container de l'article */
.container {
    max-width: 900px;
    margin: 40px auto;
    padding: 0 20px;
}

article {
    background: var(--white);
    padding: 60px;
    border-radius: 16px;
    box-shadow: var(--shadow);
}

header { text-align: center; margin-bottom: 50px; }

.category {
    text-transform: uppercase;
    color: var(--accent);
    font-weight: 700;
    letter-spacing: 1px;
    font-size: 0.9rem;
}

h1 { font-size: 2.8rem; margin: 10px 0; color: var(--primary); line-height: 1.2; }

.meta { color: #888; font-size: 0.9rem; }

.featured-image {
    width: 100%;
    height: 400px;
    background: url('https://images.unsplash.com/photo-1517457373958-b7bdd4587205?auto=format&fit=crop&w=1200&q=80') center/cover;
    border-radius: 12px;
    margin-bottom: 40px;
}

h2 {
    font-size: 1.8rem;
    margin-top: 40px;
    display: flex;
    align-items: center;
    color: var(--primary);
}

h2::before {
    content: "";
    width: 4px;
    height: 25px;
    background: var(--accent);
    margin-right: 15px;
    border-radius: 2px;
}

p { margin-bottom: 20px; font-size: 1.1rem; color: #444; }

/* Carte de Lieu */
.place-card {
    border: 1px solid #eee;
    padding: 20px;
    border-radius: 12px;
    margin: 20px 0;
    transition: transform 0.3s ease;
}
.place-card:hover { transform: translateY(-5px); border-color: var(--accent); }

/* Zone de Conversion (CTA) */
.cta-section {
    background: linear-gradient(135deg, var(--primary) 0%, #1a252f 100%);
    color: white;
    padding: 40px;
    border-radius: 12px;
    text-align: center;
    margin-top: 60px;
}

.cta-section h3 { font-size: 2rem; margin-bottom: 10px; }

.btn {
    background: var(--accent);
    color: white;
    padding: 16px 35px;
    border-radius: 50px;
    text-decoration: none;
    display: inline-block;
    font-weight: 700;
    font-size: 1.1rem;
    margin-top: 20px;
    box-shadow: 0 4px 15px rgba(230, 126, 34, 0.4);
    transition: all 0.3s ease;
}

.btn:hover { background: #d35400; transform: translateY(-2px); }

/* Responsive */
@media (max-width: 768px) {
    article { padding: 30px 20px; }
    h1 { font-size: 2rem; }
    .featured-image { height: 250px; }
}
