﻿:root {
  --bpc-text: #0F172A;
  --bpc-surface: #FFFFFF;
  --bpc-border: #E5E7EB;
  --bpc-red-700: #B91C1C;
  --bpc-red-800: #991B1B;
  --bpc-primary: var(--bpc-red-700);
  --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: 760px;
  margin-left: clamp(16px, 8vw, 64px);
}

.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;
}
