/* --- Variables et Réinitialisation de base --- */
:root {
    --couleur-fond: #1c1c1c; /* Gris foncé, presque noir */
    --couleur-primaire: #D90429; /* Rouge profond (Crimson) */
    --couleur-accent: #FFD700; /* Or/Jaune */
    --couleur-texte-clair: #FFFFFF;
    --police-principale: 'verdana', sans-serif; /* À remplacer par une police stylisée si vous utilisez Google Fonts */
}

  p {
	color: #0000FF;
	line-height: 1;
	text-align: center;
	font-family: "verdana";
	font-weight: bold;
	font-size: 14px;
  }

   p.titre-blanc {
	color: #FFFFF0;
	line-height: 1;
	text-align: center;
	font-family: "verdana";
	font-weight: bold;
	font-size: 20px;
  } 

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--police-principale);
    background-color: var(--couleur-fond);
    color: var(--couleur-texte-clair);
    line-height: 1.6;
}

/* --- Header et Navigation --- */
header {
    background: #000000;
    color: var(--couleur-texte-clair);
    padding: 20px 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 2px solid var(--couleur-accent); /* Ligne d'or */
}

.logo h1 {
    font-size: 1.8em;
	text-align: center;
    color: #FFFFF0;
    letter-spacing: 2px;
}

.logo h2 {
    font-size: 1em;
	text-align: center;
    color: var(--couleur-accent);
}

nav a {
    color: var(--couleur-texte-clair);
    text-decoration: none;
    margin-left: 25px;
    font-weight: bold;
    transition: color 0.3s, border-bottom 0.3s;
    padding-bottom: 5px;
}

nav a:hover, nav a.active {
    color: var(--couleur-primaire);
    border-bottom: 2px solid var(--couleur-accent);
}

/* --- Section Héro (Accueil) --- */
#hero {
    display: flex;
    align-items: center;
    padding: 50px 5%;
    min-height: 70vh;
    background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)), url('texture-fond-sombre.jpg') no-repeat center center/cover;
}

.hero-content {
    max-width: 50%;
    z-index: 1;
}

.hero-image {
    max-width: 45%;
    text-align: right;
}

.hero-image img {
    width: 100%;
    max-width: 500px;
    height: auto;
    border: 3px solid var(--couleur-accent);
    box-shadow: 0 0 20px rgba(255, 215, 0, 0.4); /* Ombre dorée */
}

#hero h1 {
    font-size: 3em;
    color: var(--couleur-accent);
    margin-bottom: 10px;
}

#hero h2 {
    font-size: 1.3em;
    color: var(--couleur-primaire);
    margin-bottom: 20px;
}

#hero p {
    margin-bottom: 15px;
    font-size: 1.1em;
}

.cta-button {
    display: inline-block;
    background-color: var(--couleur-primaire);
    color: var(--couleur-texte-clair);
    padding: 12px 30px;
    text-decoration: none;
    font-weight: bold;
    border: none;
    border-radius: 5px;
    transition: background-color 0.3s, transform 0.2s;
}

.cta-button:hover {
    background-color: #A3001C; /* Rouge plus foncé */
    transform: translateY(-2px);
}

/* --- Footer --- */
footer {
    text-align: center;
    padding: 20px 5%;
    border-top: 1px solid var(--couleur-fond);
    background-color: #000000;
    font-size: 0.9em;
    color: #999;
}

footer a {
    color: var(--couleur-primaire);
    text-decoration: none;
}

footer a:hover {
    text-decoration: underline;
}

/* --- Adaptations Mobiles (Responsive Design) --- */
@media (max-width: 768px) {
    header {
        flex-direction: column;
        text-align: center;
    }

    nav {
        margin-top: 15px;
    }

    nav a {
        margin: 0 10px;
    }

    #hero {
        flex-direction: column;
        text-align: center;
    }

    .hero-content, .hero-image {
        max-width: 100%;
    }

    .hero-image {
        margin-top: 30px;
    }
}