@font-face {
  font-family: "Baby Doll";
  src: url("font/Baby Doll.ttf") format("truetype");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
:root {
  --green: #005128;
  --green-dark: #005128;
  --cream: #f5f0e6;
  --cream-2: #ece4d5;
  --white: #ffffff;
  --text: #1f3a27;
  --muted: #5c6f61;
  --pink: #eb2f8f;
  --orange: #f56a17;
  --blue: #16a9d8;
  --lime: #87bd3f;
  --shadow: 0 14px 40px rgba(0, 58, 24, 0.12);
  --radius-xl: 28px;
  --radius-lg: 22px;
  --radius-md: 16px;
  --max: 1240px;
  --title-font: "Baby doll";
  }

  * {
    box-sizing: border-box;
  }

  html {
    scroll-behavior: smooth;
  }

  body {
    margin: 0;
    font-family: "Trebuchet MS", "Avenir Next", "Segoe UI", Arial, sans-serif;
    color: var(--text);
    background: linear-gradient(180deg, #f8f5ed 0%, #f2eadc 100%);
    line-height: 1.45;
  }

  img {
    max-width: 100%;
    display: block;
  }

  a {
    text-decoration: none;
    color: inherit;
  }

  .container {
    width: min(calc(100% - 32px), var(--max));
    margin: 0 auto;
  }

  .topbar {
    position: sticky;
    top: 0;
    z-index: 50;
    background: var(--green);
    color: white;
    box-shadow: 0 8px 22px rgba(0, 55, 18, 0.18);
  }

  .topbar-inner {
    min-height: 76px;
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    gap: 16px;
  }

  .top-left,
  .top-right {
    display: flex;
    align-items: center;
    gap: 14px;
    font-weight: 700;
    font-size: 1rem;
  }

  .top-right {
    justify-content: flex-end;
  }

  .icon-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: white;
    opacity: 0.98;
  }

  .icon {
    width: 26px;
    height: 26px;
    border-radius: 999px;
    display: inline-grid;
    place-items: center;
    font-size: 1.1rem;
  }

  .brand {
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .brand img {
    max-height: 56px;
    width: auto;
    display: block;
    object-fit: contain;
  }

  .hero-wrap {
    position: relative;
    overflow: hidden;
  }

  .hero-bg-shape,
  .hero-bg-shape-2,
  .hero-bg-shape-3 {
    position: absolute;
    border-radius: 999px;
    opacity: 0.12;
    pointer-events: none;
  }

  .hero-bg-shape {
    width: 320px;
    height: 320px;
    background: var(--lime);
    top: -120px;
    right: -80px;
    filter: blur(10px);
  }

  .hero-bg-shape-2 {
    width: 220px;
    height: 220px;
    background: var(--pink);
    left: -90px;
    top: 220px;
  }

  .hero-bg-shape-3 {
    width: 260px;
    height: 260px;
    background: var(--blue);
    right: -80px;
    bottom: 40px;
  }

  .hero {
    padding: 42px 0 34px;
  }

  .hero-card {
    background: radial-gradient(circle at top left, rgba(255,255,255,0.65), rgba(255,255,255,0.25)), var(--cream-2);
    border-radius: 34px;
    box-shadow: var(--shadow);
    overflow: hidden;
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    min-height: 620px;
  }

  .hero-copy {
    padding: clamp(28px, 4vw, 54px);
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 18px;
  }

  .eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--green);
    font-weight: 900;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    font-size: 0.88rem;
  }

  .eyebrow-dot {
    width: 14px;
    height: 14px;
    border-radius: 999px;
    background: var(--pink);
    box-shadow: 14px 0 0 var(--orange), 28px 0 0 var(--lime);
    margin-right: 20px;
  }

  h1 {
    margin: 0;
    font-size: clamp(2.5rem, 6vw, 5.2rem);
    line-height: 0.95;
    color: var(--green);
    letter-spacing: -0.04em;
    font-family: var(--title-font);
  }

  .subtitle {
    font-size: clamp(1.05rem, 1.8vw, 1.35rem);
    color: #264934;
    max-width: 620px;
  }

  .hero-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    padding-top: 4px;
  }

  .meta-pill {
    background: rgba(255,255,255,0.7);
    border: 1px solid rgba(0,107,47,0.09);
    color: var(--green-dark);
    border-radius: 999px;
    padding: 12px 16px;
    font-weight: 800;
    font-size: 0.95rem;
  }

  .hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    padding-top: 8px;
  }

  .btn {
    border: 0;
    border-radius: 999px;
    padding: 16px 22px;
    font-weight: 900;
    font-size: 0.98rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
    cursor: pointer;
  }

  .btn:hover {
    transform: translateY(-2px);
  }

  .btn-primary {
    background: #E5007D;
    color: white;
    box-shadow: 0 10px 24px rgba(0, 107, 47, 0.24);
  }

  .btn-secondary {
    background: #69A82F;
    color: white;
    border: 2px solid rgba(0,107,47,0.15);
  }

  .hero-visual {
  position: relative;
  min-height: 380px;
  background-image: url('img/photo race.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
      
  }

  .photo-badge {
    position: absolute;
    left: 24px;
    top: 24px;
    background: white;
    color: var(--green);
    border-radius: 999px;
    padding: 10px 14px;
    font-size: 0.86rem;
    font-weight: 900;
    box-shadow: 0 10px 28px rgba(0,0,0,0.14);
  }

  .floating-card {
    position: absolute;
    right: 24px;
    bottom: 24px;
    width: min(320px, calc(100% - 48px));
    background: rgba(255,255,255,0.92);
    backdrop-filter: blur(8px);
    border-radius: var(--radius-lg);
    padding: 20px;
    box-shadow: var(--shadow);
  }

  .floating-card h3 {
    font-family : var(--title-font);
    margin: 0 0 8px;
    color: var(--green);
    font-size: 1.25rem;
  }

  .floating-card p {
    margin: 0;
    color: var(--muted);
    font-size: 0.98rem;
  }

  section {
    padding: 28px 0 16px;
  }
  .section-title {
    font-family: var(--title-font);
    text-align: center;
    color: var(--green);
    font-size: clamp(1.7rem, 4vw, 3rem);
    line-height: 1.05;
    margin: 0 0 12px;
    letter-spacing: -0.03em; 
  }

  .section-lead {
    max-width: 760px;
    margin: 0 auto 32px;
    text-align: center;
    color: var(--muted);
    font-size: 1.06rem;
  }

  .features {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
  }

  .feature-card {
    background: rgba(255,255,255,0.7);
    border-radius: var(--radius-xl);
    padding: 24px 20px;
    text-align: center;
    box-shadow: var(--shadow);
    border: 1px solid rgba(0,107,47,0.06);
  }

  .feature-icon {
    width: 78px;
    height: 78px;
    margin: 0 auto 16px;
    border-radius: 999px;
    display: grid;
    place-items: center;
    color: white;
    font-size: 2rem;
    font-weight: 900;
  }

  .feature-card h3 {
    font-family: var(--title-font);
    margin: 0 0 8px;
    color: var(--green);
    font-size: 1.12rem;
  }

  .feature-card p {
    margin: 0;
    color: var(--muted);
    font-size: 0.95rem;
  }

  .story-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 26px;
    align-items: center;
  }

  .story-photo,
  .story-photo-alt {
    min-height: 420px;
    border-radius: 30px;
    box-shadow: var(--shadow);
    overflow: hidden;
    background-size: cover;
    background-position: center;
  }

  .story-photo {
    background-image: url('img/photo ferme.jpg') ;
  }

  .story-photo-alt {
    position: relative;
    min-height: 380px;
    background-image: url('img/photo fumi.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
  }

  .story-copy {
    background: rgba(255,255,255,0.66);
    border-radius: 30px;
    padding: clamp(24px, 4vw, 40px);
    box-shadow: var(--shadow);
  }

  .story-copy h3 {
    
    margin: 0 0 12px;
    font-size: clamp(1.5rem, 3vw, 2.5rem);
    color: var(--green);
    line-height: 1.02;
    letter-spacing: -0.03em;
  }

  .story-copy p {
    color: var(--muted);
    font-size: 1rem;
    margin: 0 0 14px;
  }

  .story-list {
    display: grid;
    gap: 12px;
    margin-top: 18px;
  }

  .story-list-item {
    display: flex;
    gap: 12px;
    align-items: flex-start;
    color: var(--text);
    font-weight: 700;
  }

  .story-list-bullet {
    flex: 0 0 10px;
    height: 10px;
    border-radius: 999px;
    background: var(--pink);
    margin-top: 8px;
  }

  .program-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
  }

  .program-card {
    background: white;
    border-radius: 26px;
    padding: 24px;
    box-shadow: var(--shadow);
    position: relative;
    overflow: hidden;
  }

  .program-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 8px;
    background: linear-gradient(90deg, var(--pink), var(--orange), var(--lime), var(--blue));
  }

  .program-day {
    display: inline-flex;
    padding: 8px 12px;
    background: var(--cream);
    border-radius: 999px;
    font-size: 0.84rem;
    font-weight: 900;
    color: var(--green);
    margin-bottom: 14px;
  }

  .program-card h3 {
    margin: 0 0 10px;
    color: var(--green);
    font-size: 1.35rem;
  }

  .program-card ul {
    padding-left: 18px;
    margin: 0;
    color: var(--muted);
  }

  .program-card li + li {
    margin-top: 8px;
  }

  .gallery-grid {
    display: grid;
    grid-template-columns: 1.2fr 1.2fr;
    gap: 18px;
  }

  .gallery-item {
    min-height: 240px;
    border-radius: 26px;
    box-shadow: var(--shadow);
    overflow: hidden;
    position: relative;
    background-size: cover;
    background-position: center;
  }

  .gallery-item.tall {
    min-height: 600px;
  }

  .gallery-item.one {
    position: relative;
    min-height: 380px;
    background-image: url('img/photo imbours.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
  }

  .gallery-item.two {
    position: relative;
    min-height: 380px;
    background-image: url('img/photo mh.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
  }

  .gallery-item.three {
    position: relative;
    min-height: 380px;
    background-image: url('img/photo tob.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
  }

  .gallery-item.four {
    position: relative;
    min-height: 380px;
    background-image: url('img/photo boule.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
  }

  .gallery-label {
    position: absolute;
    left: 18px;
    bottom: 18px;
    display: inline-block;
    width: fit-content;
    max-width: calc(100% - 48px);
    background: rgba(255,255,255,0.9);
    color: var(--green);
    border-radius: 16px;
    padding: 14px 16px;
    font-weight: 900;
  }

  .booking {
    padding-bottom: 48px;
  }

  .booking-card {
    background: linear-gradient(135deg, var(--green), #0a8a43);
    color: white;
    border-radius: 34px;
    padding: clamp(28px, 4vw, 46px);
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: center;
    gap: 24px;
    box-shadow: 0 18px 40px rgba(0, 84, 34, 0.28);
  }

  .booking-card h2 {
    margin: 0 0 8px;
    font-size: clamp(1.8rem, 4vw, 3rem);
    letter-spacing: -0.03em;
    line-height: 1;
  }

  .booking-card p {
    margin: 0;
    color: rgba(255,255,255,0.9);
    max-width: 760px;
  }

  .booking-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: flex-end;
  }

  .btn-light {
    background: #69A82F;
    color: white);
  }

  .btn-outline-light {
    background: white;
    color: green;
    border: 2px solid rgba(255,255,255,0.25);
  }

  .faq-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
  }

  .faq-item {
    background: rgba(255,255,255,0.72);
    border-radius: 22px;
    padding: 22px;
    box-shadow: var(--shadow);
  }

  .faq-item h3 {
    margin: 0 0 8px;
    color: var(--green);
    font-size: 1.08rem;
  }

  .faq-item p {
    margin: 0;
    color: var(--muted);
  }

  footer {
    padding: 20px 0 34px;
    color: var(--muted);
    font-size: 0.92rem;
    text-align: center;
  }

  .divider-title {
    position: relative;
    margin-bottom: 22px;
  }

  .divider-title::before,
  .divider-title::after {
    content: "";
    position: absolute;
    top: 50%;
    width: 22%;
    height: 1px;
    /* background: rgba(0,107,47,0.18); */
  }

  .divider-title::before {
    left: 0;
  }

  .divider-title::after {
    right: 0;
  }

  @media (max-width: 1100px) {
    .hero-card,
    .story-grid,
    .booking-card,
    .gallery-grid,
    .features,
    .program-grid,
    .faq-grid {
      grid-template-columns: 1fr;
    }

    .gallery-item.tall {
      min-height: 280px;
    }

    .booking-actions {
      justify-content: flex-start;
    }
  }

  @media (max-width: 860px) {
    .topbar-inner {
      grid-template-columns: 1fr auto;
    }

    .top-left span:last-child,
    .top-right span:last-child {
      display: none;
    }

    .brand {
      justify-self: end;
    }

    .hero {
      padding-top: 24px;
    }

    .hero-card {
      min-height: auto;
    }

    .hero-copy {
      order: 2;
    }

    .hero-visual {
      order: 1;
      min-height: 340px;
    }

    h1 {
      font-size: clamp(2.2rem, 11vw, 4rem);
    }

    .section-title {
      font-size: clamp(1.7rem, 8vw, 2.6rem);
    }

    .divider-title::before,
    .divider-title::after {
      display: none;
    }
  }

  @media (max-width: 560px) {
    .container {
      width: min(calc(100% - 20px), var(--max));
    }

    .topbar-inner {
      min-height: 68px;
    }

    .hero-copy,
    .story-copy,
    .program-card,
    .booking-card,
    .feature-card,
    .faq-item {
      padding-left: 18px;
      padding-right: 18px;
    }

    .hero-actions,
    .booking-actions {
      flex-direction: column;
    }

    .btn {
      width: 100%;
    }

    .meta-pill {
      width: 100%;
      justify-content: center;
      text-align: center;
    }
  }
   
  /* PAGE REGLEMENT */
.reglement-page {
  padding: 34px 0 60px;
}

.doc-shell {
  width: min(calc(100% - 32px), 1080px);
  margin: 0 auto;
}

.doc-header {
  background: rgba(255,255,255,0.72);
  border-radius: 30px;
  box-shadow: var(--shadow);
  padding: clamp(24px, 4vw, 42px);
  margin-bottom: 22px;
}

.doc-kicker {
  color: var(--green);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-size: 0.86rem;
  font-weight: 900;
  margin-bottom: 10px;
}

.doc-title {
  margin: 0 0 10px;
  color: var(--green);
  font-size: clamp(2.2rem, 5vw, 4rem);
  line-height: 0.95;
  font-family: var(--title-font);
}

.doc-intro {
  max-width: 760px;
  color: var(--muted);
  font-size: 1.04rem;
  margin: 0;
}

.doc-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 18px;
}

.doc-meta-item {
  background: var(--cream);
  color: var(--green);
  border-radius: 999px;
  padding: 10px 14px;
  font-size: 0.92rem;
  font-weight: 800;
}

.doc-nav {
  background: rgba(255,255,255,0.82);
  border-radius: 24px;
  box-shadow: var(--shadow);
  padding: 18px;
  margin-bottom: 22px;
}

.doc-nav-title {
  margin: 0 0 12px;
  color: var(--green);
  font-size: 1rem;
  font-weight: 900;
}

.doc-nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.doc-nav-links a {
  display: inline-block;
  background: white;
  border: 1px solid rgba(0,107,47,0.1);
  border-radius: 999px;
  padding: 10px 14px;
  font-size: 0.94rem;
  font-weight: 800;
  color: var(--green);
}

.doc-section {
  background: rgba(255,255,255,0.76);
  border-radius: 28px;
  box-shadow: var(--shadow);
  padding: clamp(22px, 3vw, 34px);
  margin-bottom: 18px;
}

.doc-section h2 {
  margin: 0 0 14px;
  color: var(--green);
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  line-height: 1;
  font-family: var(--title-font);
}

.doc-section p {
  color: var(--muted);
  margin: 0 0 12px;
}

.doc-section ul {
  margin: 0;
  padding-left: 20px;
  color: var(--muted);
}

.doc-section li + li {
  margin-top: 8px;
}

.info-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}

.info-card {
  background: white;
  border-radius: 22px;
  padding: 18px;
  border: 1px solid rgba(0,107,47,0.08);
}

.info-card h3 {
  margin: 0 0 8px;
  color: var(--green);
  font-size: 1.05rem;
  font-family: var(--title-font);
}

.info-card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.96rem;
}

.doc-footer-card {
  background: linear-gradient(135deg, var(--green), #0a8a43);
  color: white;
  border-radius: 28px;
  padding: clamp(22px, 3vw, 34px);
  box-shadow: 0 18px 40px rgba(0, 84, 34, 0.28);
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 16px;
  align-items: center;
}

.doc-footer-card h2 {
  margin: 0 0 8px;
  font-size: clamp(1.6rem, 3vw, 2.3rem);
  line-height: 1;
  font-family: var(--title-font);
}

.doc-footer-card p {
  margin: 0;
  color: rgba(255,255,255,0.9);
  max-width: 640px;
}

.doc-footer-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

@media (max-width: 760px) {
  .info-grid {
    grid-template-columns: 1fr;
  }

  .doc-shell {
    width: min(calc(100% - 20px), 1080px);
  }

  .doc-footer-actions {
    width: 100%;
  }

  .doc-footer-actions .btn {
    width: 100%;
  }
}
    .slider-wrap {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  aspect-ratio: 4 / 5;
}

.slider-slides {
  display: flex;
  height: 100%;
  transition: transform 0.5s ease;
}

.slider-slide {
  min-width: 100%;
  height: 100%;
  position: relative;
}

.slider-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Déplacement selon la radio cochée */
#s1:checked ~ .slider-slides { transform: translateX(0%); }
#s2:checked ~ .slider-slides { transform: translateX(-100%); }
#s3:checked ~ .slider-slides { transform: translateX(-200%); }

/* Points */
.slider-dots {
  position: absolute;
  bottom: 50px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
  z-index: 10;
}

.dot {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.5);
  cursor: pointer;
  display: block;
  transition: background 0.3s;
}

/* Point actif */
#s1:checked ~ .slider-dots label:nth-child(1),
#s2:checked ~ .slider-dots label:nth-child(2),
#s3:checked ~ .slider-dots label:nth-child(3) {
  background: white;
}