:root {
  --bg: #fffaf0;
  --card: #fff1c9;
  --primary: #8b1e3f;
  --text: #2a2a2a;
  --muted: #6f6f6f;
  --radius: 14px;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* ===== MAIN ===== */
.main {
  flex: 1;
  display: flex;
  justify-content: center;
  padding: 2rem 1rem;
}

/* Colonne centrale */
.cards {
  width: 100%;
  max-width: 420px; /* largeur maquette mobile */
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* ===== HERO CARD ===== */
.card {
  width: 100%;
  background-color: var(--card);
  border-radius: var(--radius);
  padding: 1.6rem 1.4rem;
  margin-bottom: 1.8rem;
  box-shadow: 0 6px 14px rgba(0,0,0,0.1);
  text-align: left;
}

.card h1 {
  font-family: "Libre Baskerville", serif;
  font-size: 24px;
  line-height: 1.4;
  color: var(--text);
  margin-bottom: 0.6rem;
}

.subtitle {
  font-family: "Karla", sans-serif;
  font-size: 16px;
  color: var(--text);
}

/* ===== DESCRIPTION ===== */
.description {
  width: 100%;
  font-family: "Karla", sans-serif;
  font-size: 14px;
  line-height: 1.6;
  color: var(--text);
  margin-bottom: 2.2rem;
}

.description p {
  margin-bottom: 0.9rem;
  color: var(--text);
}

/* ===== CTA ===== */
.cta {
  width: 100%;
  text-align: center;
  
}

.cta-text {
  font-family: "Libre Baskerville", serif;
  font-size: 16px;
  line-height: 1.4;
  color: var(--text);
  margin-bottom: 1.2rem;
  
}

/* Bouton */
.btn-primary {
  background-color: var(--card);
  border: none;
  border-radius: 999px;
  padding: 0.7rem 1.6rem;
  font-size: 14px;
  font-family: "Karla", sans-serif;
  cursor: pointer;
  box-shadow: 0 4px 8px rgba(0,0,0,0.12);
  transition: transform 0.15s ease, box-shadow 0.15s ease;

  text-decoration: none;
  color: var(--text);
 
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 12px rgba(0,0,0,0.15);
}
