/* ===== LutinoPark Aventures — style.css ===== */

:root {
  --green-dark: #1F4D2C;
  --green: #3C7A45;
  --green-mid: #4C8A52;
  --green-light: #E7F1E3;
  --wood: #6B4226;
  --wood-light: #A9713F;
  --gold: #E8A33D;
  --gold-dark: #CE8A2A;
  --cream: #FBF6EC;
  --cream-dark: #F1E6D0;
  --ink: #26231C;
  --ink-soft: #5A5245;
  --white: #FFFFFF;
  --radius: 16px;
  --radius-sm: 10px;
  --shadow: 0 10px 30px rgba(38, 35, 28, 0.12);
  --shadow-sm: 0 4px 14px rgba(38, 35, 28, 0.09);
  --header-h: 84px;
}

* { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--header-h);
}

body {
  margin: 0;
  font-family: 'Inter', system-ui, sans-serif;
  color: var(--ink);
  background: var(--cream);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 {
  font-family: 'Baloo 2', 'Inter', sans-serif;
  font-weight: 700;
  line-height: 1.15;
  margin: 0;
}

p { margin: 0; }
ul { margin: 0; padding: 0; list-style: none; }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

.container {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 24px;
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  background: var(--green);
  color: #fff;
  padding: 12px 18px;
  border-radius: 0 0 8px 0;
  z-index: 1000;
}
.skip-link:focus { left: 0; }

/* ===== Buttons ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.98rem;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform .15s ease, box-shadow .15s ease, background .15s ease, color .15s ease;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); }

.btn-primary {
  background: var(--gold);
  color: #3A2408;
  box-shadow: 0 8px 20px rgba(232, 163, 61, 0.4);
}
.btn-primary:hover { background: var(--gold-dark); }

.btn-outline {
  background: transparent;
  border-color: var(--green);
  color: var(--green-dark);
}
.btn-outline:hover { background: var(--green); color: #fff; }

.btn-outline-light {
  background: rgba(255,255,255,0.1);
  border-color: rgba(255,255,255,0.75);
  color: #fff;
  backdrop-filter: blur(4px);
}
.btn-outline-light:hover { background: #fff; color: var(--ink); }

.btn-ghost {
  background: var(--cream-dark);
  color: var(--ink);
  padding: 10px 18px;
  font-size: 0.92rem;
}
.btn-ghost:hover { background: var(--green); color: #fff; }

/* ===== Header ===== */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 500;
  height: var(--header-h);
  display: flex;
  align-items: center;
  background: rgba(251, 246, 236, 0.75);
  backdrop-filter: blur(10px);
  transition: background .25s ease, box-shadow .25s ease, height .25s ease;
}
.site-header.scrolled {
  background: rgba(251, 246, 236, 0.97);
  box-shadow: var(--shadow-sm);
  height: 68px;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  height: 100%;
}

.brand img { height: 54px; width: auto; transition: height .25s ease; }
.site-header.scrolled .brand img { height: 44px; }

.main-nav ul { display: flex; gap: 26px; flex-wrap: wrap; }
.main-nav a {
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--ink-soft);
  position: relative;
  padding: 6px 0;
}
.main-nav a::after {
  content: '';
  position: absolute; left: 0; bottom: 0;
  width: 0; height: 2px;
  background: var(--green);
  transition: width .2s ease;
}
.main-nav a:hover { color: var(--ink); }
.main-nav a:hover::after, .main-nav a.active::after { width: 100%; }
.main-nav a.active { color: var(--green-dark); }

.header-actions { display: flex; align-items: center; gap: 14px; }
.header-phone svg { color: var(--green-dark); }

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px; height: 40px;
  border: none;
  background: transparent;
  cursor: pointer;
  padding: 0;
}
.nav-toggle span {
  display: block; height: 2px; width: 100%;
  background: var(--ink);
  border-radius: 2px;
  transition: transform .25s ease, opacity .25s ease;
}
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ===== Hero ===== */
.hero {
  position: relative;
  min-height: 86vh;
  display: flex;
  align-items: center;
  color: #fff;
  overflow: hidden;
}
.hero-media { position: absolute; inset: 0; z-index: 0; }
.hero-media img { width: 100%; height: 100%; object-fit: cover; }
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(15,30,15,.6) 0%, rgba(15,30,15,.4) 45%, rgba(15,30,15,.8) 100%);
}
.hero-content {
  position: relative;
  z-index: 1;
  padding-top: var(--header-h);
  max-width: 760px;
}
.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-weight: 600;
  font-size: 0.85rem;
  color: #D9EFCB;
  margin-bottom: 14px;
}
.hero h1 {
  font-size: clamp(2.1rem, 5vw, 3.4rem);
  margin-bottom: 20px;
  text-shadow: 0 4px 24px rgba(0,0,0,0.3);
}
.hero-lead {
  font-size: 1.12rem;
  max-width: 560px;
  margin-bottom: 30px;
  color: #F5F9F0;
}
.hero-ctas { display: flex; gap: 16px; flex-wrap: wrap; }

/* ===== Season banner ===== */
.season-banner {
  background: var(--green-dark);
  color: #fff;
  padding: 22px 0;
  text-align: center;
}
.season-banner strong { color: var(--gold); }

/* ===== Sections ===== */
.section { padding: 90px 0; }
.section-sm { padding: 56px 0; }
.section-alt { background: var(--cream-dark); }

.section-eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-weight: 700;
  font-size: 0.82rem;
  color: var(--green);
  margin-bottom: 12px;
}
.section-eyebrow.center { text-align: center; }

.section-title { font-size: clamp(1.7rem, 3.2vw, 2.3rem); margin-bottom: 16px; max-width: 700px; }
.section-title.center { margin-left: auto; margin-right: auto; text-align: center; }
.section-lead { font-size: 1.05rem; color: var(--ink-soft); max-width: 640px; margin-bottom: 44px; }
.section-lead.center { margin-left: auto; margin-right: auto; text-align: center; }

/* ===== Page hero (inner pages) ===== */
.page-hero {
  padding: calc(var(--header-h) + 56px) 0 56px;
  background: var(--green-dark);
  color: #fff;
  text-align: center;
  background-image: linear-gradient(rgba(20,45,25,0.82), rgba(20,45,25,0.9));
  background-size: cover;
  background-position: center;
}
.page-hero h1 { font-size: clamp(1.9rem, 4vw, 2.6rem); margin-bottom: 10px; }
.page-hero p { color: #D9EFCB; font-size: 1.02rem; max-width: 560px; margin: 0 auto; }

/* ===== Team grid ===== */
.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 24px;
}
.team-card {
  background: #fff;
  border-radius: var(--radius);
  padding: 28px 20px;
  text-align: center;
  box-shadow: var(--shadow-sm);
}
.team-avatar {
  width: 76px; height: 76px;
  border-radius: 50%;
  margin: 0 auto 16px;
  display: flex; align-items: center; justify-content: center;
  font-family: 'Baloo 2', sans-serif;
  font-size: 1.6rem;
  font-weight: 700;
  color: #fff;
  background: linear-gradient(135deg, var(--green), var(--green-dark));
}
.team-card h3 { font-size: 1.1rem; margin-bottom: 4px; }
.team-card span { font-size: 0.86rem; color: var(--ink-soft); }

/* ===== Info cards / activity cards ===== */
.info-strip {
  background: var(--green-dark);
  color: #fff;
  padding: 26px 0;
}
.info-strip-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.info-item { display: flex; align-items: flex-start; gap: 12px; }
.info-item svg { flex-shrink: 0; margin-top: 2px; color: #C9E8C0; }
.info-item div { display: flex; flex-direction: column; gap: 2px; }
.info-item strong { font-size: 0.98rem; }
.info-item span { font-size: 0.86rem; color: #D9EFCB; }

.activities-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 22px;
}
.activity-card {
  background: #fff;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform .2s ease, box-shadow .2s ease;
}
.activity-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.activity-card-body { padding: 24px; }
.activity-icon {
  width: 52px; height: 52px;
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  background: var(--green-light);
  color: var(--green-dark);
  margin-bottom: 16px;
}
.activity-card h3 { font-size: 1.15rem; margin-bottom: 8px; }
.activity-card p { font-size: 0.92rem; color: var(--ink-soft); }

/* ===== Pricing tables ===== */
.pricing-block {
  background: #fff;
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  padding: 32px;
  margin-bottom: 28px;
}
.pricing-block-header { display: flex; align-items: baseline; justify-content: space-between; gap: 16px; margin-bottom: 8px; flex-wrap: wrap; }
.pricing-block h3 { font-size: 1.3rem; color: var(--green-dark); }
.pricing-tag {
  font-size: 0.76rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 5px 12px;
  border-radius: 999px;
  background: var(--cream-dark);
  color: var(--wood);
}
.pricing-desc { font-size: 0.94rem; color: var(--ink-soft); margin-bottom: 20px; }

.pricing-table { width: 100%; border-collapse: collapse; margin-bottom: 10px; }
.pricing-table th, .pricing-table td {
  text-align: left;
  padding: 12px 8px;
  border-bottom: 1px solid var(--cream-dark);
  font-size: 0.95rem;
}
.pricing-table th {
  font-family: 'Baloo 2', sans-serif;
  color: var(--green-dark);
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.pricing-table td:last-child { font-weight: 700; text-align: right; color: var(--wood); }

.pricing-subgroup { margin-top: 18px; padding-top: 14px; border-top: 1px dashed var(--cream-dark); }
.pricing-subgroup-label { font-size: 0.82rem; font-weight: 700; color: var(--ink-soft); text-transform: uppercase; letter-spacing: 0.04em; margin-bottom: 8px; display: block; }

.pricing-note {
  font-size: 0.85rem;
  color: var(--ink-soft);
  background: var(--cream);
  border-radius: var(--radius-sm);
  padding: 14px 16px;
  margin-top: 14px;
}

/* ===== Horaires tables ===== */
.horaires-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.horaires-card {
  background: #fff;
  border-radius: var(--radius);
  padding: 30px;
  box-shadow: var(--shadow-sm);
}
.horaires-card h3 { font-size: 1.2rem; color: var(--green-dark); margin-bottom: 6px; }
.horaires-card .period-dates { font-size: 0.85rem; color: var(--ink-soft); margin-bottom: 20px; }
.horaires-table { width: 100%; border-collapse: collapse; }
.horaires-table td { padding: 9px 4px; font-size: 0.94rem; border-bottom: 1px solid var(--cream-dark); }
.horaires-table td:last-child { text-align: right; font-weight: 600; color: var(--green-dark); }
.horaires-badge {
  display: inline-block;
  margin-top: 20px;
  font-size: 0.85rem;
  color: var(--wood);
  background: var(--cream-dark);
  padding: 8px 14px;
  border-radius: var(--radius-sm);
}

/* ===== Contact / forms ===== */
.contact-layout { display: grid; grid-template-columns: 1fr 1.1fr; gap: 56px; }
.contact-list { margin: 24px 0 0; display: flex; flex-direction: column; gap: 18px; }
.contact-list li { display: flex; align-items: flex-start; gap: 14px; font-size: 0.98rem; }
.contact-list svg { color: var(--green-dark); flex-shrink: 0; margin-top: 2px; }
.contact-list a:hover { color: var(--green-dark); }

.map-embed { border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-sm); aspect-ratio: 4/3; margin-top: 28px; }
.map-embed iframe { width: 100%; height: 100%; border: 0; }

.contact-form { background: #fff; border-radius: var(--radius); padding: 36px; box-shadow: var(--shadow-sm); }
.contact-form h3 { font-size: 1.3rem; margin-bottom: 22px; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.form-row { margin-bottom: 18px; display: flex; flex-direction: column; gap: 6px; }
.form-row.full { grid-column: 1 / -1; }
.form-row label { font-size: 0.86rem; font-weight: 600; color: var(--ink-soft); }
.form-row input, .form-row select, .form-row textarea {
  font-family: inherit;
  font-size: 0.96rem;
  padding: 12px 14px;
  border: 1.5px solid var(--cream-dark);
  border-radius: var(--radius-sm);
  background: var(--cream);
  color: var(--ink);
  resize: vertical;
  transition: border-color .2s ease;
}
.form-row input:focus, .form-row select:focus, .form-row textarea:focus { outline: none; border-color: var(--green); }
.form-hint { font-size: 0.8rem; color: var(--ink-soft); opacity: 0.75; margin-top: 6px; }

/* ===== Gallery ===== */
.gallery-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 20px; }
.gallery-item { border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-sm); aspect-ratio: 4/3; }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s ease; }
.gallery-item:hover img { transform: scale(1.06); }

.gallery-empty {
  background: #fff;
  border-radius: var(--radius);
  padding: 48px 32px;
  text-align: center;
  box-shadow: var(--shadow-sm);
}
.gallery-empty svg { color: var(--green); margin-bottom: 16px; }
.gallery-empty h3 { font-size: 1.2rem; margin-bottom: 8px; }
.gallery-empty p { color: var(--ink-soft); font-size: 0.95rem; max-width: 420px; margin: 0 auto; }

/* ===== Snack ===== */
.snack-card {
  background: #fff;
  border-radius: var(--radius);
  padding: 44px;
  box-shadow: var(--shadow-sm);
  display: flex;
  align-items: center;
  gap: 36px;
  flex-wrap: wrap;
}
.snack-icon {
  width: 84px; height: 84px;
  border-radius: 22px;
  background: var(--green-light);
  color: var(--green-dark);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.snack-card h3 { font-size: 1.4rem; margin-bottom: 10px; }
.snack-card p { color: var(--ink-soft); font-size: 1rem; max-width: 560px; }

/* ===== Partners / decorative mascot ===== */
.mascot-corner {
  position: absolute;
  bottom: -20px;
  right: 24px;
  width: 120px;
  opacity: 0.9;
  pointer-events: none;
}

/* ===== Footer ===== */
.site-footer { background: var(--ink); color: #D7D2C6; padding: 44px 0; }
.footer-inner { display: flex; flex-direction: column; align-items: center; gap: 16px; text-align: center; }
.footer-logo { height: 44px; width: auto; opacity: 0.92; filter: brightness(0) invert(1); }
.footer-contact { display: flex; gap: 22px; flex-wrap: wrap; justify-content: center; font-size: 0.88rem; }
.footer-contact a:hover { color: var(--gold); }
.footer-inner p { font-size: 0.82rem; color: #9C9788; }

/* ===== Back to top ===== */
.back-to-top {
  position: fixed; bottom: 28px; right: 28px;
  width: 46px; height: 46px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 50%;
  background: var(--green);
  color: #fff;
  box-shadow: var(--shadow);
  opacity: 0; visibility: hidden;
  transform: translateY(10px);
  transition: opacity .25s ease, transform .25s ease, visibility .25s ease;
  z-index: 400;
}
.back-to-top.visible { opacity: 1; visibility: visible; transform: translateY(0); }
.back-to-top:hover { background: var(--green-dark); }

/* ===== Reveal animation ===== */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .6s ease, transform .6s ease; }
.reveal.is-visible { opacity: 1; transform: translateY(0); }

/* ===== Responsive ===== */
@media (max-width: 980px) {
  .main-nav { display: none; }
  .nav-toggle { display: flex; }
  .header-phone span { display: none; }

  .main-nav.open {
    display: block;
    position: fixed;
    top: var(--header-h);
    left: 0; right: 0;
    background: var(--cream);
    box-shadow: var(--shadow);
    padding: 24px;
  }
  .main-nav.open ul { flex-direction: column; gap: 18px; }

  .info-strip-grid { grid-template-columns: 1fr; }
  .horaires-grid { grid-template-columns: 1fr; }
  .contact-layout { grid-template-columns: 1fr; }
  .form-grid { grid-template-columns: 1fr; }
}

@media (max-width: 620px) {
  .section { padding: 60px 0; }
  .hero-ctas { flex-direction: column; align-items: stretch; }
  .hero-ctas .btn { text-align: center; }
  .snack-card { flex-direction: column; text-align: center; }
  .contact-form { padding: 24px; }
  .pricing-block { padding: 22px; }
}
