/* ========================================================================
   Villa Fossen — faithful to the original Wix
   ------------------------------------------------------------------------
   Cormorant Garamond Light for headings (#333, never bordeaux, never italic)
   Mulish (Avenir-alternative) for body, justified, 14px
   Cream background, generous padding, multi-column layouts
   Buttons: 148x46, 4px border-radius
   ======================================================================== */

/* -------------------- Tokens -------------------- */
:root {
  --c-bordeaux:    #491d1d;
  --c-bordeaux-2:  #5c2828;
  --c-cream:       #fffcf7;
  --c-cream-2:     #f7f2e8;
  --c-text:        #333333;
  --c-text-soft:   #555555;
  --c-line:        rgba(51, 51, 51, 0.18);
  --c-line-soft:   rgba(51, 51, 51, 0.08);

  --f-display:     "Cormorant Garamond", "EB Garamond", Georgia, serif;
  --f-body:        "Mulish", "Nunito Sans", "Helvetica Neue", "Avenir Next", Avenir, Arial, sans-serif;

  --container:     1310px;
  --gutter:        clamp(20px, 5vw, 80px);
  --section-y:     clamp(70px, 9vw, 140px);

  --ease:          cubic-bezier(0.4, 0, 0.2, 1);
}

/* -------------------- Reset -------------------- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--c-cream);
  color: var(--c-text);
  font-family: var(--f-body);
  font-size: 14px;
  line-height: 1.4;
  font-weight: 300;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img, svg { max-width: 100%; display: block; height: auto; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; }
::selection { background: var(--c-bordeaux); color: var(--c-cream); }

/* -------------------- Typography -------------------- */
h1, h2, h3, h4, h5 {
  font-family: var(--f-display);
  font-weight: 400;
  font-style: normal;
  color: var(--c-text);
  margin: 0 0 0.5em 0;
  line-height: 1.1;
  letter-spacing: 0;
}
h1 em, h2 em, h3 em, h4 em, h5 em { font-style: normal; }

h1 { font-size: clamp(2.6rem, 5vw, 3.4rem); }   /* ~48-54px */
h2 { font-size: clamp(2.1rem, 3.4vw, 2.5rem); }  /* ~34-40px */
h3 { font-size: clamp(1.4rem, 2vw, 1.6rem); }    /* ~22-25px */

p {
  margin: 0 0 1.2em 0;
  text-align: justify;
}
p:last-child { margin-bottom: 0; }
.prose-tight p { margin-bottom: 0.8em; }

.eyebrow {
  font-family: var(--f-display);
  font-weight: 600;
  font-size: 16px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--c-text);
  margin-bottom: 1.2em;
  display: inline-block;
}

em.flourish {
  font-style: italic;
  font-family: var(--f-display);
  font-size: 1.28rem;
  display: inline-block;
  margin-top: 0.8em;
}

.text-left  p { text-align: left; }
.text-center { text-align: center; }
.text-center p { text-align: center; }

/* -------------------- Layout primitives -------------------- */
.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding-left: var(--gutter);
  padding-right: var(--gutter);
}

.section {
  padding-top: var(--section-y);
  padding-bottom: var(--section-y);
}
.section--tight { padding-top: calc(var(--section-y) * 0.55); padding-bottom: calc(var(--section-y) * 0.55); }
.section--no-bottom { padding-bottom: 0; }
.section--no-top { padding-top: 0; }

/* -------------------- Buttons -------------------- */
.btn {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  width: 148px !important;
  height: 46px !important;
  min-height: 46px !important;
  max-height: 46px !important;
  padding: 0 !important;
  border: 1px solid transparent;
  border-radius: 4px !important;
  font-family: var(--f-body) !important;
  font-size: 14px !important;
  font-weight: 400 !important;
  text-transform: none !important;
  text-decoration: none !important;
  cursor: pointer;
  transition: background 0.25s var(--ease), color 0.25s var(--ease), border-color 0.25s var(--ease);
  white-space: nowrap;
  letter-spacing: 0.06em;
  box-sizing: border-box;
}
.btn--primary {
  background: var(--c-bordeaux);
  color: var(--c-cream);
}
.btn--primary:hover { background: var(--c-bordeaux-2); }

.btn--ghost {
  background: transparent;
  color: var(--c-bordeaux);
  border: 1px solid var(--c-bordeaux);
}
.btn--ghost:hover { background: var(--c-bordeaux); color: var(--c-cream); }

.btn--ghost-light {
  background: transparent;
  color: var(--c-cream);
  border: 1px solid var(--c-cream);
}
.btn--ghost-light:hover { background: var(--c-cream); color: var(--c-bordeaux); }

/* -------------------- Navigation -------------------- */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 18px 0;
  transition: background 0.3s var(--ease), padding 0.3s var(--ease);
  background: transparent;
}
.nav--scrolled {
  background: rgba(255, 252, 247, 0.96);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  padding: 12px 0;
  border-bottom: 1px solid var(--c-line-soft);
}
.nav__inner {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 24px;
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding-left: var(--gutter);
  padding-right: var(--gutter);
}
.nav__menu {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(28px, 6vw, 80px);
  list-style: none;
  margin: 0;
  padding: 0;
}
.nav__menu a {
  display: inline-block;
  padding: 8px 4px;
  font-family: var(--f-body);
  font-size: 14px;
  font-weight: 300;
  letter-spacing: 0.1em;
  color: var(--c-cream);
  transition: color 0.2s var(--ease);
}
.nav__menu a:hover,
.nav__menu a.is-active { color: var(--c-cream); opacity: 1; }
.nav__menu a.is-active { font-weight: 400; }

/* When nav is scrolled / on light backgrounds, links go dark */
.nav--scrolled .nav__menu a { color: var(--c-text); }
.nav--light .nav__menu a { color: var(--c-text); }

.nav__right {
  display: flex;
  align-items: center;
  gap: 16px;
}

.nav__lang {
  display: flex;
  align-items: center;
  gap: 1px;
  font-family: var(--f-body);
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0.12em;
}
.nav__lang button {
  background: none;
  border: none;
  padding: 4px 6px;
  color: var(--c-cream);
  font: inherit;
  letter-spacing: inherit;
  cursor: pointer;
  opacity: 0.8;
  transition: opacity 0.2s var(--ease);
}
.nav--scrolled .nav__lang button,
.nav--light .nav__lang button { color: var(--c-text); }
.nav__lang button:hover { opacity: 1; }
.nav__lang button.is-active { opacity: 1; font-weight: 600; }
.nav__lang span { color: rgba(255, 252, 247, 0.4); }
.nav--scrolled .nav__lang span,
.nav--light .nav__lang span { color: var(--c-line); }

.nav__toggle {
  display: none;
  width: 40px; height: 40px;
  background: none;
  border: none;
  padding: 0;
  flex-direction: column;
  gap: 5px;
  align-items: center;
  justify-content: center;
}
.nav__toggle span {
  display: block;
  width: 22px; height: 1.5px;
  background: var(--c-cream);
  transition: transform 0.3s var(--ease), opacity 0.3s var(--ease), background 0.2s var(--ease);
}
.nav--scrolled .nav__toggle span,
.nav--light .nav__toggle span { background: var(--c-text); }
.nav__toggle.is-open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav__toggle.is-open span:nth-child(2) { opacity: 0; }
.nav__toggle.is-open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

@media (max-width: 880px) {
  .nav__toggle { display: flex; }
  .nav__menu, .nav__right .btn, .nav__right .nav__lang { display: none; }
  .nav__menu.is-open {
    display: flex;
    position: fixed;
    top: 64px; left: 0; right: 0;
    background: var(--c-cream);
    flex-direction: column;
    align-items: center;
    gap: 24px;
    padding: 40px 24px;
    border-bottom: 1px solid var(--c-line);
    height: calc(100vh - 64px);
    overflow-y: auto;
  }
  .nav__menu.is-open a { color: var(--c-text); font-size: 18px; }
  .nav__menu.is-open .nav__menu__cta,
  .nav__menu.is-open .nav__menu__lang { display: flex; }
  .nav__menu__cta, .nav__menu__lang { display: none; margin-top: 16px; }
  .nav__menu.is-open .nav__lang button { color: var(--c-text); }
}
@media (min-width: 881px) {
  .nav__menu__cta, .nav__menu__lang { display: none !important; }
}

/* -------------------- Hero -------------------- */
.hero {
  position: relative;
  min-height: 790px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  isolation: isolate;
  color: var(--c-cream);
  background: var(--c-text);
}
.hero__media {
  position: absolute;
  inset: 0;
  z-index: -1;
}
.hero__media img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center;
}
.hero__media::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0.18) 0%, rgba(0,0,0,0.0) 30%, rgba(0,0,0,0.0) 70%, rgba(0,0,0,0.45) 100%);
}
.hero__content {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--gutter) clamp(40px, 7vw, 80px);
}
.hero__subtitle {
  font-family: var(--f-display);
  font-weight: 400;
  font-style: normal;
  font-size: clamp(1.6rem, 3.2vw, 40px);
  line-height: 1.2;
  color: var(--c-cream);
  max-width: 640px;
  margin: 0;
  text-align: left;
  letter-spacing: normal;
}

/* Centered hero variant (used on contact page) */
.hero--centered {
  align-items: center;
  text-align: center;
}
.hero--centered .hero__media::after {
  background: rgba(0,0,0,0.35);
}
.hero--centered .hero__content {
  padding-top: 100px;
  padding-bottom: 60px;
  text-align: center;
}
.hero--centered .hero__title {
  font-family: var(--f-display);
  font-weight: 300;
  font-size: clamp(2.6rem, 5vw, 3.4rem);
  color: var(--c-cream);
  margin: 0 0 0.8em 0;
}
.hero--centered .hero__intro {
  max-width: 640px;
  margin: 0 auto 2em auto;
  font-size: 14px;
  color: var(--c-cream);
  text-align: center;
  opacity: 0.95;
}

/* -------------------- 3-column section (home: Villa Fossen) -------------------- */
.threecol {
  display: grid;
  grid-template-columns: 1fr 1.2fr 1.2fr;
  gap: clamp(40px, 5vw, 100px);
  align-items: start;
}
.threecol__head h2 { margin-bottom: 0; }
.threecol__col p { text-align: justify; }
@media (max-width: 900px) {
  .threecol { grid-template-columns: 1fr; gap: 28px; }
  .threecol__col p { text-align: left; }
}

/* -------------------- 2-column section (image + text) -------------------- */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  align-items: stretch;
}
.split__media {
  width: 100%;
  height: 100%;
  min-height: 460px;
  position: relative;
  overflow: hidden;
}
.split__media img {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
}
.split__content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(40px, 7vw, 100px) clamp(36px, 8vw, 120px);
}
.split--reverse .split__content { order: -1; }
.split__inner { max-width: 480px; }
.split__inner p { text-align: justify; }
.split__inner .btn { margin-top: 2em; }
@media (max-width: 880px) {
  .split { grid-template-columns: 1fr; }
  .split__media { min-height: 320px; }
  .split--reverse .split__content { order: 0; }
  .split__inner p { text-align: left; }
}

/* -------------------- Full-width image band -------------------- */
.bandimage {
  width: 100%;
  display: block;
}
.bandimage img {
  width: 100%;
  height: clamp(320px, 50vw, 620px);
  object-fit: cover;
  display: block;
}
.bandimage--tall img { height: clamp(380px, 60vw, 720px); }

/* -------------------- Faciliteiten icon row -------------------- */
.fac-icons {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(24px, 4vw, 60px);
  max-width: 900px;
  margin: 0 auto 2em auto;
  text-align: center;
}
.fac-icons__item { text-align: center; }
.fac-icons__icon {
  width: 64px; height: 48px;
  margin: 0 auto 14px;
  color: var(--c-text);
}
.fac-icons__icon svg { width: 100%; height: 100%; }
.fac-icons__label {
  font-family: var(--f-body);
  font-size: 13px;
  line-height: 1.5;
  color: var(--c-text);
  text-align: center;
}
@media (max-width: 700px) {
  .fac-icons { grid-template-columns: 1fr; gap: 20px; }
}

/* -------------------- Centered prose (used for omgeving's "De omgeving" header sections) -------------------- */
.prose-block {
  max-width: 760px;
  margin: 0 auto;
}
.prose-block h2 { text-align: left; margin-bottom: 0.8em; }
.prose-block p { text-align: justify; }

/* -------------------- Booking widget -------------------- */
.booking {
  background: var(--c-cream);
  text-align: center;
}
.booking__widget {
  max-width: 720px;
  margin: 32px auto 0 auto;
  background: #fff;
  padding: 32px;
  border: 1px solid var(--c-line-soft);
  border-radius: 4px;
}
@media (max-width: 600px) {
  .booking__widget { padding: 20px 14px; }
}

/* -------------------- Gallery -------------------- */
.gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
}
.gallery__item {
  position: relative;
  overflow: hidden;
  background: var(--c-cream-2);
  cursor: pointer;
  aspect-ratio: 4/3;
}
.gallery__item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease);
}
.gallery__item:hover img { transform: scale(1.04); }
.gallery__item--tall { aspect-ratio: 3/4; grid-row: span 2; }

@media (max-width: 880px) { .gallery { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 540px) { .gallery { grid-template-columns: 1fr; } .gallery__item--tall { grid-row: span 1; } }

.lightbox {
  position: fixed; inset: 0;
  background: rgba(20, 12, 8, 0.96);
  z-index: 1000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: clamp(20px, 4vw, 60px);
}
.lightbox.is-open { display: flex; }
.lightbox__img { max-width: 100%; max-height: 100%; object-fit: contain; }
.lightbox__close, .lightbox__prev, .lightbox__next {
  position: absolute;
  background: none;
  border: 1px solid rgba(255,252,247,0.4);
  color: var(--c-cream);
  width: 44px; height: 44px;
  border-radius: 4px;
  display: grid; place-items: center;
  cursor: pointer;
  transition: background 0.2s var(--ease);
}
.lightbox__close:hover, .lightbox__prev:hover, .lightbox__next:hover { background: rgba(255,252,247,0.12); }
.lightbox__close { top: 24px; right: 24px; }
.lightbox__prev  { left: 24px; top: 50%; transform: translateY(-50%); }
.lightbox__next  { right: 24px; top: 50%; transform: translateY(-50%); }
.lightbox__counter {
  position: absolute; bottom: 24px; left: 50%; transform: translateX(-50%);
  color: rgba(255,252,247,0.7);
  font-size: 12px;
  letter-spacing: 0.18em;
}

/* -------------------- Forms -------------------- */
.contact-form {
  max-width: 720px;
  margin: 0 auto;
}
.contact-form__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.contact-form__field { margin-bottom: 22px; }
.contact-form__field label {
  display: block;
  font-family: var(--f-body);
  font-size: 13px;
  font-weight: 300;
  color: var(--c-cream);
  margin-bottom: 4px;
}
.contact-form--light .contact-form__field label { color: var(--c-text); }

.contact-form__field input,
.contact-form__field textarea {
  width: 100%;
  height: 38px;
  padding: 8px 12px;
  background: rgba(255, 255, 255, 0.92);
  border: 0;
  border-radius: 0;
  font-family: var(--f-body);
  font-size: 14px;
  color: var(--c-text);
}
.contact-form__field textarea {
  height: 96px;
  resize: vertical;
  padding: 12px;
}
.contact-form__field input:focus,
.contact-form__field textarea:focus { outline: 2px solid var(--c-cream); outline-offset: 2px; background: #fff; }
.contact-form--light .contact-form__field input,
.contact-form--light .contact-form__field textarea {
  background: var(--c-cream);
  border: 1px solid var(--c-line);
}
.contact-form--light .contact-form__field input:focus,
.contact-form--light .contact-form__field textarea:focus { outline: 1px solid var(--c-bordeaux); outline-offset: 0; background: #fff; }

.contact-form__hp,
.contact-form__hp * {
  position: absolute !important;
  left: -9999px !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
  visibility: hidden !important;
  opacity: 0 !important;
  pointer-events: none !important;
}
.contact-form__submit {
  text-align: center;
  margin-top: 8px;
}
.contact-form__submit button {
  background: transparent;
  color: var(--c-cream);
  border: 0;
  font-size: 14px;
  font-family: var(--f-body);
  padding: 8px 16px;
  cursor: pointer;
  letter-spacing: 0.04em;
  transition: opacity 0.2s var(--ease);
}
.contact-form--light .contact-form__submit button { color: var(--c-text); }
.contact-form__submit button:hover { opacity: 0.7; }

.contact-form__status {
  margin-top: 12px;
  font-size: 13px;
  color: var(--c-cream);
  text-align: center;
  min-height: 1.4em;
}
.contact-form--light .contact-form__status { color: var(--c-text); }
.contact-form__status.is-error { color: #ffb0b0; }
.contact-form--light .contact-form__status.is-error { color: #b34040; }

@media (max-width: 600px) {
  .contact-form__row { grid-template-columns: 1fr; gap: 0; }
}

/* -------------------- Mini contact form (page footer, all pages) -------------------- */
.minimini {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr auto;
  gap: 24px;
  align-items: end;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--gutter);
}
.minimini__title h3 {
  font-family: var(--f-display);
  font-weight: 300;
  font-size: 25px;
  color: var(--c-bordeaux);
  margin: 0;
  line-height: 1.25;
}
.minimini__field label {
  display: block;
  font-size: 13px;
  font-weight: 300;
  color: var(--c-text);
  margin-bottom: 4px;
}
.minimini__field input {
  width: 100%;
  height: 38px;
  padding: 8px 12px;
  background: var(--c-cream);
  border: 1px solid var(--c-line);
  font-family: var(--f-body);
  font-size: 14px;
  color: var(--c-text);
}
.minimini__field input:focus { outline: 1px solid var(--c-bordeaux); background: #fff; }
.minimini__submit {
  height: 46px;
  display: flex;
  align-items: flex-end;
}
@media (max-width: 800px) {
  .minimini { grid-template-columns: 1fr; }
  .minimini__submit { display: block; margin-top: 8px; }
}

/* -------------------- Page footer (light) -------------------- */
.pagefoot {
  background: var(--c-cream);
  padding-top: clamp(60px, 8vw, 100px);
  padding-bottom: 0;
}
.pagefoot__contact {
  max-width: var(--container);
  margin: 60px auto 0 auto;
  padding: 0 var(--gutter);
  display: flex;
  align-items: center;
  gap: 28px;
}
.pagefoot__contact h4 {
  font-family: var(--f-display);
  font-weight: 600;
  font-size: 16px;
  letter-spacing: 0.1em;
  color: var(--c-text);
  text-transform: uppercase;
  margin: 0 0 12px 0;
}
.pagefoot__contact-block { display: flex; flex-direction: column; gap: 4px; }
.pagefoot__contact-block a, .pagefoot__contact-block span {
  font-size: 14px;
  color: var(--c-text);
  text-decoration: none;
}
.pagefoot__contact-block a:hover { color: var(--c-bordeaux); }
.pagefoot__social {
  display: flex;
  gap: 12px;
  margin-left: 20px;
}
.pagefoot__social a {
  width: 22px; height: 22px;
  display: grid; place-items: center;
  color: var(--c-text);
  transition: color 0.2s var(--ease);
}
.pagefoot__social a:hover { color: var(--c-bordeaux); }
.pagefoot__copy {
  max-width: var(--container);
  margin: 30px auto 0 auto;
  padding: 0 var(--gutter) 30px var(--gutter);
  font-size: 13px;
  color: var(--c-text);
}
.pagefoot__copy a { color: var(--c-text); text-decoration: underline; }

@media (max-width: 700px) {
  .pagefoot__contact { flex-direction: column; align-items: flex-start; gap: 14px; }
  .pagefoot__social { margin-left: 0; }
}

/* -------------------- Map (full width at the very bottom of every page) -------------------- */
.map {
  width: 100%;
  height: clamp(280px, 35vw, 420px);
  border: 0;
  display: block;
  filter: saturate(0.92);
}

/* -------------------- Status / 404 page -------------------- */
.status-page {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 120px var(--gutter) 80px;
  background: var(--c-cream);
}
.status-page__inner { max-width: 540px; }
.status-page__num {
  font-family: var(--f-display);
  font-weight: 300;
  font-size: clamp(5rem, 14vw, 8rem);
  color: var(--c-bordeaux);
  line-height: 1;
  margin-bottom: 12px;
}
.status-page p { text-align: center; }

/* -------------------- Print -------------------- */
@media print {
  .nav, .pagefoot, .map, .lightbox { display: none !important; }
  body { background: white; color: black; }
}

/* WIX-MATCH ADDITIONS */
.section h2, .split h2, .split h3, .threecol h2 {
  font-size: clamp(1.8rem, 3.2vw, 40px);
  line-height: 1.4;
}
@media (min-width: 900px) {
  .section h2, .split h2, .split h3 { line-height: 56px; }
}
/* split accepteert zowel .split__content als .split__body */
.split__body {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(40px, 7vw, 100px) clamp(36px, 8vw, 120px);
}
.split__body > p { text-align: justify; max-width: 480px; }
.split--reverse .split__body { order: -1; }
@media (max-width: 880px) {
  .split--reverse .split__body { order: 0; }
  .split__body > p { text-align: left; }
}
/* faciliteiten-iconenrij */
.fac-icons-row {
  display: flex;
  gap: clamp(20px, 4vw, 60px);
  flex-wrap: wrap;
  margin: 28px 0 36px;
}
.fac-icon-cell {
  display: flex;
  flex-direction: column;
  align-items: center;
  min-width: 110px;
  max-width: 160px;
}
.fac-icon-cell img { height: 54px; width: auto; object-fit: contain; }
.fac-icon-label {
  font-family: var(--f-display);
  font-style: italic;
  font-weight: 400;
  font-size: .95rem;
  color: var(--c-text);
  text-align: center;
  line-height: 1.3;
  margin-top: 10px;
}

/* ROUND-2 ADDITIONS */
/* faciliteiten-iconen als afbeelding i.p.v. svg */
.fac-icons__icon { height: auto; width: auto; }
.fac-icons__icon img { height: 54px; width: auto; display: block; margin: 0 auto; object-fit: contain; }
/* contactformulier: transparante velden zodat de foto zichtbaar blijft */
.contact-form__field input,
.contact-form__field textarea {
  background: transparent;
  border: 0;
  border-bottom: 1px solid rgba(255, 252, 247, 0.55);
  border-radius: 0;
  color: var(--c-cream);
  padding: 8px 2px;
  height: 40px;
}
.contact-form__field textarea { height: 120px; padding: 10px 2px; }
.contact-form__field input::placeholder,
.contact-form__field textarea::placeholder { color: rgba(255, 252, 247, 0.7); }
.contact-form__field input:focus,
.contact-form__field textarea:focus {
  outline: 0;
  background: transparent;
  border-bottom: 1px solid var(--c-cream);
}
.contact-form__field input:-webkit-autofill {
  -webkit-text-fill-color: var(--c-cream);
  transition: background-color 9999s ease-in-out 0s;
}

/* ROUND-3 ADDITIONS */
.split__inner .fac-icons-row { gap: 8px; margin: 16px 0 28px; justify-content: space-between; }
.split__inner .fac-icon-cell { min-width: 88px; max-width: 130px; }
.hero .contact-form__field input,
.hero .contact-form__field textarea {
  background: transparent;
  border: 0;
  border-bottom: 1px solid rgba(255, 252, 247, 0.55);
  border-radius: 0;
  color: var(--c-cream);
  padding: 8px 2px;
}
.hero .contact-form__field input:focus,
.hero .contact-form__field textarea:focus {
  outline: 0; background: transparent; border-bottom: 1px solid var(--c-cream);
}
.hero .contact-form__field input::placeholder,
.hero .contact-form__field textarea::placeholder { color: rgba(255, 252, 247, 0.7); }

/* ROUND-4 hero mobiel */
@media (max-width: 768px){ .hero { min-height: 70vh; } }

/* ROUND-6 extras padding */
.split--reverse .split__content { padding-left: clamp(44px, 9.5vw, 150px); }


/* ============================================================
   By Kiki sjabloon — aanpassingen (hover / knop / galerij)
   ============================================================ */

/* 1. Menu-item bordeaux bij hover */
.nav__menu a:hover { color: var(--c-bordeaux) !important; }
.nav--scrolled .nav__menu a:hover,
.nav--light .nav__menu a:hover { color: var(--c-bordeaux) !important; }

/* 2. Knoppen groeien mee met de tekst (geen vaste-breedte-overflow) */
.btn {
  width: auto !important;
  min-width: 148px !important;
  padding-left: 22px !important;
  padding-right: 22px !important;
}

/* 3. Galerij als masonry — geen witte gaten meer */
.gallery {
  display: block !important;
  grid-template-columns: none !important;
  column-count: 3;
  column-gap: 8px;
}
.gallery__item {
  display: block;
  break-inside: avoid;
  margin: 0 0 8px;
  width: 100%;
  grid-row: auto !important;
  grid-column: auto !important;
}
.gallery__item img { width: 100%; height: auto !important; display: block; }
@media (max-width: 900px) { .gallery { column-count: 2; } }
@media (max-width: 560px) { .gallery { column-count: 1; } }

/* ===== By Kiki — aanpassingen (hover / knop / galerij) ===== */
.nav__menu a:hover { color: var(--c-bordeaux) !important; }
.nav--scrolled .nav__menu a:hover,
.nav--light .nav__menu a:hover { color: var(--c-bordeaux) !important; }

.btn { width: auto !important; min-width: 148px !important; padding-left: 22px !important; padding-right: 22px !important; }

.gallery { display: block !important; grid-template-columns: none !important; column-count: 3; column-gap: 8px; }
.gallery__item { display: block; break-inside: avoid; margin: 0 0 8px; width: 100%; aspect-ratio: auto !important; grid-row: auto !important; grid-column: auto !important; }
.gallery__item img { width: 100%; height: auto !important; object-fit: initial !important; display: block; }
@media (max-width: 900px) { .gallery { column-count: 2; } }
@media (max-width: 560px) { .gallery { column-count: 1; } }

/* ===== By Kiki — opmaak gelijktrekken met villafossen.com ===== */

/* Knoppen in Cormorant (serif), net als op de Wix-site */
.btn { font-family: 'Cormorant Garamond', Georgia, serif !important; font-weight: 600 !important; font-size: 17px !important; letter-spacing: 0.04em !important; }

/* Tekstblokken naast een foto smaller + iets meer ruimte boven/onder */
.split__inner { max-width: 390px !important; }
.split__content { padding-top: 120px !important; padding-bottom: 120px !important; }

/* Faciliteiten: labels onder de iconen recht i.p.v. schuin */
.fac-icon-cell, .fac-icon-cell * { font-style: normal !important; }

/* "Meer informatie over" en "Zien we je daar?" iets steviger (zoals Wix) */
[data-i18n="mini.title"], [data-i18n="mini.title2"], .flourish { font-weight: 400 !important; }

/* By Kiki — correctie 2: titelruimte, knoppen, lettertype gelijk aan villafossen.com */

/* 1. Meer witruimte onder de titel in de tekstblokken (bijv. 'Tijdens je verblijf') */
.split h2 { margin-bottom: 78px !important; }

/* 2. Serif alleen op de ghost-knoppen (Travelguide / Ontdek meer); gevulde knoppen terug naar origineel */
.btn { font-family: var(--f-body) !important; font-weight: 400 !important; font-size: 14px !important; letter-spacing: 0.06em !important; }
.btn--ghost { font-family: 'Cormorant Garamond', Georgia, serif !important; font-weight: 600 !important; font-size: 17px !important; letter-spacing: 0.04em !important; }

/* 3. Lichte (dunne) Cormorant + ruimere spatiering, net als op villafossen.com */
[data-i18n="mini.title"], [data-i18n="mini.title2"] { font-weight: 300 !important; letter-spacing: 0.1em !important; }
.flourish { font-weight: 300 !important; font-size: 18px !important; }

/* By Kiki — correctie 3: lettertypes exact gelijk aan villafossen.com */

/* Alle Cormorant-titels = Light (dun), net als Wix (Koptekst 2) */
.hero__subtitle, h1, h2, h3 { font-weight: 300 !important; }

/* Ghost-knoppen (Ontdek meer / Travelguide): Cormorant Light Bold, 14px */
.btn--ghost { font-family: 'Cormorant Garamond', Georgia, serif !important; font-weight: 700 !important; font-size: 14px !important; letter-spacing: 0.04em !important; }

/* Jacuzzi meer in beeld op de bandfoto onderaan de homepagina */
img[src*="home-band-2"] { object-position: center 75% !important; }

/* ============================================================
   By Kiki — mobiel & typografie (gelijk aan villafossen.com)
   ============================================================ */

/* "Boek je verblijf" in de nav: zelfde serif als de ghost-knoppen */
.nav .btn--primary {
  font-family: 'Cormorant Garamond', Georgia, serif !important;
  font-weight: 700 !important;
  font-size: 14px !important;
  letter-spacing: 0.04em !important;
}

/* Tekst uitgevuld houden, ook op mobiel */
@media (max-width: 900px){
  .threecol__col p,
  .split__inner p,
  .split__body > p,
  .prose-block p { text-align: justify !important; }
}

/* Beginfoto (hero) langer op mobiel */
@media (max-width: 768px){
  .hero { min-height: 90vh !important; }
}

/* Nav-knop "Boek je verblijf" (bovenbalk): gewone schreefloze knop */
.nav .btn--primary {
  font-family: var(--f-body) !important;
  font-weight: 400 !important;
  font-size: 14px !important;
  letter-spacing: 0.06em !important;
}

/* "Boek je verblijf" in de tekstvakken (.split-secties): serif, net als "Vraag mogelijkheden" */
.split .btn--primary {
  font-family: 'Cormorant Garamond', Georgia, serif !important;
  font-weight: 700 !important;
  font-size: 14px !important;
  letter-spacing: 0.04em !important;
}

/* Tekstblok gecentreerd in het vlak (i.p.v. links) */
.split__inner { margin-left: auto !important; margin-right: auto !important; }
