@import url('https://fonts.googleapis.com/css2?family=Krub:ital,wght@0,200;0,300;0,400;0,500;0,600;0,700;1,200;1,300;1,400;1,500;1,600;1,700&display=swap');
/* BASE */
* {
  font-family: 'Krub';
}
body {
  margin: 0;
  font-family: "Krub", sans-serif;
  color: #222;
  background: #fafafa;
}

.container {
  max-width: 1100px;
  margin: auto;
  padding: 40px 20px;
}

/* HERO */
.hero {
  height: 70vh;
  background: url("hero-velo.jpg") center/cover no-repeat;
  position: relative;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: #5e8c8c;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  color: white;
  text-align: center;
}

.hero h1 {
  font-size: 3rem;
}

.hero p {
  font-size: 1.3rem;
}

/* INTRO */
.intro {
  font-size: 1.2rem;
  line-height: 1.8;
}

/* STORY */
.story {
  background: white;
  padding: 30px;
  border-radius: 10px;
  margin: 40px 0;
}

/* DATES */
.dates {
  display: flex;
  gap: 20px;
  justify-content: center;
  margin: 40px 0;
}

.date-card {
  background: #fff;
  padding: 20px 30px;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

/* IMAGE */
.itineraire img {
  width: 100%;
  border-radius: 12px;
  margin: 30px 0;
}

/* PARCOURS */
.parcours ul {
  line-height: 2;
}

/* VILLES */
.ville-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.ville-grid span {
  background: #eaeaea;
  padding: 10px 15px;
  border-radius: 20px;
}

/* OBJECTIFS */
.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 15px;
}

.card {
  background: white;
  padding: 20px;
  border-radius: 10px;
  text-align: center;
  font-weight: bold;
  box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

/* CTA */
.cta {
  background: linear-gradient(120deg, #6c63ff, #3f3dff);
  color: white;
  padding: 50px;
  border-radius: 12px;
  text-align: center;
  margin-top: 40px;
}

.btn {
  display: inline-block;
  margin-top: 15px;
  padding: 12px 25px;
  background: white;
  color: #3f3dff;
  border-radius: 30px;
  text-decoration: none;
  font-weight: bold;
}