/* =============================================================================
   /include/calendrier-la-grange.css — Page Calendrier (La Grange)
   ============================================================================= */

.cal-page-body{
  position: relative;
  min-height: 100vh;
  background: #f7f7f7;
  color: var(--ink, #2e2e2e);
}

.cal-page-body::before{
  content: "";
  position: fixed;
  inset: 0;

  background-image: url("../photos/la-grange/fond-planing-1600.webp");
  background-image: image-set(
    url("../photos/la-grange/fond-planing-960.webp") 1x,
    url("../photos/la-grange/fond-planing-1600.webp") 2x
  );

  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  filter: saturate(0.95) contrast(0.95);
  transform: translateZ(0);
  z-index: 0;
}

.cal-page-body::after{
  content:"";
  position: fixed;
  inset: 0;
  background: rgba(255,255,255,.05);
  z-index: 1;
}

.cal-page{
  position: relative;
  z-index: 2;
  max-width: 1100px;
  margin: 0 auto;
  padding: 56px 18px 72px;
}

@media (max-width: 700px){
  .cal-page{ padding: 34px 14px 54px; }
}

.cal-header{ margin-bottom: 18px; }

.cal-header h1{
  font-size: clamp(1.8rem, 3.6vw, 2.0rem);
  line-height: 1.15;
  margin: 0;
  font-weight: 700;
  color: #ffffff;
  text-shadow: 0 10px 24px rgba(0,0,0,.45);
  letter-spacing: -0.01em;
}

/* Cartouche autour du calendrier */
.cal-shell{
  border: 1px solid var(--border, #e6e6e6);
  border-radius: 14px;
  background: rgba(255,255,255,.55);
  box-shadow: 0 8px 18px rgba(255,255,255,.05);
  overflow: hidden;
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  padding: 18px;
}

/* Grille plus transparente pour laisser vivre le fond */
.cal-widget{
  background: rgba(255,255,255,.35);
  border: 1px solid rgba(0,0,0,.08);
  border-radius: 12px;
  padding: 10px;
}

.fc .fc-scrollgrid,
.fc .fc-scrollgrid-section,
.fc .fc-view-harness,
.fc .fc-view,
.fc .fc-daygrid-body,
.fc .fc-timegrid-body{
  background: transparent !important;
}

.fc .fc-daygrid-day-frame{
  background: rgba(255,255,255,.15);
}

/* =========================
   RÉSERVÉE (plus soutenu)
   ========================= */

/* Teinte cellules (3 jours) */
.fc .ev-booking-bg{
  background-color: rgba(46,46,46,.50) !important; /* 50% */
}

/* Bandeau texte */
.fc .ev-booking{
  background-color: rgba(46,46,46,.50) !important;
  border-color: rgba(46,46,46,.50) !important;
  color: #ffffff !important;
  font-weight: 600;
}

/* =========================
   OPTION (gris plus léger)
   ========================= */

/* Teinte cellules (3 jours) */
.fc .ev-option-bg{
  background-color: rgba(46,46,46,.28) !important; /* moins soutenu */
}

/* Bandeau texte */
.fc .ev-option{
  background-color: rgba(46,46,46,.28) !important;
  border-color: rgba(46,46,46,.28) !important;
  color: #ffffff !important;
  font-weight: 600;
}

.cal-page-body .site-footer{
  position: relative;
  z-index: 2;
}