﻿:root {
  --bpc-text: #0F172A;
  --bpc-surface: #FFFFFF;
  --bpc-border: #E5E7EB;
  --bpc-red-700: #B91C1C;
  --bpc-red-800: #991B1B;
  --bpc-primary: var(--bpc-red-700);
  --menu-toggle-bottom-desktop: 48px;
  --menu-toggle-right-desktop: 48px;
  --menu-toggle-size-desktop: 50px;
  --menu-toggle-font-desktop: 20px;
  --menu-toggle-bottom-mobile: calc(18px + env(safe-area-inset-bottom, 0));
  --menu-toggle-right-mobile: 16px;
  --menu-toggle-size-mobile: 48px;
  --menu-toggle-font-mobile: 18px;
  --header-padding-block-mobile: 8px;
  --header-padding-inline-mobile: 16px;
  --fs-hero: clamp(34px, 5vw, 56px);
  --fs-h1: clamp(28px, 4vw, 42px);
  --fs-h2: clamp(22px, 3vw, 32px);
  --radius: 16px;
  --shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
  --shadow-hover: 0 18px 40px rgba(0, 0, 0, 0.12);
}

a:focus-visible,
button:focus-visible,
.chip:focus-visible {
  outline: 3px solid color-mix(in oklab, var(--bpc-red-700) 70%, #ffffff);
  outline-offset: 3px;
  border-radius: 8px;
}

.hero-modern {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  color: #fff;
  min-height: clamp(360px, 70vh, 540px);
  display: flex;
  align-items: stretch;
  margin-block: var(--bpc-section-gap, 64px);
  background: #050505;
  box-shadow: var(--shadow);
}

.hero-modern .hero-bg {
  position: absolute;
  inset: 0;
  background: #050505;
}

.hero-modern .hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(100%) contrast(1.25) brightness(0.6);
}

.hero-modern .hero-overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 30% 30%, rgba(185, 28, 28, 0.5), transparent 55%),
    linear-gradient(180deg, rgba(15, 23, 42, 0.85), rgba(15, 23, 42, 0.65));
}

.hero-modern .hero-inner {
  position: relative;
  z-index: 2;
  padding: clamp(24px, 6vw, 64px);
  display: flex;
  flex-direction: column;
  gap: 24px;
  max-width: 1200px;
  margin-inline: auto;
}

.hero-modern h1 {
  font-size: var(--fs-hero);
  line-height: 1.05;
  letter-spacing: -0.5px;
  margin: 0;
}

.hero-modern .lead {
  font-size: clamp(18px, 2.5vw, 22px);
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.88);
  margin: 0;
}

.hero-modern .actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px 18px;
  border-radius: 999px;
  font-weight: 700;
  border: 1px solid var(--bpc-border);
  background: #fff;
  color: var(--bpc-text);
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, color 0.2s ease;
  text-decoration: none;
}

.btn:hover,
.btn:focus-visible {
  transform: translateY(-2px);
  box-shadow: var(--shadow-hover);
}

.btn-primary {
  color: #fff;
  background: linear-gradient(135deg, var(--bpc-red-700), var(--bpc-red-800));
  border-color: transparent;
  box-shadow: var(--shadow);
}

.btn-primary:hover,
.btn-primary:focus-visible {
  box-shadow: var(--shadow-hover);
}

.hero-modern .btn {
  border-color: rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
}

.hero-modern .btn:hover,
.hero-modern .btn:focus-visible {
  background: rgba(255, 255, 255, 0.2);
}

.hero-modern .btn.btn-primary {
  background: linear-gradient(135deg, var(--bpc-red-700), var(--bpc-red-800));
  border-color: transparent;
  box-shadow: var(--shadow);
}

.hero-modern .btn.btn-primary:hover,
.hero-modern .btn.btn-primary:focus-visible {
  box-shadow: var(--shadow-hover);
}

.grid {
  display: grid;
  gap: var(--bpc-grid-gap, 32px);
}

.cols-2 {
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

.card {
  background: #fff;
  border: 1px solid var(--bpc-border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow: hidden;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  display: flex;
  flex-direction: column;
}

.card:hover,
.card:focus-within {
  transform: translateY(-3px);
  box-shadow: var(--shadow-hover);
}



.card .body {
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  color: var(--bpc-text);
}

.card-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.card .kicker {
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 12px;
  font-weight: 700;
  color: var(--bpc-red-700);
}

.card .title {
  margin: 0;
  font-size: var(--fs-h2);
  line-height: 1.2;
}

.card .meta {
  margin: 0;
  color: rgba(15, 23, 42, 0.72);
  font-size: 15px;
}

.badge-price {
  display: inline-flex;
  align-items: baseline;
  gap: 8px;
  font-weight: 700;
  color: var(--bpc-red-700);
}

.badge-price .total {
  font-weight: 600;
  font-size: 14px;
  color: rgba(15, 23, 42, 0.7);
}

.chips {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.chip {
  border: 1px solid var(--bpc-border);
  border-radius: 999px;
  background: #fff;
  color: var(--bpc-text);
  padding: 10px 18px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.chip[aria-pressed="true"] {
  background: var(--bpc-red-700);
  border-color: var(--bpc-red-700);
  color: #fff;
}

.dates-table-container {
  border-radius: var(--radius);
  border: 1px solid var(--bpc-border);
  overflow: hidden;
  box-shadow: var(--shadow);
  background: #fff;
}

.fab-cta {
  position: fixed;
  right: 16px;
  bottom: calc(24px + env(safe-area-inset-bottom, 0));
  z-index: 1900;
  display: none;
}

@media (max-width: 900px) {
  .hero-modern {
    border-radius: 0;
  }

  .hero-modern .hero-inner {
    padding: clamp(24px, 8vw, 48px);
  }

  .fab-cta {
    display: block;
  }
}

@media (max-width: 600px) {
  .hero-modern .actions {
    flex-direction: column;
    align-items: stretch;
  }

  .card .body {
    padding: 20px;
  }
}

\.gallery-item img {
  width: 100%;
  height: auto;
  object-fit: cover;
  display: block;
}

.card img[style*='max-width: 400px'] {
  height: auto;
  object-fit: cover;
}

.card img[alt*="Ambiance conviviale"],
.card img[alt*="Partage d'exp&eacute;rience"],
.card img[alt*="Groupe motiv&eacute;"] {
  height: auto;
  object-fit: cover;
}

.section {
  padding-block: clamp(48px, 8vw, 96px);
}

.section h2 {
  font-size: var(--fs-h1);
  line-height: 1.2;
  color: var(--bpc-text);
  margin-bottom: 24px;
}

.section .section-intro {
  max-width: 640px;
  margin-bottom: 32px;
  color: rgba(15, 23, 42, 0. 72);
}





.card .media img {
  width: 100%;
  height: auto;
  object-fit: cover;
  display: block;
}

/* ================== MENU GLISSANT ================== */
.sliding-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 100%;
  max-width: 400px;
  height: 100vh;
  background: white;
  box-shadow: -5px 0 25px rgba(0, 0, 0, 0.15);
  z-index: 2000;
  transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  overflow-y: auto;
}

.sliding-menu.active {
  right: 0;
}

.sliding-menu-header {
  background: linear-gradient(135deg, #155E75, #075985);
  color: white;
  padding: 48px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: sticky;
  top: 0;
  z-index: 10;
}

.sliding-menu-header h3 {
  margin: 0;
  font-size: 20px;
  font-weight: 700;
}

.sliding-menu-close {
  background: none;
  border: none;
  color: white;
  font-size: 24px;
  cursor: pointer;
  padding: 8px;
  border-radius: 0;
  transition: background 0.3s ease;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.sliding-menu-close:hover {
  background: rgba(255, 255, 255, 0.2);
}

.sliding-menu-content {
  padding: 48px;
}

.sliding-menu-section {
  margin-bottom: 80px;
}

.sliding-menu-section h4 {
  color: #DC2626;
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 24px;
  padding-bottom: 16px;
  border-bottom: 2px solid #F0F9FF;
}

.sliding-menu-nav {
  list-style: none;
  padding: 0;
  margin: 0;
}

.sliding-menu-nav li {
  margin-bottom: 16px;
}

.sliding-menu-nav a {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 24px;
  color: #155E75;
  text-decoration: none;
  border-radius: 16px;
  transition: all 0.3s ease;
  font-weight: 500;
}

.sliding-menu-nav a:hover {
  background: #F0F9FF;
  color: #DC2626;
  transform: translateX(8px);
}

.sliding-menu-nav a.active {
  background: #DC2626;
  color: white;
}

.sliding-menu-nav .icon {
  font-size: 20px;
  width: 24px;
  text-align: center;
}

.sliding-menu-stages {
  background: #F0F9FF;
  border-radius: 16px;
  padding: 24px;
  margin-bottom: 48px;
}

.sliding-menu-stages h5 {
  color: #155E75;
  margin-bottom: 16px;
  font-size: 16px;
}

.stage-card {
  background: white;
  border-radius: 16px;
  padding: 24px;
  margin-bottom: 16px;
  border-left: 4px solid #DC2626;
  transition: all 0.3s ease;
}

.stage-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
}

.stage-card h6 {
  color: #DC2626;
  margin: 0 0 8px 0;
  font-size: 14px;
}

.stage-card p {
  margin: 0;
  font-size: 13px;
  color: #666666;
}

.sliding-menu-contact {
  background: linear-gradient(135deg, #155E75, #075985);
  color: white;
  border-radius: 16px;
  padding: 24px;
  text-align: center;
}

.sliding-menu-contact h5 {
  margin: 0 0 16px 0;
  font-size: 16px;
}

.sliding-menu-contact a {
  color: white;
  text-decoration: none;
  font-weight: 600;
}

/* Overlay pour le menu */
.menu-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 1500;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  pointer-events: none;
}

.menu-overlay.active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

/* Bouton pour ouvrir le menu */
.menu-toggle {
  background: linear-gradient(135deg, #155E75, #075985);
  color: white;
  border: none;
  border-radius: 50%;
  width: var(--menu-toggle-size-desktop);
  height: var(--menu-toggle-size-desktop);
  font-size: var(--menu-toggle-font-desktop);
  cursor: pointer;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  position: fixed;
  bottom: var(--menu-toggle-bottom-desktop);
  right: var(--menu-toggle-right-desktop);
  z-index: 2200 !important;
  display: flex;
  align-items: center;
  justify-content: center;
}

.menu-toggle:hover {
  transform: scale(1.1);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.12);
}

/* Désactive l'effet hover sur les appareils tactiles (évite le rebondissement) */
@media (hover: none) and (pointer: coarse) {
  .menu-toggle:hover {
    transform: none;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
  }
}

/* Responsive */
@media (max-width: 768px) {
  .sliding-menu {
    max-width: 100%;
  }

  .menu-toggle {
    bottom: var(--menu-toggle-bottom-mobile);
    right: var(--menu-toggle-right-mobile);
    width: var(--menu-toggle-size-mobile);
    height: var(--menu-toggle-size-mobile);
    font-size: var(--menu-toggle-font-mobile);
  }

  body {
    padding-bottom: calc(120px + env(safe-area-inset-bottom, 0));
  }
}