/* Yme Dunen site theme — Bootstrap 5 companion stylesheet.
   Load AFTER bootstrap.min.css. Used by the main pages (home, schelp, oester,
   contact); the legacy de/en/links pages still use base.css. The availability
   calendar itself is styled by /widget/datewidget/datewidget.css — here we only
   style the page chrome around it. */

:root {
  /* Geist as the base typeface (self-hosted @font-face at end of this file) */
  --bs-body-font-family: 'Geist', system-ui, -apple-system, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
  --yd-cta: #008000;          /* green — reserved for the booking CTA only */
  --yd-cta-dark: #006400;     /* CTA hover */
  --yd-brown: #4f2e25;        /* brand brown — accents & tertiary buttons */
  --yd-brown-dark: #482424;   /* deepest brown — hover & link states only */
  --yd-beige: #ccb49c;        /* brand sand/beige — secondary CTA fill */
  --yd-beige-dark: #b79e83;   /* darker beige — secondary CTA hover */
  --yd-sand: #ccb49c;         /* brand sand — "bezet" legend dot */
  --yd-ink: #1f2a29;          /* headings / dark text */
  --yd-body: #3a4645;         /* body text */
  --yd-muted: #5d6a68;        /* secondary text */
  --yd-line: #eef0f3;         /* hairlines */
}

body { color: var(--yd-body); background: #fbfaf8;
  font-family: var(--bs-body-font-family); }
h1, h2, h3, h4, h5 { color: var(--yd-ink); }
/* Slightly lighter headings: semibold instead of bold. Matches Bootstrap's
   .fw-bold !important on the section headings that carry that class. */
h2.fw-bold { font-weight: 600 !important; }

/* ---------- Top navigation ---------- */
.site-nav { background: #fff; }
.site-nav .navbar-brand { display: flex; align-items: center; gap: 10px;
  font-weight: 600; color: var(--yd-ink); }
.site-nav .navbar-brand img { width: 44px; height: 44px; }
.site-nav .nav-link { color: var(--yd-body); font-weight: 500; }
.site-nav .nav-link:hover, .site-nav .nav-link.active { color: var(--yd-brown-dark); }
.site-nav .nav-link.active { font-weight: 700; }

/* Green pill button — reserved for the booking CTA only ("Boek nu",
   "Boekingsaanvraag"). Green is the single call-to-action colour on the site. */
.btn-book { display: inline-flex; align-items: center; gap: 7px;
  background: var(--yd-cta); color: #fff; border: 0; border-radius: 999px;
  padding: 9px 20px; font-weight: 600; font-size: .9rem; }
.btn-book:hover, .btn-book:focus { background: var(--yd-cta-dark); color: #fff; }
/* Beige solid — secondary CTA ("Bekijk het huisje", "Stuur e-mail"). Beige is
   light, so it carries dark brown text rather than white. */
.btn-brand { display: inline-flex; align-items: center; gap: 7px;
  background: var(--yd-beige); color: var(--yd-brown); border: 0; border-radius: 999px;
  padding: 9px 20px; font-weight: 600; font-size: .9rem; }
.btn-brand:hover, .btn-brand:focus { background: var(--yd-beige-dark); color: var(--yd-brown-dark); }
/* Brand-brown outline — tertiary actions ("Beschikbaarheid", "Contact", "Route"). */
.btn-book-outline { display: inline-flex; align-items: center; gap: 7px;
  background: transparent; color: var(--yd-brown); border-radius: 999px;
  padding: 9px 20px; font-weight: 600; font-size: .9rem; border: 0;
  box-shadow: inset 0 0 0 1px var(--yd-brown); }
.btn-book-outline:hover, .btn-book-outline:focus { background: var(--yd-brown); color: #fff; }
.btn-icon { width: 16px; height: 16px; flex: none; }

/* ---------- Hero ---------- */
.hero { position: relative; color: #fff; display: flex; align-items: center;
  min-height: 72vh; text-align: center;
  background-repeat: no-repeat; background-position: center 60%; background-size: cover;
  background-image: url("/images/hero-strand.jpg");
  background-image: -webkit-image-set(url("/images/hero-strand.webp") type("image/webp"), url("/images/hero-strand.jpg") type("image/jpeg"));
  background-image: image-set(url("/images/hero-strand.webp") type("image/webp"), url("/images/hero-strand.jpg") type("image/jpeg")); }
.hero::before { content: ""; position: absolute; inset: 0;
  background: linear-gradient(rgba(20,40,40,.25), rgba(20,40,40,.45)); }
.hero > .container { position: relative; }
.hero h1 { color: #fff; font-weight: 600; font-size: clamp(1.75rem, 4vw, 2.6rem);
  text-shadow: 0 2px 14px rgba(0,0,0,.45); }
.hero p { font-size: clamp(1rem, 2.2vw, 1.25rem); opacity: .95;
  text-shadow: 0 1px 10px rgba(0,0,0,.45); }
.hero .hero-logo { width: 180px; height: 180px; box-shadow: 0 6px 24px rgba(0,0,0,.35); }
@media (max-width: 575.98px) {
  .hero .hero-logo { width: 132px; height: 132px; }
}

/* Slim page-header hero for subpages */
.hero--page { min-height: 320px; }
.hero--page h1 { font-size: clamp(1.7rem, 4vw, 2.5rem); }

/* ---------- House cards (homepage) ---------- */
.house-card { border: 0; border-radius: 18px; overflow: hidden; height: 100%;
  box-shadow: 0 10px 34px rgba(20,40,40,.10);
  transition: transform .2s ease, box-shadow .2s ease; }
.house-card:hover { transform: translateY(-4px); box-shadow: 0 16px 40px rgba(20,40,40,.16); }
.house-card img { aspect-ratio: 16 / 9; object-fit: cover; width: 100%; height: auto; }
.house-card .card-body { padding: 24px; }
.house-card .card-title { font-weight: 600; }
.house-card .card-text { color: var(--yd-muted); }

/* ---------- Booking steps (beschikbaarheid page) ---------- */
.step { display: flex; gap: 14px; color: var(--yd-muted); }
.step a { color: var(--yd-brown-dark); }
.step-num { flex: 0 0 auto; width: 34px; height: 34px; border-radius: 50%;
  background: var(--yd-brown); color: #fff; font-weight: 700;
  display: flex; align-items: center; justify-content: center; }

/* ---------- Facts bar, amenities & info card (house pages) ---------- */
.facts { display: flex; flex-wrap: wrap; justify-content: center; gap: 10px; }
.facts .fact { background: #fff; border-radius: 999px; padding: 8px 18px;
  font-size: .88rem; font-weight: 600; color: var(--yd-ink);
  box-shadow: inset 0 0 0 1px var(--yd-line), 0 2px 10px rgba(20,40,40,.05); }
.amenity-title { color: var(--yd-brown); text-transform: uppercase;
  letter-spacing: .5px; font-size: .8rem; font-weight: 700; margin-bottom: .6rem; }
.check-list { list-style: none; margin: 0 0 1.5rem; padding: 0; }
.check-list li { position: relative; padding-left: 24px; margin-bottom: 8px; }
.check-list li::before { content: "\2713"; position: absolute; left: 0;
  color: var(--yd-brown); font-weight: 700; }
.info-card { background: #fff; border-radius: 18px; padding: 26px;
  box-shadow: 0 10px 34px rgba(20,40,40,.10); }
.info-card dl { display: grid; grid-template-columns: auto 1fr; gap: 8px 18px; margin: 0; }
.info-card dt { font-weight: 600; color: var(--yd-ink); white-space: nowrap; }
.info-card dd { margin: 0; color: var(--yd-muted); }
.info-card .info-note { margin: 18px 0 0; padding-top: 16px;
  border-top: 1px solid var(--yd-line); color: var(--yd-muted); font-size: .92rem; }

/* ---------- Guest reviews ---------- */
.review-card { background: #fff; border-radius: 18px; padding: 24px; height: 100%;
  display: flex; flex-direction: column; box-shadow: 0 10px 34px rgba(20,40,40,.10); }
.review-card blockquote { margin: 0 0 16px; font-style: italic; color: var(--yd-body); }
.review-meta { margin-top: auto; display: flex; align-items: center; gap: 10px;
  font-size: .85rem; color: var(--yd-muted); }
.review-score { background: var(--yd-brown); color: #fff; border-radius: 8px;
  font-weight: 700; font-size: .85rem; padding: 3px 9px; flex: none; }
.reviews-note { color: var(--yd-muted); font-size: .9rem; }
.site-footer .footer-review { font-style: italic; color: #cfd8d6; }
.site-footer .footer-review-meta { font-style: normal; font-size: .85rem; color: #9fb0ad; }

/* ---------- Photo gallery (house pages) ---------- */
.gallery a { display: block; border-radius: 12px; overflow: hidden; }
.gallery img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover;
  transition: transform .25s ease; }
.gallery a:hover img { transform: scale(1.04); }
.gallery-modal .carousel-item img { max-height: 82vh; width: 100%; object-fit: contain; }

/* ---------- Availability card (wraps the .datewidget) ---------- */
.av-card { width: 100%; max-width: 820px; background: #fff; border-radius: 18px;
  box-shadow: 0 10px 34px rgba(20,40,40,.10); padding: 26px 26px 20px; }
.av-foot { display: flex; flex-wrap: wrap; align-items: center; gap: 16px;
  margin-top: 20px; padding-top: 16px; border-top: 1px solid var(--yd-line); }
.av-legend { display: flex; align-items: center; gap: 7px; font-size: .82rem; color: var(--yd-muted); }
.av-dot { width: 14px; height: 14px; border-radius: 50%; display: inline-block; }
.av-dot--free { background: #fff; box-shadow: inset 0 0 0 1px #d9e0de; }
.av-dot--busy { background: var(--yd-sand); }
.av-selection { margin-left: auto; font-size: .85rem; font-weight: 600; color: var(--yd-ink); }
/* Photos + availability side by side: calendar follows while scrolling the gallery */
@media (min-width: 992px) { .av-sticky { position: sticky; top: 86px; } }

/* ---------- Contact ---------- */
.ct-map { border-radius: 18px; overflow: hidden; box-shadow: 0 10px 34px rgba(20,40,40,.10);
  background: #fff; }
.ct-map iframe { display: block; width: 100%; height: 420px; border: 0; }
.ct-summary { display: flex; flex-direction: column; gap: 2px; margin: 0 0 22px;
  padding: 14px 16px; border-radius: 12px; background: #f6f8f7; border: 1px solid var(--yd-line); }
.ct-summary-label { font-size: .72rem; text-transform: uppercase; letter-spacing: .5px;
  color: var(--yd-brown); font-weight: 700; }
.ct-summary-text { font-size: .95rem; font-weight: 600; color: var(--yd-ink); }
/* ---------- Footer ---------- */
.site-footer { background: var(--yd-ink); color: #cfd8d6; margin-top: 64px; }
.site-footer a { color: #fff; text-decoration: none; }
.site-footer a:hover { text-decoration: underline; }
.site-footer .footer-brand { display: flex; align-items: center; gap: 10px;
  color: #fff; font-weight: 600; }
.site-footer .footer-brand img { width: 40px; height: 40px; }
.site-footer h6 { color: #fff; font-weight: 700; font-size: .8rem;
  text-transform: uppercase; letter-spacing: .6px; }
.site-footer ul { list-style: none; margin: 0; padding: 0; }
.site-footer ul li { margin-bottom: 6px; }
.site-footer .footer-bottom { border-top: 1px solid rgba(255,255,255,.12);
  font-size: .8rem; color: #9fb0ad; }


/* ---------- Geist (self-hosted, latin + latin-ext) ---------- */
/* latin-ext */
@font-face {
  font-family: 'Geist';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url(/fonts/geist-gyByhwUxId8gMEwSGFWfOw.woff2) format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
/* latin */
@font-face {
  font-family: 'Geist';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url(/fonts/geist-gyByhwUxId8gMEwcGFU.woff2) format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
/* latin-ext */
@font-face {
  font-family: 'Geist';
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url(/fonts/geist-gyByhwUxId8gMEwSGFWfOw.woff2) format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
/* latin */
@font-face {
  font-family: 'Geist';
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url(/fonts/geist-gyByhwUxId8gMEwcGFU.woff2) format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
/* latin-ext */
@font-face {
  font-family: 'Geist';
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url(/fonts/geist-gyByhwUxId8gMEwSGFWfOw.woff2) format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
/* latin */
@font-face {
  font-family: 'Geist';
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url(/fonts/geist-gyByhwUxId8gMEwcGFU.woff2) format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
/* latin-ext */
@font-face {
  font-family: 'Geist';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url(/fonts/geist-gyByhwUxId8gMEwSGFWfOw.woff2) format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
/* latin */
@font-face {
  font-family: 'Geist';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url(/fonts/geist-gyByhwUxId8gMEwcGFU.woff2) format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
