@import url("https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&family=Cormorant+Garamond:wght@500;600;700&family=Manrope:wght@500;600;700&display=swap");

:root {
  --bg: #f6f3ee;
  --surface: rgba(255, 255, 255, 0.78);
  --surface-strong: #ffffff;
  --text: #304238;
  --text-soft: #5e6f67;
  --heading: #26352d;
  --primary: #7fa07f;
  --primary-dark: #678567;
  --accent: #dfe9df;
  --border: rgba(73, 99, 82, 0.14);
  --shadow: 0 18px 50px rgba(34, 49, 40, 0.08);
  --shadow-soft: 0 10px 30px rgba(34, 49, 40, 0.06);
  --radius: 24px;
  --radius-sm: 16px;
  --container: 1280px;
  --transition: 0.3s ease;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html,
body {
  overflow-x: clip;
  scroll-behavior: smooth;
}

body {
  background:
    radial-gradient(circle at top left, rgba(167, 200, 191, 0.18), transparent 35%),
    linear-gradient(180deg, #f8f6f2 0%, #f3f1eb 100%);
  color: var(--text);
  font-family: "Inter", sans-serif;
  font-size: 16px;
  line-height: 1.8;
  letter-spacing: 0.01em;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: var(--primary-dark);
  text-decoration: none;
  transition: var(--transition);
}

a:hover {
  color: var(--primary);
}

.white_space {
  height: 30px;
  width: 100%;
}

.tab {
  margin-left: 10px;
}

.fas {
  color: var(--primary);
}

/* NAVBAR */
#navbar {
  position: sticky;
  top: 0;
  z-index: 999;
  max-width: var(--container);
  margin: 20px auto 0 auto;
  padding: 1rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: rgba(255, 255, 255, 0.84);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border: 1px solid rgba(255, 255, 255, 0.65);
  box-shadow: var(--shadow-soft);
  /* border-radius: 22px; */
}

.logo {
  display: flex;
  align-items: center;
  height: auto;
}

.logo img {
  min-width: 99px;
  max-width: 360px;
  width: 100%;
}

.navbar_links ul {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  list-style: none;
}

.navbar_links li {
  white-space: nowrap;
}

.navbar_links li a {
  position: relative;
  display: block;
  padding: 0.95rem 1rem;
  color: #55655d;
  font-family: "Manrope", sans-serif;
  font-size: 0.96rem;
  font-weight: 600;
  border-radius: 999px;
  transition: var(--transition);
}

.navbar_links li a:hover {
  color: var(--heading);
  background: rgba(127, 160, 127, 0.1);
}

.navbar_links li a::after {
  content: "";
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 10px;
  height: 2px;
  background: var(--primary);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 300ms ease;
}

.navbar_links li a:hover::after,
.navbar_links li a:focus::after {
  transform: scaleX(1);
}

.active_link {
  color: var(--heading) !important;
  background: rgba(127, 160, 127, 0.14);
}

/* HERO */

.banner_img {
  position: relative;
  width: 100%;
  min-height: 60vh;

  background-image: url("../img/bg-foto.png");
  background-size: cover;
  background-position: center;

  display: flex;
  align-items: flex-end;
  padding: 3rem;

  /* border-radius: 0px 0px 60px 60px; alleen onderkant afgerond */
  overflow: hidden;
  max-width: var(--container);
  margin: 0 auto 0 auto;

  border-bottom-left-radius: 30% 20px;
  border-bottom-right-radius: 70% 20px;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(26, 38, 31, 0.64) 0%, rgba(26, 38, 31, 0.34) 40%, rgba(26, 38, 31, 0.12) 100%),
    linear-gradient(180deg, rgba(0, 0, 0, 0.06) 0%, rgba(0, 0, 0, 0.22) 100%);
}

.hero-curve {
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 100%;
  height: 120px;
  overflow: hidden;
  line-height: 0;
}

.hero-curve svg {
  width: 100%;
  height: 100%;
  display: block;
}

.hero-curve path {
  fill: #f6f3ee; /* zelfde als je body background */
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 720px;
  color: #fff;
}

.hero-eyebrow {
  display: inline-flex;
  margin-bottom: 1rem;
  padding: 0.4rem 0.85rem;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(8px);
  font-family: "Manrope", sans-serif;
  font-size: 0.82rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.banner_img h1 {
  color: #fff;
  font-family: "Cormorant Garamond", serif;
  font-weight: 600;
  font-size: clamp(2.8rem, 5vw, 5rem);
  line-height: 1.1;
  letter-spacing: -0.03em;
  margin-bottom: 1.25rem;
}

.hero-content p {
  max-width: 620px;
  font-size: 1.08rem;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.9);
}

.hero-actions {
  margin-top: 2rem;
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.button {
  border: none;
  text-decoration: none;
  font-family: "Manrope", sans-serif;
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.01em;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.95rem 1.4rem;
  border-radius: 999px;
  transition: var(--transition);
}

.button-primary {
  background: #ffffff;
  color: var(--heading);
}

.button-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.16);
}

.button-secondary {
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.24);
  backdrop-filter: blur(8px);
}

.button-secondary:hover {
  background: rgba(255, 255, 255, 0.18);
}

.banner-credit {
  position: absolute;
  right: 20px;
  bottom: 18px;
  z-index: 2;
  padding: 0.6rem 0.85rem;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(10px);
}

.banner-credit p,
.banner-credit a {
  color: rgba(255, 255, 255, 0.92);
  font-size: 0.78rem;
  line-height: 1.4;
}

/* GENERAL SECTION */
.section {
  padding: 5.5rem 1.5rem 0 1.5rem;
}

.container_content,
.container_content2,
.container_overmij {
  max-width: var(--container);
  margin: 0 auto;
}

.container_content {
  display: flex;
  gap: 2rem;
  width: 100%;
}

.card-section {
  background: var(--surface);
  border: 1px solid rgba(255, 255, 255, 0.7);
  box-shadow: var(--shadow-soft);
  backdrop-filter: blur(12px);
  border-radius: 30px;
  padding: 3rem;
}

.home_content {
  width: 100%;
}

.section-kicker {
  display: inline-block;
  margin-bottom: 0.7rem;
  color: var(--primary-dark);
  font-family: "Manrope", sans-serif;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.section-title,
h2 {
  color: var(--heading);
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(2rem, 3vw, 3.2rem);
  line-height: 1.05;
  letter-spacing: -0.02em;
  font-style: normal;
  margin-bottom: 1.25rem;
}

.home_content p {
  color: var(--text-soft);
  margin-bottom: 1rem;
  max-width: 920px;
}

h1 {
  color: var(--heading);
}

/* QUOTE */
.quote-section {
  padding: 2rem 1.5rem 0 1.5rem;
}

.wrapper {
  max-width: 900px;
  margin: 0 auto;
  min-height: 220px;
  background: linear-gradient(135deg, #a7c8bf 0%, #94b8ad 100%);
  color: #fff;
  border-radius: 30px;
  box-shadow: var(--shadow-soft);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  text-align: center;
  padding: 2rem;
}

.quote-full {
  width: 100%;
  margin: 4rem 0;

  background: linear-gradient(
    135deg,
    #6f8f6f 0%,
    #5f7f5f 100%
  );

  color: white;
  text-align: center;

  padding: 3rem 1.5rem;

  /* geen rounded corners */
  border-radius: 0;

  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

.quote-full p {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-style: italic;
  letter-spacing: 0.02em;
  opacity: 0.95;
}

.wrapper h2 {
  color: #fff;
  margin: 0;
  font-size: clamp(2rem, 4vw, 3rem);
}

/* CONTENT SPLIT */
.content-split {
  align-items: center;
  gap: 3rem;
}

.image-card {
  flex: 1 1 40%;
  border-radius: 28px;
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  min-height: 100%;
}

.image-card img {
  width: 100%;
  height: 100%;
  min-height: 460px;
  object-fit: cover;
}

.content-panel {
  flex: 1 1 60%;
  padding: 0;
}

/* OLD/OTHER SECTIONS */
.content {
  height: 500px;
}

.img_content {
  box-shadow: var(--shadow-soft);
  margin: 2rem 0;
  height: fit-content;
  width: fit-content;
  border-radius: 20px;
  overflow: hidden;
}

.text-overmij {
  width: 45%;
}

.corona_col {
  height: 620px;
  flex-basis: 20%;
  margin-top: 2rem;
  margin-left: 5rem;
  margin-right: 5rem;
  background-color: #e4dede;
}

.corona_description {
  margin: 0px 20px;
}

.corona_list {
  list-style-type: square;
  margin-left: 2%;
}

.corona_list li {
  padding: 5px;
}

.behandelingen_container {
  display: flex;
  flex-direction: column;
  column-gap: 2rem;
  align-items: flex-start;
}

.behandelingen_col {
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.72);
  width: 550px;
  height: fit-content;
  margin: 0 2rem;
  border-radius: 22px;
  box-shadow: var(--shadow-soft);
  overflow: hidden;
}

.behandelingen_col p {
  padding: 1rem;
}

.behandelingen_col h2 {
  color: var(--heading);
  padding: 1rem;
}

.tarieven_col {
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.72);
  width: 550px;
  margin: 1%;
  border-radius: 22px;
  box-shadow: var(--shadow-soft);
}

/* CONTACT */
.contact_col_left {
  margin-left: 5%;
  padding: 3rem 2rem;
  flex-basis: 50%;
}

.contact_col_right {
  padding: 3rem 2rem;
  flex-basis: 50%;
}

input[type="text"],
select,
textarea {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid #d4ddd5;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.8);
  color: var(--text);
  margin-top: 6px;
  margin-bottom: 16px;
  resize: vertical;
  font-family: "Inter", sans-serif;
}

input[type="submit"] {
  background-color: var(--primary-dark);
  color: white;
  padding: 14px 22px;
  border: none;
  border-radius: 999px;
  cursor: pointer;
  font-family: "Manrope", sans-serif;
  font-weight: 700;
  transition: var(--transition);
}

input[type="submit"]:hover {
  background-color: var(--primary);
}

/* FOOTER */
footer {
  margin-top: 5rem;
  background:
    linear-gradient(180deg, rgba(35, 52, 44, 0.94), rgba(35, 52, 44, 0.98)),
    url(../img/Footer.png);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  color: #f3f6f3;
  padding: 5rem 1.5rem;
}

.footer-inner {
  max-width: var(--container);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.2fr 0.9fr 1.1fr;
  gap: 2rem;
}

.col-footer {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 24px;
  padding: 2rem;
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.14);
}

.col-footer h3 {
  font-family: "Cormorant Garamond", serif;
  font-size: 2rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: #ffffff;
}

.col-footer p {
  color: rgba(255, 255, 255, 0.86);
  line-height: 1.9;
}

footer a {
  color: #d7ebd7;
}

footer a:hover {
  color: #ffffff;
}

.footer-hours {
  margin-top: 1.5rem;
}

.footer-downloads {
  margin-top: 1.5rem;
}

.footer_logo {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: center;
  margin-top: 1.5rem;
}

.footer_logo img {
  width: 130px;
  height: auto;
  object-fit: contain;
}

/* MOBILE MENU */
.toggle-btn {
  display: none;
}

.footer-modern {
  margin-top: 5rem;
  background: linear-gradient(
    180deg,
    #2f3e35 0%,
    #243129 100%
  );
  color: rgba(255,255,255,0.85);
  padding: 4rem 1.5rem 2rem 1.5rem;
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;

  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}

.footer-col h3 {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.6rem;
  margin-bottom: 1rem;
  color: white;
}

.footer-col p {
  font-size: 0.95rem;
  line-height: 1.8;
}

.footer-col a {
  color: #cfe3cf;
}

.footer-col a:hover {
  color: white;
}

.footer-logos {
  display: flex;
  gap: 1rem;
  margin-top: 1rem;
}

.footer-logos img {
  width: 80px;
  height: auto;
  opacity: 0.85;
}

.footer-bottom {
  margin-top: 3rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255,255,255,0.1);
  text-align: center;
  font-size: 0.85rem;
  opacity: 0.7;
}

/* RESPONSIVE */
@media screen and (max-width: 992px) {
  #navbar {
    /* border-radius: 20px; */
    margin:0;
    padding: 2rem;
    padding-bottom: 2rem;
    width: 100%;
  }

  .banner_img {
    height: 70vh;
    padding: 2rem;
    margin:16px;
    /* border-radius: 28px; */
  }

  .section {
    padding-left: 1rem;
    padding-right: 1rem;
  }

  .container_content,
  .container_content2 {
    flex-direction: column;
  }

  .card-section {
    padding: 2rem;
  }

  .content-split {
    gap: 2rem;
  }

  .image-card img {
    min-height: 320px;
  }

  .footer-inner {
    grid-template-columns: 1fr;
  }

  .logo img {
    max-width: 280px;
  }

  .navbar_links li a {
    padding: 0.8rem 0.85rem;
    font-size: 0.92rem;
  }
}

/*Mobiel*/
@media screen and (max-width: 768px) {
  img {
    height: auto !important;
  }

  .container_overmij {
    flex-direction: row;
    margin: 1rem 1rem;
  }

  .container_behandelingen,
  .container_tarieven {
    flex-direction: column;
    align-items: center;
    margin: 1rem 2rem;
  }

  .img_content {
    margin: 1rem;
  }

  .home_content {
    line-height: 1.9;
    margin-left: 0;
  }

  .logo img {
    max-width: 240px;
    padding: 0;
  }

 .banner_img {
    min-height: 44vh;
    padding: 1.5rem;
    margin: 0;
    width: 100%;

    background-size: cover;
    background-position: 62% center; /* schuift focus iets naar rechts/links */
    background-repeat: no-repeat;

    align-items: flex-end;

    border-bottom-left-radius: 40% 18px;
    border-bottom-right-radius: 40% 18px;
  }

  .hero-content {
    max-width: 100%;
  }

  .banner_img h1 {
    font-size: clamp(2.2rem, 9vw, 3.2rem);
    line-height: 1.05;
  }

  .hero-content p {
    font-size: 0.98rem;
    line-height: 1.6;
    max-width: 100%;
  }

  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .button {
    width: 100%;
  }

  .banner-credit {
    left: 16px;
    right: 16px;
    bottom: 16px;
  }

 #navbar {
    position: relative;
    padding: 1rem;
    display: block;
  }

  .navbar-top {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 64px;
    width: 100%;
  }

  .logo img {
    max-width: 240px;
    padding: 0;
  }

  .toggle-btn {
    display: block;
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 30px;
    height: 24px;
    cursor: pointer;
    z-index: 1001;
  }

  .toggle-btn .btn-line {
    position: absolute;
    left: 0;
    width: 100%;
    height: 3px;
    border-radius: 999px;
    background: var(--primary-dark);
    transition: transform 0.35s ease, opacity 0.25s ease;
    transform-origin: center;
  }

  .toggle-btn .btn-line:nth-child(1) {
    transform: translateY(0);
  }

  .toggle-btn .btn-line:nth-child(2) {
    transform: translateY(10px);
  }

  .toggle-btn .btn-line:nth-child(3) {
    transform: translateY(20px);
  }

  .toggle-btn.close .btn-line:nth-child(1) {
    transform: translateY(10px) rotate(45deg);
  }

  .toggle-btn.close .btn-line:nth-child(2) {
    opacity: 0;
  }

  .toggle-btn.close .btn-line:nth-child(3) {
    transform: translateY(10px) rotate(-45deg);
  }

  .navbar_links {
    width: 100%;
    display: none;
    padding-top: 0.75rem;
  }

  .navbar_links.active {
    display: block;
  }

  #navbar .navbar_links ul {
    display: flex;
    flex-direction: column;
    width: 100%;
    margin: 0;
    padding: 0.5rem 0 1rem 0;
    gap: 0.25rem;
  }

  .navbar_links li {
    width: 100%;
    margin-left: 0;
  }

  .navbar_links li a {
    width: 100%;
    color: var(--heading);
    background: rgba(127, 160, 127, 0.08);
    border-radius: 14px;
    text-align: left;
  }


  #navbar li a:hover {
    background-color: rgba(127, 160, 127, 0.16);
    color: var(--heading);
  }

  .navbar_links li a:hover::after,
  .navbar_links li a:focus::after {
    transform: scale(0);
  }

  .container_content,
  .container_content2 {
    margin: 0;
  }

  .behandelingen_col {
    padding: 1rem;
    width: 100%;
    margin: 0;
  }

  iframe {
    width: 100%;
    height: 300px;
  }

  footer {
    padding: 3rem 1rem;
  }

  .col-footer {
    padding: 1.5rem;
  }

  .footer_logos {
    margin-top: 2rem !important;
    justify-content: center;
  }

    .footer-inner {
    grid-template-columns: 1fr;
    text-align: left;
  }
}

/* PAGE HERO SMALL */
.page-hero {
  position: relative;
  width: 100%;
  min-height: 48vh;
  margin-top: 20px;
  background-image: url("../img/hero-mountains.png");
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}

.page-hero-small {
  border-radius: 0 0 56px 56px;
}

.page-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(26, 38, 31, 0.18) 0%,
    rgba(26, 38, 31, 0.46) 100%
  );
}

.page-hero-content {
  position: relative;
  z-index: 2;
  max-width: 1280px;
  width: 100%;
  margin: 0 auto;
  padding: 0 1.5rem 3rem 1.5rem;
  color: white;
}

.page-hero-content h1 {
  color: white;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(3rem, 5vw, 4.8rem);
  line-height: 1;
  margin-bottom: 0.8rem;
}

.page-hero-content p {
  max-width: 650px;
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.05rem;
}

/* ABOUT LAYOUT */
.about-layout {
  align-items: stretch;
  gap: 2.5rem;
}

.about-image-card {
  flex: 0 0 420px;
  border-radius: 28px;
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  background: #fff;
}

.about-image-card img {
  width: 100%;
  height: 100%;
  min-height: 520px;
  object-fit: cover;
}

.about-content-card {
  flex: 1;
  background: var(--surface);
  border: 1px solid rgba(255, 255, 255, 0.7);
  box-shadow: var(--shadow-soft);
  backdrop-filter: blur(12px);
  border-radius: 30px;
  padding: 3rem;
}

.about-story-card {
  width: 100%;
}

.about-text-columns {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}

.about-text-columns p:last-child {
  margin-bottom: 0;
}

/* VALUES */
.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.value-card {
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(255, 255, 255, 0.72);
  box-shadow: var(--shadow-soft);
  border-radius: 24px;
  padding: 2rem;
}

.value-number {
  display: inline-block;
  margin-bottom: 1rem;
  font-family: "Manrope", sans-serif;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  color: var(--primary-dark);
}

.value-card h3 {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.9rem;
  line-height: 1.1;
  color: var(--heading);
  margin-bottom: 0.75rem;
}

.value-card p {
  color: var(--text-soft);
  margin-bottom: 0;
}

/* FULL WIDTH QUOTE */
.quote-full {
  width: 100%;
  margin: 4rem 0 0 0;
  background: linear-gradient(135deg, #6f8f6f 0%, #5f7f5f 100%);
  color: white;
  text-align: center;
  padding: 3rem 1.5rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.quote-full p {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-style: italic;
  letter-spacing: 0.02em;
  opacity: 0.96;
}

/* RESPONSIVE */
@media (max-width: 992px) {
  .about-layout {
    flex-direction: column;
  }

  .about-image-card {
    flex: auto;
  }

  .about-image-card img {
    min-height: 380px;
  }

  .about-text-columns {
    grid-template-columns: 1fr;
  }

  .values-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .page-hero {
    min-height: 38vh;
  }

  .page-hero-small {
    border-radius: 0 0 36px 36px;
  }

  .page-hero-content {
    padding: 0 1rem 2rem 1rem;
  }

  .about-content-card {
    padding: 2rem 1.5rem;
  }

  .quote-full {
    padding: 2.2rem 1rem;
  }
}

.openingstijden {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 6px 20px;
  margin-top: 1rem;
  font-size: 0.95rem;
}

.openingstijden div:nth-child(odd) {
  color: rgba(255,255,255,0.7);
}

.openingstijden div:nth-child(even) {
  text-align: right;
  color: #fff;
}

.opening-note {
  margin-top: 1rem;
  font-size: 0.85rem;
  opacity: 0.7;
}

/* KLEINERE HERO VOOR SUBPAGINA */

/* OVER MIJ FOTO */
.overmij-split {
  align-items: stretch;
}

.overmij-photo-card {
  flex: 0 0 420px;
  max-width: 420px;
}

.overmij-photo-card img {
  width: 100%;
  height: 100%;
  min-height: 520px;
  object-fit: cover;
  object-position: left center;
}

/* OPENINGSTIJDEN */
.openingstijden {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 6px 20px;
  margin-top: 1rem;
  font-size: 0.95rem;
}

.openingstijden div:nth-child(odd) {
  color: rgba(255,255,255,0.72);
}

.openingstijden div:nth-child(even) {
  text-align: right;
  font-weight: 600;
  color: #ffffff;
}

.opening-note {
  margin-top: 1rem;
  font-size: 0.85rem;
  opacity: 0.72;
}

/* RESPONSIVE */
@media screen and (max-width: 992px) {
  .overmij-photo-card {
    flex: 1 1 100%;
    max-width: 100%;
  }

  .overmij-photo-card img {
    min-height: 420px;
    object-position: left top;
  }
}

@media screen and (max-width: 768px) {
  .banner_img-small {
    min-height: 42vh;
    border-radius: 0 0 34px 34px;
  }

  .overmij-photo-card img {
    min-height: 320px;
  }

  .openingstijden {
    grid-template-columns: 1fr auto;
    gap: 8px 14px;
    font-size: 0.92rem;
  }
}

.banner_img_small {
  position: relative;
  width: 100%;
  min-height: 30vh;
  color:#fff;

  background-image: url("../img/bg-foto.png");
  background-size: cover;
  background-position: center;

  display: flex;
  align-items: flex-end;
  padding: 3rem;

  /* BELANGRIJK */
  /* border-radius: 0px 0px 60px 60px; alleen onderkant afgerond */
  overflow: hidden;
  max-width: var(--container);
  margin: 0 auto 0 auto;

  border-bottom-left-radius: 30% 20px;
  border-bottom-right-radius: 70% 20px;
}

.banner_img_small h1 {
  color: #fff;
  font-family: "Cormorant Garamond", serif;
  font-weight: 600;
  font-size: clamp(2.8rem, 5vw, 5rem);
  line-height: 1.1;
  letter-spacing: -0.03em;
  margin-bottom: 1.25rem;
}

/* BEHANDELINGEN GRID */
.behandelingen-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 2rem;
  align-items: stretch;
}

.treatment-card {
  display: flex;
  flex-direction: column;
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(255, 255, 255, 0.72);
  box-shadow: var(--shadow-soft);
  backdrop-filter: blur(12px);
  border-radius: 30px;
  overflow: hidden;
  min-height: 100%;
}

.treatment-image {
  width: 100%;
  height: 400px;
  overflow: hidden;
}

.treatment-image img {
  width: 100%;
  height: 100%; 
  object-fit: cover;
}

.treatment-content {
  display: flex;
  flex-direction: column;
  flex: 1;
  padding: 2rem;
}

.treatment-content h2 {
  color: var(--heading);
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(2rem, 3vw, 2.5rem);
  line-height: 1.05;
  margin-bottom: 1rem;
}

.treatment-content p {
  color: var(--text-soft);
  margin-bottom: 1rem;
}

.treatment-button {
  margin-top: auto;
  align-self: flex-start;
  background: var(--primary-dark);
  color: #fff;
}

.treatment-button:hover {
  background: var(--primary);
  color: #fff;
}

/* RESPONSIVE */
@media screen and (max-width: 992px) {
  .behandelingen-grid {
    grid-template-columns: 1fr;
  }
}

@media screen and (max-width: 768px) {
  .treatment-image {
    height: 260px;
  }

  .treatment-content {
    padding: 1.5rem;
  }
}

/* TARIEVEN GRID */
.tarieven-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 2rem;
  align-items: stretch;
}

.pricing-card {
  display: flex;
  flex-direction: column;
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(255, 255, 255, 0.72);
  box-shadow: var(--shadow-soft);
  backdrop-filter: blur(12px);
  border-radius: 30px;
  overflow: hidden;
  min-height: 100%;
}

.pricing-image {
  width: 100%;
  height: 300px;
  overflow: hidden;
}

.pricing-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.pricing-content {
  display: flex;
  flex-direction: column;
  flex: 1;
  padding: 2rem;
}

.pricing-content h2 {
  color: var(--heading);
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(2rem, 3vw, 2.4rem);
  line-height: 1.05;
  margin-bottom: 1rem;
}

.pricing-content p {
  color: var(--text-soft);
  margin-bottom: 0;
}

/* DISCLAIMER */
.disclaimer-card {
  margin-bottom: 1rem;
}

/* RESPONSIVE */
@media screen and (max-width: 1100px) {
  .tarieven-grid {
    grid-template-columns: 1fr;
  }
}

@media screen and (max-width: 768px) {
  .pricing-image {
    height: 240px;
  }

  .pricing-content {
    padding: 1.5rem;
  }
}

/* CONTACT PAGE */
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: start;
}

.contact-card {
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(255, 255, 255, 0.72);
  box-shadow: var(--shadow-soft);
  backdrop-filter: blur(12px);
  border-radius: 30px;
  padding: 2rem;
}

.contact-info-card h1,
.contact-form-card h1 {
  margin-bottom: 0;
}

.contact-info-list {
  display: grid;
  gap: 1rem;
  margin-bottom: 2rem;
}

.contact-info-list p {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  color: var(--text-soft);
  margin: 0;
}

.contact-info-list i {
  color: var(--primary-dark);
  min-width: 20px;
}

.contact-note-block {
  margin-bottom: 2rem;
  padding: 1.5rem;
  background: rgba(127, 160, 127, 0.08);
  border: 1px solid rgba(127, 160, 127, 0.12);
  border-radius: 22px;
}

.contact-note-title {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.contact-note-title i {
  color: var(--primary-dark);
}

.contact-note-title h3 {
  margin: 0;
  color: var(--heading);
  font-family: "Cormorant Garamond", serif;
  font-size: 1.9rem;
}

.contact-list {
  margin: 0;
  padding-left: 1.2rem;
  color: var(--text-soft);
}

.contact-list li {
  margin-bottom: 0.75rem;
}

.contact-location-block {
  margin-bottom: 1.5rem;
}

.contact-location-block h3 {
  margin-bottom: 0.75rem;
  color: var(--heading);
  font-family: "Cormorant Garamond", serif;
  font-size: 1.9rem;
}

.contact-location-block p {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: var(--text-soft);
}

.contact-location-block i {
  color: var(--primary-dark);
}

.map-card {
  border-radius: 24px;
  overflow: hidden;
  box-shadow: var(--shadow-soft);
}

.map-card iframe {
  width: 100%;
  height: 360px;
  display: block;
  border: 0;
}

.contact-form-card form {
  display: flex;
  flex-direction: column;
}

.contact-form-card label {
  font-family: "Manrope", sans-serif;
  font-weight: 600;
  color: var(--heading);
  margin-bottom: 0.5rem;
}

.contact-form-card input[type="text"],
.contact-form-card textarea {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid #d4ddd5;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.86);
  color: var(--text);
  margin-top: 0;
  margin-bottom: 1rem;
  resize: vertical;
  font-family: "Inter", sans-serif;
}

.checkbox-row {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin: 0.25rem 0 1rem 0;
}

.checkbox-row input[type="checkbox"] {
  margin-top: 0.25rem;
  accent-color: var(--primary-dark);
}

.checkbox-row label {
  margin: 0;
  font-weight: 500;
  color: var(--text-soft);
}

.form-note {
  color: var(--text-soft);
  margin-bottom: 1.5rem;
}

.contact-form-card input[type="submit"] {
  background-color: var(--primary-dark);
  color: white;
  padding: 14px 22px;
  border: none;
  border-radius: 999px;
  cursor: pointer;
  font-family: "Manrope", sans-serif;
  font-weight: 700;
  transition: var(--transition);
  align-self: flex-start;
}

.contact-form-card input[type="submit"]:hover {
  background-color: var(--primary);
}

@media screen and (max-width: 992px) {
  .contact-layout {
    grid-template-columns: 1fr;
  }
}

@media screen and (max-width: 768px) {
  .contact-card {
    padding: 1.5rem;
    border-radius: 22px;
  }

  .map-card iframe {
    height: 300px;
  }

  .checkbox-row {
    align-items: flex-start;
  }

  .contact-form-card input[type="submit"] {
    width: 100%;
    align-self: stretch;
  }
}

/* WKKGZ / KLACHTENREGELING */
.klachtensplit {
  align-items: center;
}

.klachten-card {
  flex: 1 1 1;
}

.klachten-image-card {
  flex: 0 0 360px;
  max-width: 360px;
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(255, 255, 255, 0.72);
  box-shadow: var(--shadow-soft);
  backdrop-filter: blur(12px);
  border-radius: 30px;
  padding: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  max-height: 420px;
}

.klachten-image-card img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

@media screen and (max-width: 992px) {
  .klachten-image-card {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

@media screen and (max-width: 768px) {
  .klachten-image-card {
    padding: 1.5rem;
    border-radius: 22px;
  }
}