/* ====== Hero Section ====== */
.hero {
  position: relative;
  background: url('/public/assets/images/hero-bg.jpg') no-repeat center center/cover;
  height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
}

/* Overlay sombre pour lisibilité */
.hero-overlay {
  position: absolute;
  inset: 0; /* équivalent top:0; left:0; width:100%; height:100% */
  background: rgba(0,0,0,0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 2rem;
}

.hero-content h1 {
  font-size: 3rem;
  margin-bottom: 1rem;
  font-weight: bold;
}

.hero-content h1 span {
  color: #ff6600;
  background: #fff;
  padding: 0.2rem 0.6rem;
  border-radius: 6px;
}

.hero-content p {
  font-size: 1.2rem;
  margin-bottom: 2rem;
  max-width: 600px;
  margin-inline: auto; /* simplifie margin-left/right:auto */
}

/* Bouton Hero */
.btn-hero {
  display: inline-block;
  padding: 1rem 2rem;
  border-radius: 6px;
  background: #ff6600;
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
}
.btn-hero:hover {
  background: #fff;
  color: #111;
  transform: translateY(-3px);
  box-shadow: 0 4px 8px rgba(0,0,0,0.25);
}

/* ====== Features Section ====== */
.features {
  display: flex;
  justify-content: space-around;
  gap: 2rem;
  padding: 4rem 2rem;
  background: #f9f9f9;
  text-align: center;
}

.feature {
  flex: 1;
  background: #fff;
  padding: 2rem;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  transition: transform 0.3s ease;
}
.feature:hover { transform: translateY(-5px); }

.feature h3 {
  margin-bottom: 1rem;
  color: #ff6600;
  font-size: 1.4rem;
}
.feature p {
  color: #555;
  font-size: 1rem;
}

/* ====== Responsive ====== */
@media (max-width: 768px) {
  .hero-content h1 { font-size: 2rem; }
  .features { flex-direction: column; }
}
