/* home.css : spécifique à la page d'accueil (public/index.php). */

.hero {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2.5rem;
  text-align: center;
  padding: 2rem 1.5rem;
}

.hero-logo img {
  width: min(90vw, 560px);
  height: auto;
}

.btn-play {
  border: 2px solid var(--red);
  border-radius: 6px;
  padding: 1rem 2.5rem;
  font-size: 0.85rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  transition: background 0.2s ease;
}

.btn-play:hover {
  background: rgba(227, 36, 43, 0.1);
}

.scroll-hint {
  display: flex;
  justify-content: center;
  padding-bottom: 2rem;
  color: var(--muted);
  animation: bounce 2s infinite;
}

@keyframes bounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(6px); }
}

/* --- Sections d'information (sous le hero) --- */

.about-main {
  position: relative;
  z-index: 1;
  padding-bottom: 4rem;
}

.about-section,
.objectives-section,
.lore-section {
  padding: 3.5rem 2rem;
}

.about-section h1 {
  margin: 0 0 1.25rem;
  font-size: 1.9rem;
}

.section-lead {
  max-width: 760px;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.7;
}

.objectives-section h2,
.lore-section h2 {
  margin: 0 0 1.5rem;
  font-size: 1.4rem;
}

.objectives-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.25rem;
}

.objective-card {
  padding: 1.5rem;
}

.objective-card h3 {
  margin: 0 0 0.6rem;
  font-size: 1.05rem;
  color: var(--red);
}

.objective-card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.6;
}

.lore-section {
  border-top: 1px solid var(--border);
}

.lore-section p {
  max-width: 760px;
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.7;
}
