/* =====================================================
   buttons.css — Boutons
   ===================================================== */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.85rem 2rem;
  border-radius: 50px;
  font-family: 'Nunito', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  border: none;
  cursor: pointer;
  transition: all 0.2s;
  text-decoration: none;
  width: 100%;
}

.btn-primary {
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
  color: var(--green-night);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(212,160,23,0.4);
  text-decoration: none;
}

.btn-green  { background: var(--green-med); color: #fff; }
.btn-green:hover { background: var(--green-dark); transform: translateY(-2px); text-decoration: none; }

.btn-wave   { background: var(--wave-blue); color: #fff; }
.btn-om     { background: var(--om-orange); color: #fff; }

.btn-disabled { background: #ccc; color: #888; cursor: not-allowed; }

.btn-sm {
  padding: 0.4rem 1rem;
  font-size: 0.85rem;
  width: auto;
  border-radius: 6px;
}

.btn-outline {
  background: transparent;
  border: 2px solid var(--gold);
  color: var(--gold);
}
.btn-outline:hover { background: var(--gold); color: var(--green-night); text-decoration: none; }
