:root {
  --beige: #f5f1e8;
  --beige-fonce: #e8dcc7;
  --blanc: #ffffff;

  --vert: #6f8a6d;
  --vert-fonce: #4e6b4c;

  --brun: #5b4636;
  --brun-doux: #6b5847;

  --accent: #c2a878;

  --rayon: 14px;
}


.sur-titre {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--vert);
  margin-bottom: 8px;
}

.btn {
  display: inline-block;
  padding: 12px 20px;
  border-radius: var(--rayon);
  text-decoration: none;
  font-weight: 500;
  transition: 0.25s ease;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn-primary {
  background: var(--vert);
  color: white;
}

.btn-secondary {
  background: var(--beige);
  color: var(--brun);
  border: 1px solid var(--accent);
}

.btn-gold {
  background: var(--accent);
  color: #3f3126;
}