/* ========================================
   PAGE ACCUEIL
======================================== */

/* === HERO SECTION === */
#heroSection {
  text-align: center;
  background: #1c1c1c;
  color: #eeeeee;
  border-radius: 0 0 40px 40px;
  padding: 4rem 2rem;
  position: relative;
  min-height: 400px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

#heroSection::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.65);
  border-radius: 0 0 40px 40px;
  z-index: 1;
}

#heroSection > * {
  position: relative;
  z-index: 2;
}

#heroTitle {
  font-size: 3rem;
  color: #dbcc46;
  margin-bottom: 1rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  text-shadow: 0 4px 15px rgba(219, 204, 70, 0.5);
}

#heroSubtitle {
  max-width: 800px;
  margin: 1rem auto;
  font-size: 1.3rem;
  line-height: 1.8;
  color: #f0f0f0;
}

/* === SECTION INFOS PRATIQUES === */
#infosSection {
  padding: 4rem 2rem;
  text-align: center;
  background: #1c1c1c;
}

#infosTitle {
  margin-bottom: 3rem;
  font-size: 2.5rem;
  color: #f5a623;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
}

#infosGrid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  max-width: 1400px;
  margin: 0 auto;
}

.infoCard {
  background: linear-gradient(135deg, #242424 0%, #2a2a2a 100%);
  border-radius: 16px;
  padding: 2rem;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
  transition: all 0.3s ease;
  border: 2px solid transparent;
  position: relative;
  overflow: hidden;
}

.infoCard::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #f5a623 0%, #dbcc46 100%);
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.infoCard:hover::before {
  transform: scaleX(1);
}

.infoCard:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 30px rgba(245, 166, 35, 0.4);
  border-color: #f5a623;
}

[id^="info-title"] {
  font-size: 1.8rem;
  margin-bottom: 1rem;
  font-weight: 700;
  color: #dbcc46;
  min-height: auto;
  text-transform: uppercase;
  letter-spacing: 1px;
}

[id^="infoText"] {
  font-size: 1.1rem;
  line-height: 1.6;
  color: #e0e0e0;
}

/* === RESPONSIVE === */
@media (max-width: 768px) {
  #heroTitle {
    font-size: 2rem;
  }

  #heroSubtitle {
    font-size: 1.1rem;
  }

  #infosTitle {
    font-size: 2rem;
  }

  #infosGrid {
    grid-template-columns: 1fr;
  }
}