/* HERO */
.hero {
  position: relative;
  min-height: 100vh;
  background: url("https://eba-eurobus.com/storage/uploads/2020/09/dC3d6L22Hy9z4Rstl3vcQmLtxvPpgl4DQBKmBCGp.jpeg") center/cover no-repeat;
  display: flex;
  flex-direction: column;
}

/* Calque sombre */
.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
  z-index: 1;
}

/* NAVBAR */
.navbar {
  z-index: 3;
  background: transparent;
}

/* CONTENU */
.hero-content {
  position: relative;
  z-index: 2;
  margin-top: auto;
  margin-bottom: auto;
  max-width: 900px;
}

/* Boutons stores */
.store-btn {
  border: 1px solid rgba(255,255,255,0.5);
  color: #fff;
  padding: 14px 22px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s ease;
}

.store-btn i {
  margin-right: 8px;
}

.store-btn:hover {
  background: #fff;
  color: #000;
}

/* Responsive */
@media (max-width: 768px) {
  .hero-content h1 {
    font-size: 2.2rem;
  }
}

