/* ============================================================
   Pension Pattes de Velours — shared stylesheet
   Fonts: Dosis (headings), Hind (body). Google Fonts.
   ============================================================ */

:root {
  --green:        #6fa84d;   /* buttons, divider bars (leaf green) */
  --green-hover:  #5e9440;
  --green-dark:   #0a5a0a;   /* heading accents */
  --green-nav:    #2f7d2f;   /* nav links */
  --orange:       #dd9933;   /* section titles, taglines */
  --ink:          #333333;   /* body text */
  --muted:        #7a7a7a;   /* footer / secondary */
  --page:         #d8d8d8;   /* neutral band */
  --line:         #e2e2e2;   /* table borders */
  --panel:        #eeeeee;   /* prérequis + form container */
  --white:        #ffffff;
  --header-h:     220px;
  --logo-h:       176px;
}

*, *::before, *::after { box-sizing: border-box; }

html { -webkit-text-size-adjust: 100%; }

body {
  margin: 0;
  font-family: 'Hind', Arial, sans-serif;
  font-weight: 300;
  font-size: 18px;
  line-height: 1.7;
  color: var(--ink);
  background: var(--white);
}

img { max-width: 100%; height: auto; display: block; }

a { color: var(--green-dark); text-decoration: none; }
a:hover { color: var(--green); }

.container {
  width: 100%;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 20px;
}

/* ---------- Headings ---------- */
h1, h2, h3, h4 {
  font-family: 'Dosis', Arial, sans-serif;
  font-weight: 600;
  line-height: 1.2;
  margin: 0 0 .6em;
  color: var(--ink);
}

.section-title {
  color: var(--orange);
  font-size: 32px;
  font-weight: 600;
  letter-spacing: 4px;
  margin: 0 0 24px;
}

/* ============================================================
   Header / navigation
   ============================================================ */
.site-header {
  position: absolute;              /* transparent over hero on home */
  top: 0; left: 0; right: 0;
  z-index: 50;
  transition: background .25s ease, box-shadow .25s ease;
}

.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: var(--header-h);
  gap: 24px;
}

.site-header__logo img { height: var(--logo-h); width: auto; }

.site-nav ul {
  list-style: none; margin: 0; padding: 0;
  display: flex; gap: 40px; flex-wrap: wrap;
}
.site-nav a {
  font-family: 'Dosis', Arial, sans-serif;
  font-weight: 600;
  font-size: 21px;
  letter-spacing: .5px;
  color: var(--green-nav);
}
.site-nav a:hover, .site-nav a[aria-current="page"] { color: var(--green-dark); }

/* solid variant — inner pages, and home on scroll */
.site-header.is-solid,
.site-header--solid {
  position: fixed;
  background: var(--white);
  box-shadow: 0 2px 10px rgba(0,0,0,.08);
}

/* inner pages get a fixed header + top offset so content clears it */
.page--inner { padding-top: var(--header-h); }

.nav-toggle { display: none; }

/* ============================================================
   Hero slider
   ============================================================ */
.hero {
  position: relative;
  height: 78vh;
  min-height: 460px;
  max-height: 620px;
  overflow: hidden;
  background: #c9d3d8;
}
.hero__slide {
  position: absolute; inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1s ease-in-out;
}
.hero__slide.is-active { opacity: 1; }

.hero__arrow {
  position: absolute; top: 50%; transform: translateY(-50%);
  background: none; border: none; cursor: pointer;
  color: rgba(255,255,255,.85);
  font-size: 40px; line-height: 1;
  padding: 10px 16px; z-index: 3;
}
.hero__arrow:hover { color: #fff; }
.hero__arrow--prev { left: 6px; }
.hero__arrow--next { right: 6px; }

.hero__dots {
  position: absolute; bottom: 22px; left: 0; right: 0;
  display: flex; gap: 12px; justify-content: center; z-index: 3;
}
.hero__dots button {
  width: 13px; height: 13px; border-radius: 50%;
  border: 2px solid #fff; background: transparent;
  padding: 0; cursor: pointer;
}
.hero__dots button.is-active { background: #fff; }

/* ============================================================
   Content sections
   ============================================================ */
.section { padding: 64px 0; }
.section--tight { padding: 40px 0; }

.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

.rich p { margin: 0 0 1.1em; }
.rich ul { margin: 0 0 1.1em; padding-left: 22px; }
.rich li { margin: .5em 0; }
.rich strong { font-weight: 600; color: var(--ink); }

/* green call-to-action band */
.cta-band {
  background: var(--page);
  padding: 40px 0;
  text-align: center;
}

.btn {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: 'Dosis', Arial, sans-serif;
  font-weight: 600; letter-spacing: 1.5px;
  font-size: 18px; text-transform: uppercase;
  color: #fff; background: var(--green);
  border: none; border-radius: 4px;
  padding: 16px 40px; cursor: pointer;
  transition: background .2s ease, transform .05s ease;
}
.btn:hover { background: var(--green-hover); color: #fff; }
.btn:active { transform: translateY(1px); }

.tagline {
  text-align: center;
  color: var(--orange);
  font-family: 'Dosis', Arial, sans-serif;
  font-weight: 600;
  font-size: 30px;
  letter-spacing: 3px;
  padding: 48px 0;
}

/* ============================================================
   Tarification tables
   ============================================================ */
.page-title {
  text-align: center;
  color: var(--ink);
  letter-spacing: 6px;
  font-size: 34px;
  padding: 40px 0 8px;
}
.divider-bar {
  height: 34px;
  background: var(--green);
  margin: 22px 0;
}
.table-caption {
  text-align: center;
  font-weight: 500;
  color: var(--ink);
  margin: 18px 0 14px;
}
.price-table {
  width: 100%;
  border-collapse: collapse;
  margin: 0 auto 8px;
  font-size: 16px;
}
.price-table th, .price-table td {
  border: 1px solid var(--line);
  padding: 16px 18px;
  text-align: center;
  color: #595959;
}
.price-table thead th { font-weight: 600; color: var(--ink); background: #f5f5f5; }
.price-table tbody tr:nth-child(even) { background: #fafafa; }
.price-table td.text-left { text-align: left; }

.notes { color: #595959; font-size: 16px; }
.notes strong { color: var(--ink); }
.notes-box {
  background: #f0f0f0;
  text-align: center;
  padding: 28px 32px;
  margin-bottom: 40px;
}
.notes-box p { margin: 0 0 1em; }
.notes-box p:last-child { margin-bottom: 0; }

/* ============================================================
   Prérequis tabs (reservation)
   ============================================================ */
.panel-wrap {
  background: var(--panel);
  border-radius: 6px;
  padding: 26px;
  margin: 0 0 40px;
}
.tabs { margin: 0; }
.tabs__list {
  display: flex; flex-wrap: wrap; gap: 4px; list-style: none;
  margin: 0; padding: 0;
}
.tabs__tab {
  font-family: 'Dosis', Arial, sans-serif;
  font-weight: 600; font-size: 16px;
  background: #f3f3f3; color: #6b6b6b;
  border: 1px solid #e0e0e0; border-bottom: none; cursor: pointer;
  padding: 16px 22px;
  display: inline-flex; align-items: center; gap: 8px;
  border-radius: 6px 6px 0 0;
}
.tabs__tab[aria-selected="true"] { background: #fff; color: var(--ink); }
.tabs__tab svg { width: 18px; height: 18px; }
.tabs__panels {
  background: #fff;
  padding: 34px 30px;
  border-radius: 0 6px 6px 6px;
}
.tabs__panel[hidden] { display: none; }
.tabs__panel h3 { font-size: 20px; }

/* ============================================================
   Form
   ============================================================ */
.form-wrap {
  background: var(--panel);
  border-radius: 6px;
  padding: 40px 34px;
}
.form { max-width: 100%; margin: 0; }
.form__field { margin: 0 0 24px; }
.form__label {
  display: block; margin-bottom: 8px;
  color: var(--ink); font-weight: 400;
}
.form__control {
  width: 100%;
  font-family: 'Hind', Arial, sans-serif;
  font-size: 17px; color: var(--ink);
  background: #fff;
  border: 1px solid #cfcfcf;
  border-radius: 2px;
  padding: 12px 14px;
}
input[type="date"].form__control { width: 220px; max-width: 100%; }
.form__control:focus {
  outline: none; border-color: var(--green);
  box-shadow: 0 0 0 3px rgba(111,168,77,.18);
}
textarea.form__control { min-height: 130px; resize: vertical; }

.form__choices { display: flex; flex-direction: column; gap: 12px; }
.form__choice { display: flex; align-items: center; gap: 10px; font-weight: 400; }
.form__choice input { width: 18px; height: 18px; accent-color: var(--green); }

/* CF7-style plain submit button */
.btn-submit {
  font-family: 'Hind', Arial, sans-serif;
  font-weight: 400; font-size: 18px;
  color: var(--ink);
  background: #fff;
  border: 1px solid #767676;
  border-radius: 2px;
  padding: 9px 18px;
  cursor: pointer;
}
.btn-submit:hover { background: #f2f2f2; }

/* honeypot — visually hidden */
.hp-field { position: absolute; left: -9999px; opacity: 0; height: 0; overflow: hidden; }

/* ============================================================
   Contact — photo hero + icon columns
   ============================================================ */
.contact-hero {
  position: relative;
  background: #33465f url('/assets/images/sky-geese.jpg') center/cover no-repeat;
  color: #fff;
  padding: calc(var(--header-h) + 40px) 0 70px;
  min-height: 620px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}
.contact-hero__title {
  color: rgba(255,255,255,.85);
  font-family: 'Dosis', Arial, sans-serif;
  font-weight: 600;
  font-size: 34px;
  letter-spacing: 8px;
  margin: 0 0 auto;
}
.contact-cols {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 60px;
}
.contact-col {
  display: grid;
  grid-template-columns: 56px 1fr;
  align-items: center;
  gap: 16px;
}
.contact-col svg { width: 44px; height: 44px; color: #fff; }
.contact-col h3 {
  color: var(--orange);
  letter-spacing: 2px;
  font-size: 20px;
  margin: 0 0 4px;
}
.contact-col p { margin: 0; color: #fff; font-size: 17px; line-height: 1.5; }
.contact-col a { color: #fff; }
.contact-col a:hover { color: #fff; text-decoration: underline; }

/* Hours — centered */
.hours-section { text-align: center; padding: 60px 0; }
.hours-section .section-title { text-align: center; }
.hours-intro { max-width: 760px; margin: 0 auto 30px; color: var(--ink); }
.hours-list { margin: 0 auto; }
.hours-list dt { font-family: 'Dosis', Arial, sans-serif; font-weight: 700; margin-top: 18px; }
.hours-list dd { margin: 0; color: #595959; }

/* ============================================================
   Footer
   ============================================================ */
.site-footer {
  background: #f5f5f5;
  text-align: center;
  padding: 56px 20px 44px;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.9;
}
.site-footer img { height: 110px; width: auto; margin: 0 auto 22px; opacity: .9; }
.site-footer a { color: var(--muted); }
.site-footer a:hover { color: var(--green); }
.site-footer__copy { margin-top: 14px; }

/* ============================================================
   Thank-you (merci)
   ============================================================ */
.merci { text-align: center; max-width: 720px; margin: 0 auto; padding: 40px 0; }
.merci .check {
  width: 84px; height: 84px; margin: 0 auto 24px;
  border-radius: 50%; background: var(--green);
  display: flex; align-items: center; justify-content: center;
}
.merci .check svg { width: 44px; height: 44px; color: #fff; }

/* ============================================================
   Responsive
   ============================================================ */
@media (max-width: 980px) {
  :root { --header-h: 120px; --logo-h: 92px; }
  .site-header { position: fixed; background: #fff; box-shadow: 0 2px 10px rgba(0,0,0,.08); }
  .site-header[data-overlay="true"] { position: fixed; }
  body.home { padding-top: var(--header-h); }
  .nav-toggle {
    display: inline-flex; background: none; border: none;
    cursor: pointer; padding: 8px; color: var(--green-nav);
  }
  .nav-toggle svg { width: 30px; height: 30px; }
  .site-nav {
    position: absolute; top: var(--header-h); left: 0; right: 0;
    background: #fff; box-shadow: 0 8px 16px rgba(0,0,0,.1);
    display: none;
  }
  .site-nav.is-open { display: block; }
  .site-nav ul { flex-direction: column; gap: 0; padding: 8px 0; }
  .site-nav li { border-top: 1px solid var(--line); }
  .site-nav a { display: block; padding: 14px 20px; }
  .two-col { grid-template-columns: 1fr; gap: 28px; }
  .contact-cols { grid-template-columns: 1fr; gap: 22px; }
  .section { padding: 44px 0; }
  .section-title { font-size: 28px; letter-spacing: 5px; }
  .tagline { font-size: 24px; }
  .price-table { font-size: 14px; }
  .price-table th, .price-table td { padding: 12px 8px; }
  .tabs__tab { font-size: 14px; padding: 12px 14px; }
  .contact-hero { min-height: 0; padding: calc(var(--header-h) + 30px) 0 44px; }
}

@media (max-width: 520px) {
  :root { --header-h: 96px; --logo-h: 68px; }
  .hero { height: 60vh; min-height: 360px; }
  .contact-col { grid-template-columns: 44px 1fr; }
}
