/**
 * Page Réservations – Cartes Square et parrainage
 */

.reservations-grid { margin-top: 40px; }

.booking-card {
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
  background: #f8f9fa;
  padding: 60px 40px;
  border-radius: 12px;
  border: 2px dashed #dee2e6;
  text-align: center;
  transition: all 0.3s ease;
  cursor: pointer;
  position: relative;
}
.booking-card:hover {
  border-color: var(--orange) !important;
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}
.booking-card:hover .btn { transform: scale(1.05); transition: transform 0.2s ease; }

.booking-card--square { background: #f8f9fa; }
.booking-card--parrainage { background: #fff; }

.booking-card__badge {
  position: absolute;
  top: 15px;
  right: 15px;
  background: var(--orange);
  color: white;
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
}

.booking-card h3 { margin-top: 0; color: #495057; }
.booking-card h2.section-title { font-size: 1.4rem; margin-top: 0; }
.booking-card .muted { margin-bottom: 30px; }
.booking-card .btn.primary { font-size: 1.1rem; padding: 15px 30px; display: inline-block; }
.booking-card__features {
  font-size: 0.9rem;
  color: #6c757d;
  margin-top: 20px;
  text-align: center;
}

.parrainage-text { text-align: left; max-width: 420px; margin: 10px auto 0 auto; }
.parrainage-list {
  margin: 10px auto 0 auto;
  padding: 0;
  list-style: none;
  text-align: left;
  max-width: 420px;
}
.parrainage-conditions {
  font-size: 0.9rem;
  color: #6c757d;
  margin-top: 10px;
  text-align: left;
  max-width: 420px;
  margin-left: auto;
  margin-right: auto;
}
.parrainage-cta { margin-top: 20px; display: inline-block; }

.reservations-help {
  background: #f8f9fa;
  padding: 30px;
  border-radius: 12px;
  margin-top: 40px;
  text-align: center;
}
.reservations-help h3 { margin-top: 0; }
.reservations-help .btn { margin-top: 20px; }
.reservations-help-actions {
  display: flex;
  gap: 15px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 20px;
}
