/* Variables pour la cohérence visuelle */
:root {
    --primary-orange: #d35400;
    --dark-bg: #1a1a1a;
    --light-text: #f4f4f4;
    --accent-red: #c0392b;
}

/* Reset de base */
* { margin: 0; padding: 0; box-sizing: border-box; }

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

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

/* Header & Logo */
header { padding: 1.5rem; background: #000; }
.logo { font-size: 1.5rem; letter-spacing: 2px; }
.logo span { color: var(--primary-orange); }

/* Hero Section */
h1 { 
    font-size: 2.5rem; 
    margin-bottom: 1rem; 
    text-transform: uppercase;
    line-height: 1.2;
}
h1 span { color: var(--primary-orange); }

.image-container img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    border: 3px solid #333;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}
/* CSS pour une image 'hero' adaptative */
.hero-container {
    width: 100%;
    overflow: hidden;
}

.hero-image {
    width: 100%;
    height: auto; /* Conserve les proportions */
    display: block;
    object-fit: cover; /* Recadre intelligemment pour remplir l'espace */
    object-position: center; /* Centre le recadrage */
}
.status-badge {
    display: inline-block;
    background: var(--primary-orange);
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    margin: 1.5rem 0;
    font-weight: bold;
}

/* Réseaux Sociaux */
.social-links {
    list-style: none;
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
    margin: 1rem 0;
}

.social-links a {
    color: var(--light-text);
    text-decoration: none;
    font-weight: bold;
    transition: color 0.3s;
    border-bottom: 2px solid transparent;
}

.social-links a:hover, .social-links a:focus {
    color: var(--primary-orange);
    border-bottom: 2px solid var(--primary-orange);
}

/* Footer */
footer { margin-top: 3rem; padding-bottom: 2rem; border-top: 1px solid #333; }
.copyright { font-size: 0.8rem; color: #777; margin-top: 1rem; }

/* Accessibilité : Focus visible */
a:focus { outline: 3px solid var(--primary-orange); outline-offset: 5px; }
