/* Style global */
body {
  font-family: 'Roboto', sans-serif;
  margin: 0;
  padding: 0;
  line-height: 1.6;
  color: #333;
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}

/* En-tête */
header {
  background: #000;
  color: #fff;
  padding: 10px 0;
}

header .logo {
  font-size: 1.5rem;
  font-weight: bold;
}

header nav ul {
  list-style: none;
  display: flex;
  justify-content: flex-end;
  padding: 0;
  margin: 0;
}

header nav ul li {
  margin-left: 20px;
}

header nav ul li a {
  text-decoration: none;
  color: #fff;
  padding: 5px 10px;
  transition: background 0.3s;
}

header nav ul li a:hover {
  background: #f90;
}

header nav ul li a.btn {
  background: #f90;
  border-radius: 5px;
}

/* Section Hero */
.hero {
  background: url(./pictures/person-taking-ride-countryside.jpg) no-repeat center center/cover;
  color: #fff;
  text-align: center;
  padding: 100px 20px;
}

.hero h1 {
  font-size: 2.5rem;
  margin-bottom: 20px;
}

.hero p {
  font-size: 1.2rem;
  margin-bottom: 30px;
}

.hero-buttons .btn,
.hero-buttons .btn-secondary {
  display: inline-block;
  text-decoration: none;
  padding: 10px 20px;
  margin: 0 10px;
  border-radius: 5px;
  transition: background 0.3s;
}

.hero-buttons .btn {
  background: #f90;
  color: #fff;
}

.hero-buttons .btn-secondary {
  background: #fff;
  color: #f90;
}

.hero-buttons .btn:hover,
.hero-buttons .btn-secondary:hover {
  opacity: 0.8;
}

/* Section Top Balades */
.top-balades {
  padding: 50px 20px;
  background: #f4f4f4;
  text-align: center;
}

.top-balades h2 {
  font-size: 2rem;
  margin-bottom: 20px;
}

.balades-list {
  display: flex;
  gap: 20px;
  justify-content: center;
}

.balade-card {
  background: #fff;
  border-radius: 5px;
  overflow: hidden;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  width: 30%;
}

.balade-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.balade-card h3 {
  font-size: 1.2rem;
  margin: 10px 0;
}

.balade-card p {
  font-size: 0.9rem;
  color: #666;
  margin: 0 0 10px;
}

/* Pied de page */
footer {
  background: #000;
  color: #fff;
  text-align: center;
  padding: 20px 0;
}

footer .socials a {
  text-decoration: none;
  color: #f90;
  margin: 0 10px;
}
