/* Bouton réservation agrandi */
.reservation-btn {
  display: inline-block;
  padding: 1.2rem 2.5rem;
  font-size: 1.2rem;
  font-weight: 700;
  margin-top: 1.5rem;
  text-decoration: none;
  border-radius: 8px;
  transition: all 0.3s ease;
}

/* Page de réservation */
.reservation-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 2rem;
}

.reservation-header {
  text-align: center;
  margin-bottom: 3rem;
  position: relative;
  padding: 4rem 2rem;
  background-image: url('https://www.les3vallees.com/media/cache/hero_default/2023-ski-piste-duo-couple-hiver-timy-theaux-meribel-cc-1920x1080-arthur-bertrand-exp20280501-053.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  border-radius: 12px;
  overflow: hidden;
}

.reservation-header::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(255, 255, 255, 0.1);
  z-index: 1;
}

.reservation-header > * {
  position: relative;
  z-index: 2;
}

.reservation-title {
  font-family: 'Kaushan Script', cursive;
  font-size: 2.5rem;
  color: var(--primary-blue);
  margin-bottom: 1rem;
}

.steps-progress {
  display: flex;
  justify-content: center;
  margin-bottom: 2rem;
  background: #f8f9fa;
  padding: 1rem;
  border-radius: 10px;
}

.step {
  display: flex;
  align-items: center;
  padding: 0.8rem 1.5rem;
  margin: 0 0.5rem;
  border-radius: 8px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.step.active {
  background: var(--primary-orange);
  color: #333;
  box-shadow: 0 2px 8px rgba(255, 140, 0, 0.3);
  transform: scale(1.02);
}

.step.active .step-number {
  background: rgba(51, 51, 51, 0.1);
  color: #333;
  font-weight: bold;
}

.step.completed {
  background: #28a745;
  color: white;
}

.step.pending {
  background: #e9ecef;
  color: #6c757d;
}

.step-number {
  background: rgba(255,255,255,0.3);
  border-radius: 50%;
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 0.5rem;
  font-weight: bold;
}

.reservation-content {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 3rem;
  margin-top: 2rem;
}

.reservation-form {
  background: white;
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

.step-title {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--primary-blue);
  margin-bottom: 0.5rem;
}

.step-subtitle {
  font-size: 1.1rem;
  color: #666;
  margin-bottom: 2rem;
}

.warning-box {
  background: #e3f2fd;
  border: 2px solid #2196f3;
  border-radius: 8px;
  padding: 1rem;
  margin-bottom: 2rem;
  display: flex;
  align-items: center;
}

.warning-icon {
  color: #2196f3;
  font-size: 1.5rem;
  margin-right: 1rem;
}

.warning-text {
  color: #1976d2;
  font-weight: 600;
}

.participants-selector {
  margin-bottom: 2rem;
}

.participants-label {
  display: block;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: var(--primary-blue);
}

.participants-dropdown {
  position: relative;
  display: inline-block;
}

.participants-input {
  padding: 0.8rem 1rem;
  border: 2px solid #e0e0e0;
  border-radius: 8px;
  background: white;
  font-size: 1rem;
  min-width: 80px;
  cursor: pointer;
}

.participants-dropdown-content {
  position: absolute;
  top: 100%;
  left: 0;
  background: white;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
  z-index: 1000;
  min-width: 100px;
  max-height: 200px;
  overflow-y: auto;
}

.participants-option {
  padding: 0.8rem 1rem;
  cursor: pointer;
  transition: background 0.2s ease;
}

.participants-option:hover {
  background: #f8f9fa;
}

.participants-slots {
  margin-top: 2rem;
}

.participant-slot {
  background: white;
  border: 2px solid #e0e0e0;
  border-radius: 12px;
  margin-bottom: 1rem;
  overflow: hidden;
  transition: all 0.3s ease;
}

.participant-slot.expanded {
  border-color: var(--primary-orange);
  box-shadow: 0 4px 12px rgba(255, 140, 0, 0.2);
}

.participant-header {
  padding: 1rem 1.5rem;
  background: #f8f9fa;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.participant-title {
  font-weight: 600;
  color: var(--primary-blue);
}

.participant-toggle {
  color: #666;
  font-size: 1.2rem;
  transition: transform 0.3s ease;
}

.participant-slot.expanded .participant-toggle {
  transform: rotate(180deg);
}

.participant-form {
  padding: 1.5rem;
  display: none;
}

.participant-slot.expanded .participant-form {
  display: block;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-bottom: 1rem;
}

.form-group {
  margin-bottom: 1rem;
}

.form-label {
  display: block;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: var(--primary-blue);
}

.form-input {
  width: 100%;
  padding: 0.8rem;
  border: 2px solid #e0e0e0;
  border-radius: 8px;
  font-size: 1rem;
  font-family: 'Lato', Arial, sans-serif;
  transition: border-color 0.3s ease;
}

.form-input:focus {
  outline: none;
  border-color: var(--primary-orange);
}

.radio-group {
  display: flex;
  gap: 1rem;
}

.radio-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.date-group {
  display: grid;
  grid-template-columns: 1fr 1fr 2fr;
  gap: 0.5rem;
}

.save-btn {
  background: var(--primary-orange);
  color: white;
  border: none;
  padding: 0.8rem 1.5rem;
  border-radius: 8px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.3s ease;
  float: right;
}

.save-btn:hover {
  background: #e67e00;
}

.reservation-summary {
  background: white;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.1);
  overflow: hidden;
}

.summary-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.summary-content {
  padding: 1.5rem;
}

.summary-title {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--primary-blue);
  margin-bottom: 0.5rem;
}

.summary-link {
  color: var(--primary-orange);
  text-decoration: none;
  font-size: 0.9rem;
}
.summary-link[aria-disabled="true"] { cursor: default; pointer-events: none; text-decoration: none; }

.summary-details {
  margin: 1rem 0;
}

.summary-detail {
  display: flex;
  align-items: center;
  margin-bottom: 0.5rem;
  color: #666;
}

.summary-icon {
  margin-right: 0.5rem;
  color: var(--primary-orange);
}

.summary-price {
  background: #f8f9fa;
  padding: 1rem;
  border-radius: 8px;
  margin-top: 1rem;
}

.price-label {
  font-weight: 600;
  color: var(--primary-blue);
}

.price-amount {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary-orange);
  text-align: right;
}

.summary-items {
  margin-top: 1rem;
}

.summary-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.5rem 0;
  border-bottom: 1px solid #e0e0e0;
  font-size: 0.95rem;
  gap: 1rem;
}

.summary-item:last-child {
  border-bottom: none;
}

.item-name { font-weight: 400; color: var(--primary-blue); }
.summary-section .item-name { font-weight: 700; }

.item-included { color: #28a745; font-weight: 400; margin-left: 1rem; text-align: right; }

/* Boutons de navigation */
.navigation-buttons {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid #e0e0e0;
}

/* (retiré) styles bannière validation */

.btn-secondary {
  background: #6c757d;
  color: white;
  border: none;
  padding: 0.8rem 1.5rem;
  border-radius: 8px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.3s ease;
}

.btn-secondary:hover {
  background: #5a6268;
}

.btn-secondary:disabled {
  background: #e9ecef;
  color: #6c757d;
  cursor: not-allowed;
}

/* Section Personnalisez votre séjour */
.customize-section {
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid #e0e0e0;
}

.customize-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary-blue);
  margin-bottom: 1.5rem;
}

.customize-card {
  background: white;
  border: 2px solid #e0e0e0;
  border-radius: 12px;
  padding: 1.5rem;
  margin-bottom: 1rem;
  transition: all 0.3s ease;
}

.customize-card:hover {
  border-color: var(--primary-orange);
  box-shadow: 0 4px 12px rgba(255, 140, 0, 0.1);
}

.card-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0.5rem;
}

.card-title {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 600;
  color: var(--primary-blue);
}

.check-icon {
  background: #28a745;
  color: white;
  border-radius: 50%;
  width: 20px;
  height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  font-weight: bold;
}

.customize-link {
  color: var(--primary-orange);
  text-decoration: none;
  font-weight: 600;
  transition: color 0.3s ease;
}

.customize-link:hover {
  color: #e67e00;
}

.card-description {
  color: #666;
  margin: 0.5rem 0;
}

.card-duration {
  color: #666;
  font-size: 0.9rem;
  margin: 0.5rem 0;
}

.card-location {
  color: #666;
  font-size: 0.9rem;
  margin: 0.5rem 0;
}

.add-btn {
  background: #333;
  color: white;
  border: none;
  padding: 0.5rem 1rem;
  border-radius: 6px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.3s ease;
}

.add-btn:hover {
  background: #555;
}

/* Modal Skipass */
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 10000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 2rem;
}

.modal-overlay.active {
  display: flex;
}

.modal-content {
  background: white;
  border-radius: 12px;
  width: 100%;
  max-width: 600px;
  max-height: 80vh;
  overflow-y: auto;
  animation: slideInRight 0.3s ease-out;
}

@keyframes slideInRight {
  from {
    transform: translateX(100%);
    opacity: 0;
  }
  to {
    transform: translateX(0);
    opacity: 1;
  }
}

.modal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem;
  border-bottom: 1px solid #e0e0e0;
}

.modal-title {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--primary-blue);
  margin: 0;
}

.modal-close {
  background: none;
  border: none;
  font-size: 1.5rem;
  color: #666;
  cursor: pointer;
  padding: 0.5rem;
  border-radius: 50%;
  transition: background 0.3s ease;
}

.modal-close:hover {
  background: #f8f9fa;
}

.modal-body {
  padding: 1.5rem;
}

.skipass-participants {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.skipass-participant {
  background: #f8f9fa;
  border-radius: 8px;
  padding: 1rem;
}

.participant-name {
  font-weight: 600;
  color: var(--primary-blue);
  margin-bottom: 0.5rem;
}

.skipass-options {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.skipass-option {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.skipass-option input[type="radio"] {
  margin: 0;
}

.skipass-option label {
  color: #666;
  cursor: pointer;
}

.skipass-option input[type="radio"]:checked + label {
  color: var(--primary-blue);
  font-weight: 600;
}

.modal-footer {
  padding: 1.5rem;
  border-top: 1px solid #e0e0e0;
  text-align: center;
}

.modal-validate {
  width: 100%;
  padding: 1rem;
  font-size: 1.1rem;
}

@media (max-width: 768px) {
  .reservation-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .steps-progress {
    flex-direction: column;
    gap: 0.5rem;
  }
  
  .step {
    margin: 0;
  }
  
  .form-row {
    grid-template-columns: 1fr;
  }
}

/* === Styles principaux pour Ski DEKAEL === */
:root {
  --main-color: #2d3e50;
  --accent-color: #00bcd4;
  --background: #f8f9fa;
  --text-color: #222;
  --header-bg: #fff;
}

/* Polices principales */
body {
  font-family: 'Lato', Arial, sans-serif;
  background: #fff;
  color: #222;
}
.site-title, .banner-title, .section-title, .concept-title, .proposition-title, h1, h2, h3 {
  font-family: 'Kaushan Script', cursive;
  color: #3a4664;
  letter-spacing: 1px;
}
.header-main {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: transparent; /* transparent en haut de page */
  border-bottom: none;
  padding: 0.5rem 0;
  transition: box-shadow 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}
.header-main.is-scrolled {
  background: rgba(255,255,255,0.96); /* fond visible après scroll */
  border-bottom: 1px solid #e0e0e0;
  box-shadow: 0 6px 18px rgba(0,0,0,0.06);
}
.header-content {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 2rem;
}
.site-title {
  font-size: 2.2rem;
  margin: 0;
}
#nav-menu ul { list-style: none; display: flex; gap: 2rem; margin: 0; padding: 0; }
#nav-menu a {
  font-family: 'Lato', Arial, sans-serif;
  color: #3a4664;
  font-size: 1.2rem;
  text-decoration: none;
  font-weight: 700;
  padding: 0.4em 1em;
  border: 2px solid transparent;
  border-radius: 8px;
  transition: color 0.2s, border 0.2s, background 0.2s;
}
#nav-menu a:hover, #nav-menu a:focus { color: #c76d2c; border: 2px solid #c76d2c; background: #fff7f0; }

/* Bannière principale */
.banner-section { position: relative; min-height: 55vh; display: flex; align-items: center; justify-content: center; background: #222; }
.banner-bg { width: 100vw; min-height: 55vh; background-size: cover; background-position: center; position: relative; display: flex; align-items: center; justify-content: center; }
/* Overlay corrigé: couvre 100% sans bandes */
.banner-overlay {
  position: absolute;
  inset: 0; /* top:0; right:0; bottom:0; left:0 */
  background: rgba(34, 34, 34, 0.25); /* plus léger qu'avant */
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 3rem 1rem; /* spacing interne sans créer de bandes */
}
.banner-title { font-size: 4rem; color: #fff; margin-bottom: 0.5rem; text-shadow: 2px 2px 8px #222; }
.banner-subtitle { font-size: 2.2rem; color: #fff; font-family: 'Kaushan Script', cursive; text-shadow: 1px 1px 6px #222; }

/* Section concept */
.concept-section { position: relative; min-height: 350px; background: #fff; margin-bottom: 0; }
.concept-bg { position: absolute; top: 0; left: 0; right: 0; bottom: 0; background-size: cover; background-position: center; opacity: 0.45; z-index: 1; }
.concept-content { position: relative; z-index: 2; max-width: 900px; margin: 0 auto; padding: 3rem 1rem 2rem 1rem; text-align: center; }
.concept-title { font-size: 2.5rem; margin-bottom: 1.2rem; }
.concept-desc { font-size: 1.3rem; color: #3a4664; margin-bottom: 2rem; }

/* Boutons principaux */
.btn-orange { background: #c76d2c; color: #fff; border: none; border-radius: 8px; padding: 0.9em 2.2em; font-size: 1.2rem; font-family: 'Lato', Arial, sans-serif; font-weight: 700; box-shadow: 0 2px 8px rgba(199,109,44,0.10); cursor: pointer; transition: background 0.18s, transform 0.18s, box-shadow 0.18s; margin-top: 1.2rem; display: inline-block; }
.btn-orange:hover, .btn-orange:focus { background: #a8561e; transform: scale(1.07); box-shadow: 0 4px 16px rgba(199,109,44,0.18); }
.btn-orange-outline { background: transparent; color: #c76d2c; border: 2px solid #c76d2c; border-radius: 8px; padding: 0.7em 2em; font-size: 1.1rem; font-family: 'Lato', Arial, sans-serif; font-weight: 700; box-shadow: none; cursor: pointer; transition: background 0.18s, color 0.18s, border 0.18s, transform 0.18s; margin-top: 1.2rem; display: inline-block; }
.btn-orange-outline:hover, .btn-orange-outline:focus { background: #fff7f0; color: #a8561e; border-color: #a8561e; transform: scale(1.07); }

/* Propositions */
.propositions-section { background: #f8f9fa; padding: 3rem 0 2rem 0; }
.section-title { text-align: center; font-size: 2.2rem; margin-bottom: 2.5rem; }
.propositions-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 2.5rem; max-width: 1200px; margin: 0 auto; }
.proposition { background: #fff; border-radius: 14px; box-shadow: 0 2px 8px rgba(0,0,0,0.04); padding: 2rem 1.2rem 1.5rem 1.2rem; text-align: center; display: flex; flex-direction: column; align-items: center; }
.proposition-img { width: 100%; height: 260px; object-fit: cover; border-radius: 12px; margin-bottom: 1rem; box-shadow: 0 1px 6px rgba(0,0,0,0.07); }
.proposition-title { font-size: 1.3rem; margin-bottom: 0.7rem; }
.proposition-btn { margin-top: 1rem; }

/* Contact */
.contact-section { background: #fff7f0; /* fond orangé léger */ padding: 3rem 0 2rem 0; }
.contact-grid { display: flex; gap: 2.5rem; flex-wrap: wrap; justify-content: center; align-items: flex-start; max-width: 1200px; margin: 0 auto; }
.contact-info { flex: 1 1 220px; min-width: 220px; max-width: 360px; background: #fff; border-radius: 12px; box-shadow: 0 2px 8px rgba(0,0,0,0.03); padding: 1.5rem; margin-bottom: 1rem; }
.contact-info a { color: #c76d2c; text-decoration: none; font-weight: 700; }
.contact-info a:hover { text-decoration: underline; }

.social-links { margin-top: 1.2rem; display: flex; gap: 1rem; }
/* Pastilles circulaires colorées */
.icon-circle { display: inline-flex; align-items: center; justify-content: center; width: 40px; height: 40px; border-radius: 50%; margin-right: 0.5rem; }
.facebook .icon-circle { background: #1877f2; color: #fff; }
.instagram .icon-circle { background: linear-gradient(45deg, #f58529, #feda77, #dd2a7b, #8134af, #515bd4); color: #fff; }
.social-links a.btn-anim { display: inline-flex; align-items: center; font-size: 1.1rem; color: #3a4664; font-family: 'Lato', Arial, sans-serif; font-weight: 700; transition: transform 0.18s; padding-right: 0.6rem; }
.social-links a.btn-anim:hover, .social-links a.btn-anim:focus { transform: scale(1.05); }

.contact-form { flex: 2 1 320px; min-width: 260px; max-width: 500px; background: #fff; border-radius: 12px; box-shadow: 0 2px 8px rgba(0,0,0,0.03); padding: 1.5rem; display: flex; flex-direction: column; gap: 0.8rem; }
.contact-form label { font-weight: 600; margin-bottom: 0.2rem; }
.contact-form input, .contact-form textarea { width: 100%; padding: 0.6rem; border: 1px solid #ccc; border-radius: 6px; font-size: 1rem; margin-bottom: 0.5rem; font-family: inherit; }
.contact-form textarea { min-height: 80px; resize: vertical; }
.copy-label { display: flex; align-items: center; gap: 0.5rem; font-size: 0.98rem; }
.contact-form button[type="submit"] { background: #c76d2c; color: #fff; border: none; border-radius: 8px; padding: 0.9em 2.2em; font-size: 1.2rem; font-family: 'Lato', Arial, sans-serif; font-weight: 700; box-shadow: 0 2px 8px rgba(199,109,44,0.10); cursor: pointer; transition: background 0.18s, transform 0.18s, box-shadow 0.18s; margin-top: 1.2rem; display: inline-block; }
.contact-form button[type="submit"]:hover, .contact-form button[type="submit"]:focus { background: #a8561e; transform: scale(1.07); box-shadow: 0 4px 16px rgba(199,109,44,0.18); }

footer { text-align: center; padding: 1.5rem 1rem; background: #f8f9fa; color: #888; font-size: 1rem; margin-top: 2rem; }

/* Responsive */
@media (max-width: 900px) {
  .propositions-grid { grid-template-columns: 1fr 1fr; }
  .contact-grid { flex-direction: column; gap: 1.5rem; }
  .header-content { flex-direction: column; gap: 1.2rem; }
}
@media (max-width: 600px) {
  .header-content { padding: 0 0.5rem; }
  .banner-title { font-size: 2.2rem; }
  .banner-section, .banner-bg { min-height: 32vh; }
  .concept-content { padding: 2rem 0.5rem 1.2rem 0.5rem; }
  .propositions-grid { grid-template-columns: 1fr; }
}

/* ===== Animation fade-in pour le formulaire de contact ===== */
.fade-in { opacity: 0; transform: translateY(30px); animation: fadeInUp 1s ease-out 0.2s forwards; }
@keyframes fadeInUp { to { opacity: 1; transform: none; } }

/* ===== Animations de boutons ===== */
.btn-anim { transition: background 0.25s, transform 0.18s, box-shadow 0.18s; }
.btn-anim:hover, .btn-anim:focus { background: #0097a7; transform: scale(1.07); box-shadow: 0 4px 16px rgba(0,188,212,0.10); }

/* Empêcher le scroll du body quand menu mobile ouvert (rémanence si besoin) */
body.menu-open { overflow: hidden; } 

/* Section info (description + plan) */
.info-section { background: #fff; padding: 3rem 0; }
.info-container { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 2rem; align-items: start; padding: 0 1rem; }
.info-text p { line-height: 1.7; font-size: 1.1rem; }
.info-media { display: flex; justify-content: center; }
.info-img { width: 100%; max-width: 560px; border-radius: 12px; box-shadow: 0 6px 18px rgba(0,0,0,0.08); }

/* Tarifs */
.pricing-section { background: #f8f9fa; padding: 3rem 0; }
.pricing-grid { max-width: 1200px; margin: 0 auto; padding: 0 1rem; display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }
.pricing-card { background: #fff; border-radius: 12px; box-shadow: 0 4px 14px rgba(0,0,0,0.05); overflow: hidden; }
.pricing-table { width: 100%; border-collapse: collapse; }
.pricing-table thead th { background: #d89264; color: #fff; text-align: left; padding: 0.9rem 1rem; font-size: 1.05rem; }
.pricing-table td { padding: 0.9rem 1rem; border-bottom: 1px solid #eee; }
.pricing-table tr:last-child td { border-bottom: none; }

@media (max-width: 1000px) { .info-container { grid-template-columns: 1fr; } .pricing-grid { grid-template-columns: 1fr; } } 

/* CTA Réservation */
.cta-container { display: flex; justify-content: flex-end; max-width: 1200px; margin: 0.75rem auto 0; padding: 0 1rem; }
.cta-pill { display: inline-block; padding: 0.5rem 1.2rem; border: 2px solid #c76d2c; color: #c76d2c; border-radius: 999px; text-decoration: none; font-weight: 700; background: #fff; transition: background 0.2s, transform 0.18s, box-shadow 0.18s; }
.cta-pill:hover, .cta-pill:focus { background: #fff7f0; transform: translateY(-1px); box-shadow: 0 4px 14px rgba(199,109,44,0.18); }

/* Notice taxe/caution */
.notice-section { background: #f8f9fa; padding: 1.2rem 0; }
.notice-container { max-width: 1200px; margin: 0 auto; padding: 0 1rem; }
.notice-text { text-align: center; font-size: 1.05rem; color: #3a4664; } 

/* Propositions – images plus grandes et rectangulaires */
.proposition-img { width: 100%; height: 260px; object-fit: cover; border-radius: 12px; margin-bottom: 1rem; box-shadow: 0 1px 6px rgba(0,0,0,0.07); }
.propositions-grid { grid-template-columns: repeat(4, 1fr); }
@media (max-width: 1200px) { .propositions-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px) { .propositions-grid { grid-template-columns: 1fr; } }

/* Effet hover identique sur tous les boutons "Lire plus" */
.proposition-btn { display: inline-block; transform: translateZ(0); }
.proposition-btn:hover, .proposition-btn:focus { transform: scale(1.07); }

/* Liens sociaux: ne pas colorer le fond au hover (conserver fond du container) */
.social-links a.btn-anim { background: transparent !important; }
.social-links a.btn-anim:hover, .social-links a.btn-anim:focus { background: transparent !important; } 

.icon-circle img { width: 26px; height: 26px; display: block; } 

/* Matériel */
.gear-section { background: #fff; padding: 2.5rem 0; }
.gear-list { max-width: 1200px; margin: 0 auto; padding: 0 1rem; display: grid; gap: 2rem; }
.gear-item { display: grid; grid-template-columns: 220px 1fr; gap: 1.2rem; align-items: center; background: #fff; border-radius: 12px; box-shadow: 0 2px 10px rgba(0,0,0,0.04); padding: 1rem; }
.gear-img { width: 100%; height: 180px; object-fit: contain; background: #fff; border-radius: 8px; }
.gear-content .gear-title { font-family: 'Kaushan Script', cursive; color: #3a4664; font-size: 1.6rem; margin: 0 0 0.3rem; }
.gear-price { color: #c76d2c; font-weight: 700; margin-bottom: 0.4rem; }
@media (max-width: 720px) { .gear-item { grid-template-columns: 1fr; } .gear-img { height: 200px; } } 

/* Side Panel Skipass */
.sidepanel {
  position: fixed;
  top: 0;
  right: -420px;
  width: 420px;
  max-width: 92vw;
  height: 100vh;
  background: #fff;
  box-shadow: -6px 0 24px rgba(0,0,0,0.12);
  z-index: 10000;
  display: flex;
  flex-direction: column;
  transition: right 0.3s ease;
}
.sidepanel.open { right: 0; }
.sidepanel-header { padding: 1rem 1.2rem; border-bottom: 1px solid #eee; }
.sidepanel-back { background: none; border: none; color: var(--primary-blue); font-weight: 700; cursor: pointer; font-size: 1rem; }
.sidepanel-body { padding: 1rem 1.2rem; overflow-y: auto; flex: 1; }
.sidepanel-footer { padding: 1rem 1.2rem; border-top: 1px solid #eee; }

/* Items du side panel */
.sidep-participant { background: #f8f9fa; border-radius: 10px; padding: 0.9rem; margin-bottom: 0.8rem; }
.sidep-name { font-weight: 700; color: var(--primary-blue); margin-bottom: 0.4rem; }
.sidep-row { display: flex; flex-direction: column; align-items: flex-start; gap: 0.5rem; }
.sidep-label { color: #666; font-weight: 600; }
.sidep-option { display: flex; align-items: center; gap: 0.4rem; width: 100%; }
.sidep-option input { margin: 0; } 