
/* === Styles pour la page d'accueil === */

.hero {
  text-align: center;
  padding: 3rem 1rem 1rem;
}

.hero h1 {
  font-size: 2.5rem;
  font-family: 'Rubik Glitch', cursive;
  margin-bottom: 0.5rem;
}

.slogan {
  font-size: 1.3rem;
  color: #ccc;
  font-style: italic;
}

.intro, .projets, .appel {
  max-width: 800px;
  margin: 2rem auto;
  text-align: center;
  font-size: 1.1rem;
  line-height: 1.6;
}

.univers {
  margin: 3rem auto;
  text-align: center;
}

.univers-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
  padding: 1rem;
}

.carte {
  background: #1e1e1e;
  border-radius: 12px;
  overflow: hidden;
  text-align: center;
  width: 200px;
  text-decoration: none;
  color: white;
  transition: transform 0.3s ease;
  box-shadow: 0 0 10px rgba(0,0,0,0.4);
}

.carte:hover {
  transform: scale(1.05);
}

.carte img {
  width: 100%;
  height: auto;
  display: block;
}

.carte h3 {
  padding: 0.5rem;
  font-size: 1rem;
}

.nouveautes {
  text-align: center;
  padding: 2rem 1rem;
}
