/* === Section Héro cohérente === */
/* .hero-section {
  background-color: var(--background-light);
  background-image: linear-gradient(var(--hero-overlay-color), var(--hero-overlay-color)), url('../images/top.webp');
  background-size: cover;
  background-position: center;
  color: var(--primary-color);
  padding: 100px 20px;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
} */

/* .hero-section h1 {
  font-size: 48px;
  font-weight: 700;
  margin-bottom: 20px;
  text-shadow: 2px 2px 12px var(--secondary-color);
}

.hero-section p {
  font-size: 22px;
  max-width: 800px;
  color: var(--primary-color);
  margin-bottom: 40px;
} */

/* === Cartes Top Pronos === */
.top-cards-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  padding: 20px;
  max-width: 960px;
  margin: 0 auto;
}

.top-card {
  background-color: var(--background-dark);
  border-radius: 12px;
  padding: 30px 20px;
  box-shadow: 0 6px 15px rgba(0,0,0,0.2);
  text-align: center;
  transition: transform 0.3s ease;
}

.top-card:hover {
  transform: translateY(-5px);
}

.top-card .emoji {
  font-size: 40px;
  margin-bottom: 15px;
}

.top-card h3 {
  font-size: 22px;
  margin-bottom: 12px;
}

.top-card p {
  font-size: 16px;
  color: var(--text-color-dark);
  margin-bottom: 20px;
}

.top-card .btn-primary {
  background-color: var(--btn-bg-color);
  color: var(--text-color-light);
  padding: 12px 30px;
  border-radius: 30px;
  font-weight: 600;
  text-decoration: none;
  display: inline-block;
  transition: background-color 0.3s ease;
}

.top-card .btn-primary:hover {
  background-color: var(--btn-hover-color);
}

/* Responsive */
@media (max-width: 768px) {
  .hero-section h1 {
    font-size: 36px;
  }

  .hero-section p {
    font-size: 16px;
  }

  .top-card {
    padding: 20px;
  }
}
