/* ==============================
   STYLE GLOBAL - Provence-Alpes-Côte d’Azur
   ============================== */

body {
  margin: 0;
  font-family: 'Segoe UI', Roboto, Arial, sans-serif;
  background-color: #fffaf3;
  color: #333;
  line-height: 1.6;
}

/* ==============================
   HEADER ET NAVIGATION
   ============================== */

header {
  background-color: #ffd166;
  color: #333;
  padding: 20px 0;
  text-align: center;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.1);
}

header h1 {
  margin: 0;
  font-size: 2rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

nav ul {
  list-style: none;
  padding: 0;
  margin: 15px 0 0 0;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}

nav ul li {
  margin: 8px 12px;
}

nav ul li a {
  text-decoration: none;
  color: #333;
  font-weight: 600;
  background-color: #ffe8a1;
  padding: 8px 14px;
  border-radius: 6px;
  transition: all 0.3s ease;
}

nav ul li a:hover,
nav ul li a.active {
  background-color: #ffb703;
  color: white;
}

/* ==============================
   BANNIÈRES / HERO
   ============================== */

.hero {
  position: relative;
  height: 300px;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.overlay {
  background-color: rgba(0, 0, 0, 0.45);
  color: white;
  padding: 40px;
  border-radius: 10px;
}

.hero h2 {
  margin: 0;
  font-size: 2rem;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.4);
}

.hero p {
  margin-top: 10px;
  font-size: 1.1rem;
}

/* ==============================
   SECTIONS DE CONTENU
   ============================== */

section.intro {
  max-width: 900px;
  margin: 50px auto;
  padding: 0 20px;
}

section.intro h3 {
  color: #e76f51;
  font-size: 1.5rem;
  margin-bottom: 10px;
}

section.intro p {
  margin-bottom: 15px;
}

section.intro ul {
  list-style: none;
  padding-left: 0;
}

section.intro li {
  margin: 8px 0;
  background: #fff3e0;
  padding: 10px 15px;
  border-left: 4px solid #f4a261;
  border-radius: 6px;
}

/* ==============================
   PIED DE PAGE
   ============================== */

footer {
  background-color: #264653;
  color: #fff;
  text-align: center;
  padding: 20px 0;
  margin-top: 40px;
  font-size: 0.9rem;
}

footer strong {
  color: #ffd166;
}

/* ==============================
   RESPONSIVE DESIGN
   ============================== */

@media (max-width: 768px) {
  header h1 {
    font-size: 1.6rem;
  }

  .hero {
    height: 220px;
  }

  .overlay {
    padding: 20px;
  }

  section.intro {
    margin: 30px auto;
  }
}

/* ==============================
   BANNIÈRES SPÉCIFIQUES
   ============================== */

.hero-accueil {
  background-image: url('images/hero-accueil.jpg');
}

.hero-region {
  background-image: url('images/hero-region.jpg');
}

.hero-fun {
  background-image: url('images/hero-fun.jpg');
}

.hero-sport {
  background-image: url('images/hero-sport.jpg');
}

.hero-histoire {
  background-image: url('images/hero-histoire.jpg');
}

.hero-traditions {
  background-image: url('images/hero-traditions.jpg');
}

.hero-carte {
  background-image: url('images/hero-carte.jpg');
}
