/* -------------------------
   Base
------------------------- */

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  background-color: #0b0b0b;
  color: #e6e6e6;
  font-family: "Georgia", "Times New Roman", serif;
  line-height: 1.6;
}

/* -------------------------
   Liens
------------------------- */

a {
  color: #e6e6e6;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

/* -------------------------
   Navigation
------------------------- */

nav {
  max-width: 1100px;
  margin: 0 auto;
  padding: 2rem 2rem 1rem;
  display: flex;
  gap: 2rem;
  font-size: 0.95rem;
}

/* -------------------------
   Hero
------------------------- */

.hero {
  max-width: 900px;
  margin: 0 auto;
  padding: 10rem 2rem 8rem;
  text-align: center;
}

.hero h1 {
  font-size: 4.5rem;
  font-weight: normal;
  margin: 0 0 1.5rem;
  letter-spacing: -0.02em;
}

.hero p {
  font-size: 1.4rem;
  font-style: italic;
  color: #bdbdbd;
  max-width: 700px;
  margin: 0 auto 3rem;
}

/* -------------------------
   Boutons / actions
------------------------- */

.actions {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.actions a {
  padding: 0.9rem 1.8rem;
  border-radius: 1.5rem;
  border: 1px solid #e6e6e6;
  font-size: 1rem;
}

.actions a.primary {
  background-color: #e6e6e6;
  color: #0b0b0b;
}

.actions a.secondary {
  background-color: transparent;
}

/* -------------------------
   Sections
------------------------- */

section {
  max-width: 1000px;
  margin: 0 auto;
  padding: 6rem 2rem;
}

section h2 {
  font-size: 2.2rem;
  font-weight: normal;
  margin-bottom: 2rem;
}

/* -------------------------
   Cartes (inspirées de la maquette)
------------------------- */

.card {
  background-color: #151515;
  border: 1px solid #222;
  border-radius: 1.5rem;
  padding: 3rem;
}

/* -------------------------
   Texte
------------------------- */

.card p {
  font-size: 1.05rem;
  color: #cfcfcf;
}

/* -------------------------
   Liste / thématiques
------------------------- */

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

.theme h3 {
  font-weight: normal;
  margin-bottom: 0.5rem;
}

.theme p {
  font-size: 0.95rem;
  color: #a6a6a6;
}

/* -------------------------
   Footer
------------------------- */

footer {
  border-top: 1px solid #222;
  margin-top: 6rem;
  padding: 3rem 2rem;
  text-align: center;
  font-size: 0.85rem;
  color: #888;
}

footer .subtle {
  margin-top: 0.5rem;
  font-size: 0.8rem;
  opacity: 0.6;
}
``