/* FIXED IMAGE COLUMN – ABOUT HEALING */
.about-img--fixed{
  position: relative;
  min-height: 100%;
  border-radius: var(--radius-lg);
  overflow: hidden;

  /* background image via CSS variable */
  background-image: var(--bg-image);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;

  /* parallax / fixed feeling */
  background-attachment: fixed;

  box-shadow: 0 16px 38px rgba(0,0,0,.18);
}
/*
Theme Name: SantaMuerte Fixed
Author: You
Version: 1.0.0
*/

:root{
  --bg: #e4e4e4;
  --tint: #bfdeeb;

  --text: #3c4f53;
  --muted: rgba(60,79,83,.75);

  --card: rgba(255,255,255,.78);   /* rustiger dan hard wit */
  --card-2: rgba(255,255,255,.55);

  --radius-lg: 28px;
  --shadow: 0 12px 32px rgba(0,0,0,.10);
}
.section--tint{
  position: relative;
}
.card{
  background: var(--card);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  padding: 28px;
  backdrop-filter: blur(6px);
}

.section--tint::before{
  content:"";
  position:absolute;
  inset: 0;
  background: linear-gradient(180deg, var(--tint), rgba(191,222,235,0));
  opacity: .75;
  pointer-events:none;
}

.section--tint > .container{
  position: relative;
}


*{ box-sizing: border-box; }
body{
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: "Ping Hebrew", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  line-height: 1.7;
}

h1,h2,h3{
  font-family: "Gilda Display", serif;
  font-weight: 400;
  letter-spacing: .02em;
  margin: 0 0 12px;
}

p{ margin: 0 0 12px; }

.container{
  width: min(1100px, calc(100% - 40px));
  margin: 0 auto;
}

.site-header{
  padding: 22px 0;
}

.brand{
  font-family: "Gilda Display", serif;
  font-size: 22px;
  letter-spacing: .02em;
}

.section{ padding: 46px 0; }

.grid-2{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 26px;
  align-items: stretch; /* DIT is de sleutel */
}

.hero .card{
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center; /* verticaal mooi uitlijnen */
}

.card{
  background: var(--card);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  padding: 28px;
}

.card--soft{
  box-shadow: none;
}

.hero{
  padding-top: 10px;
}

.hero .tag{
  text-transform: uppercase;
  letter-spacing: .25em;
  font-size: 12px;
  color: var(--muted);
  margin-bottom: 10px;
}

.hero-img, .about-img, .contact-img{
  width: 100%;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.hero-img img, .about-img img, .contact-img img{
  width: 100%;
  height: auto;
  display: block;
}

.btn{
  display: inline-block;
  padding: 10px 18px;
  border-radius: 999px;
  background: #3f4f55;
  color: #fff;
  text-decoration: none;
  font-size: 14px;
}

.center{ text-align: center; }

.section--alt{
  background: var(--bg-2);
}

.about-me{
  font-size: 15px;
}

.about-me h2{
  margin-bottom: 16px;
}

.table-wrap{
  background: rgba(255,255,255,.45);
  border-radius: var(--radius-lg);
  padding: 18px;
  overflow-x: auto;
}

table{
  width: 100%;
  border-collapse: collapse;
  min-width: 760px;
  background: rgba(255,255,255,.35);
  border-radius: 14px;
  overflow: hidden;
}

th, td{
  padding: 12px 12px;
  border-bottom: 1px solid rgba(0,0,0,.08);
  vertical-align: top;
}

th{
  text-align: left;
  font-size: 13px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--muted);
}

.form{
  display: grid;
  gap: 12px;
}

input, textarea{
  width: 100%;
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid rgba(0,0,0,.18);
  background: rgba(255,255,255,.65);
  font-family: inherit;
  font-size: 14px;
}

textarea{ min-height: 120px; resize: vertical; }

.site-footer{
  padding: 40px 0 60px;
  color: rgba(0,0,0,.6);
}

.hr{
  height: 1px;
  background: rgba(0,0,0,.25);
  margin: 18px 0;
}

/* Responsive */
@media (max-width: 900px){
  .grid-2{ grid-template-columns: 1fr; }
  table{ min-width: 620px; }
}
/* Header + menu */
.site-header{
  padding: 18px 0;
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(228,228,228,.70); /* --bg met transparantie */
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(60,79,83,.12);
}

.header-inner{
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}

.brand{
  font-family: "Gilda Display", serif;
  font-size: 20px;
  letter-spacing: .02em;
  text-decoration: none;
  color: var(--text);
  white-space: nowrap;
}

.nav-list{
  list-style: none;
  display: flex;
  gap: 18px;
  margin: 0;
  padding: 0;
  align-items: center;
}

.nav-list a{
  text-decoration: none;
  color: var(--text);
  font-size: 14px;
  letter-spacing: .06em;
  text-transform: uppercase;
  padding: 10px 12px;
  border-radius: 999px;
}

.nav-list a:hover{
  background: rgba(191,222,235,.55); /* tint */
}

/* Mobile toggle button */
.menu-toggle{
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(60,79,83,.18);
  border-radius: 14px;
  background: rgba(255,255,255,.55);
  cursor: pointer;
  padding: 10px;
}

.menu-toggle__line{
  display: block;
  height: 2px;
  background: var(--text);
  margin: 5px 0;
  border-radius: 10px;
}

.sr-only{
  position:absolute;
  width:1px;
  height:1px;
  padding:0;
  margin:-1px;
  overflow:hidden;
  clip:rect(0,0,0,0);
  white-space:nowrap;
  border:0;
}

/* Mobile menu */
@media (max-width: 860px){
  .menu-toggle{ display: inline-block; }

  .nav{
    position: absolute;
    left: 20px;
    right: 20px;
    top: 72px;
    display: none;
  }

  .nav.is-open{ display: block; }

  .nav-list{
    flex-direction: column;
    gap: 8px;
    background: rgba(255,255,255,.78);
    border: 1px solid rgba(60,79,83,.14);
    border-radius: 22px;
    box-shadow: var(--shadow);
    padding: 12px;
  }

  .nav-list a{
    width: 100%;
    text-align: center;
  }
}
/* Header + menu */
.site-header{
  padding: 14px 0;
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(228,228,228,.75); /* --bg transparant */
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(60,79,83,.12);
}

.header-inner{
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}

.brand{
  display: inline-flex;
  align-items: center;
  text-decoration: none;
}

.brand-logo{
  height: 42px;
  width: auto;
  display: block;
}

.nav{
  display: flex;
  align-items: center;
  gap: 14px;
}

.nav-list{
  list-style: none;
  display: flex;
  gap: 10px;
  margin: 0;
  padding: 0;
  align-items: center;
}

.nav-list a{
  text-decoration: none;
  color: var(--text);
  font-size: 13px;
  letter-spacing: .10em;
  text-transform: uppercase;
  padding: 10px 12px;
  border-radius: 999px;
}

.nav-list a:hover{
  background: rgba(191,222,235,.55);
}

/* CTA button */
.cta{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 16px;
  border-radius: 999px;
  background: #3c4f53;
  color: #fff;
  text-decoration: none;
  font-size: 13px;
  letter-spacing: .08em;
  text-transform: uppercase;
  box-shadow: 0 10px 22px rgba(0,0,0,.14);
}

.cta:hover{
  transform: translateY(-1px);
}

/* Mobile toggle button */
.menu-toggle{
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(60,79,83,.18);
  border-radius: 14px;
  background: rgba(255,255,255,.55);
  cursor: pointer;
  padding: 10px;
}

.menu-toggle__line{
  display: block;
  height: 2px;
  background: var(--text);
  margin: 5px 0;
  border-radius: 10px;
}

.sr-only{
  position:absolute;
  width:1px;
  height:1px;
  padding:0;
  margin:-1px;
  overflow:hidden;
  clip:rect(0,0,0,0);
  white-space:nowrap;
  border:0;
}

/* Mobile menu */
@media (max-width: 860px){
  .menu-toggle{ display: inline-block; }

  .nav{
    position: absolute;
    left: 20px;
    right: 20px;
    top: 70px;
    display: none;
    flex-direction: column;
    gap: 10px;
    align-items: stretch;
  }

  .nav.is-open{ display: flex; }

  .nav-list{
    flex-direction: column;
    gap: 6px;
    background: rgba(255,255,255,.82);
    border: 1px solid rgba(60,79,83,.14);
    border-radius: 22px;
    box-shadow: var(--shadow);
    padding: 12px;
  }

  .nav-list a{
    width: 100%;
    text-align: center;
  }

  .cta{
    width: 100%;
  }
}
.section-parallax{
  position: relative;
  padding: 80px 0;
  overflow: hidden;

  background-image: var(--bg-url);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;

  /* parallax-gevoel (werkt niet altijd op iPhone, maar bg moet sowieso zichtbaar zijn) */
  background-attachment: fixed;
}

/* overlay */
.section-parallax::before{
  content:"";
  position:absolute;
  inset:0;
  background: linear-gradient(
    180deg,
    rgba(191,222,235,.70),
    rgba(228,228,228,.70)
  );
  pointer-events:none;
}

/* content boven overlay */
.section-parallax > .container{
  position: relative;
  z-index: 1;
}

/* card iets transparanter zodat bg zichtbaar is */
.section-parallax .card{
  background: rgba(255,255,255,.78);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(60,79,83,.14);
}
/* HERO gradient card + hover special effect */
.hero-card{
  position: relative;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;

  padding: 44px 40px;
  border-radius: var(--radius-lg);

  /* zachte base */
  background: linear-gradient(135deg,
    rgba(255,255,255,.82) 0%,
    rgba(255,255,255,.72) 35%,
    rgba(255,255,255,.62) 100%
  );

  border: 1px solid rgba(60,79,83,.14);
  box-shadow: 0 16px 38px rgba(0,0,0,.12);
  overflow: hidden;

  transition: transform .35s ease, box-shadow .35s ease, border-color .35s ease;
}

/* Pink glow rechts onder + lichte tint links boven */
.hero-card::before{
  content:"";
  position:absolute;
  inset:-40%;
  background:
    radial-gradient(circle at 85% 90%, rgba(255, 153, 204, .45) 0%, rgba(255, 153, 204, 0) 55%),
    radial-gradient(circle at 20% 15%, rgba(191, 222, 235, .55) 0%, rgba(191, 222, 235, 0) 55%);
  transform: rotate(-8deg);
  opacity: .95;
  pointer-events:none;
}

/* Subtiele shimmer layer */
.hero-card::after{
  content:"";
  position:absolute;
  inset:0;
  background: linear-gradient(120deg,
    rgba(255,255,255,0) 0%,
    rgba(255,255,255,.28) 30%,
    rgba(255,255,255,0) 60%
  );
  transform: translateX(-120%);
  pointer-events:none;
}

/* Content boven de layers */
.hero-card > *{
  position: relative;
  z-index: 1;
}

/* Hover effect */
.hero-card:hover{
  transform: translateY(-4px);
  box-shadow: 0 22px 56px rgba(0,0,0,.18);
  border-color: rgba(60,79,83,.22);
}

.hero-card:hover::after{
  transform: translateX(120%);
  transition: transform .9s ease;
}

/* Button in hero card */
.btn-readmore{
  margin-top: 18px;
  align-self: flex-start;

  background: #3c4f53;
  color: #fff;
  text-decoration: none;

  border-radius: 999px;
  padding: 10px 16px;
  font-size: 13px;
  letter-spacing: .08em;
  text-transform: uppercase;

  box-shadow: 0 10px 22px rgba(0,0,0,.14);
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}

.btn-readmore:hover{
  transform: translateY(-1px);
  box-shadow: 0 14px 28px rgba(0,0,0,.18);
  background: #2f4044;
}
/* =========================
   GLOBAL IMAGE HOVER EFFECT
   ========================= */

.hero-img,
.about-img,
.contact-img{
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-lg);
  box-shadow: 0 14px 34px rgba(0,0,0,.14);
  transition: transform .35s ease, box-shadow .35s ease;
}

/* Gradient glow layer */
.hero-img::before,
.about-img::before,
.contact-img::before{
  content:"";
  position:absolute;
  inset:-40%;
  background:
    radial-gradient(circle at 85% 90%, rgba(255,153,204,.38) 0%, rgba(255,153,204,0) 55%),
    radial-gradient(circle at 20% 15%, rgba(191,222,235,.55) 0%, rgba(191,222,235,0) 55%);
  opacity: 0;
  pointer-events:none;
  transition: opacity .35s ease;
  z-index: 1;
}

/* Shimmer layer */
.hero-img::after,
.about-img::after,
.contact-img::after{
  content:"";
  position:absolute;
  inset:0;
  background: linear-gradient(
    120deg,
    rgba(255,255,255,0) 0%,
    rgba(255,255,255,.35) 35%,
    rgba(255,255,255,0) 65%
  );
  transform: translateX(-120%);
  pointer-events:none;
  z-index: 2;
}

/* Image itself */
.hero-img img,
.about-img img,
.contact-img img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .45s ease;
}

/* Hover state */
.hero-img:hover,
.about-img:hover,
.contact-img:hover{
  transform: translateY(-4px);
  box-shadow: 0 22px 52px rgba(0,0,0,.22);
}

.hero-img:hover::before,
.about-img:hover::before,
.contact-img:hover::before{
  opacity: 1;
}

.hero-img:hover::after,
.about-img:hover::after,
.contact-img:hover::after{
  transform: translateX(120%);
  transition: transform .9s ease;
}

.hero-img:hover img,
.about-img:hover img,
.contact-img:hover img{
  transform: scale(1.04);
}
/* ================================
   ABOUT IMAGE – CONTROLLED & CENTERED
   ================================ */

.about-img--fixed{
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-lg);

  /* ⛔️ dit was het probleem: te agressieve cover */
  background-image: var(--bg-image);
  background-repeat: no-repeat;

  /* ✅ DIT is de sleutel */
  background-size: contain;        /* niet cover */
  background-position: 58% 50%;
  background-color: #e4e4e4;       /* vult lege ruimte subtiel */

  /* hoogte volgt kolom */
  width: 100%;
  height: 100%;

  box-shadow: 0 16px 38px rgba(0,0,0,.18);
  transition:
    background-size .5s ease,
    box-shadow .35s ease;
}




