@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;600;700&display=swap');


body {
  font-family: 'Inter', sans-serif;
  color: #333;
}

body {
  font-family: Arial, sans-serif;
  margin: 0;
  padding: 0;
  background: #f9f9f9;
  color: #2F3337;
}

header {
  background: #5D91AE;
  color: white;
  padding: 10px;
  text-align: center;
}

header {
  display: flex;
  flex-direction: column;
  align-items: center;
}

nav {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 10px;
  flex-wrap: wrap;
}

nav a {
  padding: 6px 14px;
  border-radius: 6px;
  text-decoration: none;
  color: #4A323E;
  font-weight: bold;
  transition: all 0.3s ease;
}

nav a:hover {
  background-color: #4A323E;
  color: white;
}

nav a {
  margin: 0 10px;
  text-decoration: none;
  font-weight: bold;
}

.slider {
  position: relative;
  width: 100%;
  height: 320px;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
  background: #4A323E;
  /* fond bordeaux uniforme */
}

.slide {
  position: absolute;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 1s ease-in-out;
  display: none;
}

.slide.active {
  opacity: 1;
  display: block;
}

.caption {
  position: absolute;
  z-index: 10;
  font-size: 2rem;
  width: 80%;
  padding: 20px;
  background: #4A323E;
  /* fond bordeaux uniforme */
  color: white;
  border-radius: 8px;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
  height: auto;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  line-height: 1.4;
  box-sizing: border-box;
}

main {
  padding: 40px 20px;
  max-width: 1000px;
  margin: auto;
}

.home-section {
  margin-bottom: 40px;
}

footer {
  text-align: center;
  padding: 10px;
  background: #4A323E;
  color: white;
}

.accroche {
  text-align: center;
  font-size: 1.6rem;
  font-family: 'Arial Rounded MT Bold', Arial, sans-serif;
  font-weight: bold;
  margin-top: 40px;
  margin-bottom: 20px;
  color: #4A323E;
}

.highlight-bleu {
  color: #5D91AE;
}