/* iOS Safari tekst-autoscaling uitschakelen */
html {
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
}

/* =======================================
   CONTACT FORM STYLING
   ======================================= */

.contact-wrapper {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 3rem;
  margin-top: 2rem;
}

.contact-info {
  padding-right: 2rem;
}

.contact-info h1 {
  font-size: 2.5rem;
  font-weight: 700;
  color: #614578;
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.contact-info p {
  font-size: 1.1rem;
  line-height: 1.8;
  color: #555;
}

.contact-form-container {
  background: #f8f9fa;
  padding: 2rem;
  border-radius: 12px;
}

.form-field {
  margin-bottom: 1.5rem;
}

.form-field label {
  display: block;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: #333;
  font-size: 0.95rem;
}

.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  padding: 0.75rem;
  border: 1px solid #ddd;
  border-radius: 8px;
  font-size: 1rem;
  font-family: inherit;
  box-sizing: border-box;
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  outline: none;
  border-color: #614578;
}

.form-field select {
  background: white;
  cursor: pointer;
}

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

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.form-row .form-field {
  margin-bottom: 0;
}

.submit-btn {
  width: 100%;
  padding: 1rem;
  background: #614578;
  color: white;
  border: none;
  border-radius: 999px;
  font-size: 1.05rem;
  font-weight: 600;
  cursor: pointer;
  box-shadow: 0 8px 24px rgba(97, 69, 120, 0.3);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.submit-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(97, 69, 120, 0.4);
}

.hidden {
  display: none;
}

@media (max-width: 900px) {
  .contact-wrapper {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .contact-info {
    padding-right: 0;
  }
  
  .contact-info h1 {
    font-size: 2rem;
  }
  
  .contact-form-container {
    padding: 1.5rem;
  }
  
  .form-row {
    grid-template-columns: 1fr;
  }
}
/* =======================================
   COACH PAGE — CLEAN PERSONAL VARIANT
   ======================================= */

.coach-main {
    padding: 0 1.5rem 4rem;  /* kleinere top padding */
}

/* Hero container - breder + echt gecentreerd */
.coach-hero {
    background: #cce2df;
    padding: 3.5rem 3rem;
    margin: 0 auto 4rem auto;

    max-width: 1200px;     /* <<< BREED EN GECENTREERD */
    border-radius: 28px;

    box-shadow: 0 18px 55px rgba(0, 0, 0, 0.06);
}

/* 2 kolommen layout */
.coach-hero-inner {
    display: flex;
    gap: 4rem;
    align-items: center;
}

/* Fotokolom */
.coach-hero-left {
    flex: 0 0 240px;    /* ruimere whitespace om foto */
}

/* Foto */
.coach-photo img {
    display: block;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    object-fit: cover;
    margin: 0 auto 0.8rem auto;   /* minder ruimte onder foto */
}

/* Tekst onder foto – NIET meer gebruiken */
.coach-short-description {
    font-size: .95rem;
    line-height: 1.55;
    color: #444;
    text-align: left;
    display: none;              /* volledig verbergen */
}

/* Rechterkolom */
.coach-hero-right {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 1.4rem;
}

/* Rol-title boven naam */
.coach-role-title {
    text-transform: uppercase;
    letter-spacing: .15em;
    font-size: .75rem;
    font-weight: 600;
    opacity: .7;
    color: #614578;
    margin: 0;
}

/* Hoofdtitel */
.coach-title {
    font-size: 2.8rem;
    margin: 0;
    font-weight: 700;
    line-height: 1.15;
}

/* Desktop: alleen de desktop-titel tonen */
.coach-title--mobile {
    display: none;
}

.coach-title--desktop {
    display: block;
}

/* Intro tekst */
.coach-intro {
    font-size: 1.3rem;
    line-height: 1.8;
    color: #2d2b3f;
    max-width: 50rem;        /* balans in leesbaarheid */
}

/* CTA button */
.coach-cta-button {
    display: inline-block;
    width: auto;                /* <<< belangrijk */
    align-self: flex-start;     /* <<< voorkomt dat hij oprekt */
    padding: 0.95rem 2rem;
    background: #614578;
    color: #fff;
    border-radius: 999px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    box-shadow: 0 12px 32px rgba(97, 69, 120, 0.35);
    transition: 0.12s ease;
}

.coach-cta-button:hover {
    background: #4f3660;
    transform: translateY(-2px);
    box-shadow: 0 18px 42px rgba(79, 54, 96, 0.45);
}

/* Content-blok onder hero */
.coach-content {
    max-width: 1200px;
    margin: 0 auto 4rem auto;
}

.coach-content-inner {
    line-height: 1.8;
}

/* =======================================
   RESPONSIVE HERO
   ======================================= */

@media (max-width: 900px) {
    /* Hero onder elkaar i.p.v. 2 kolommen */
    .coach-hero-inner {
        flex-direction: column;
        text-align: left;
        gap: 0.2rem;  /* nog kleinere gap tussen alle elementen */
    }

    .coach-main {
        padding: 0 1.5rem 4rem;  /* kleinere top padding op mobiel */
    }

    /* Titel boven de foto (mobiele h1) */
    .coach-title--mobile {
        display: block;
        font-size: 2.2rem;
        text-align: center;
        margin: 0 0 0.8rem 0;
    }

    /* Desktop-titel verbergen op mobiel */
    .coach-title--desktop {
        display: none;
    }

    /* Fotokolom DAARNA (na mobile titel) */
    .coach-hero-left {
        order: 2;
        width: 100%;
        display: flex;
        justify-content: center;
        margin-bottom: -2.2rem;
    }

    .coach-photo img {
        width: 170px;
        height: 170px;
        margin: 0 auto;   /* geen ruimte onder foto meer */
    }

    /* Tekstkolom (subtitel, intro, CTA) als laatste */
    .coach-hero-right {
        order: 3;
        width: 100%;
        align-items: center;
    }

    .coach-role-title {
        margin-top: 0;        /* geen extra ruimte boven functietitel */
    }

    .coach-title {
        font-size: 2.2rem;
    }

    .coach-cta-button {
        align-self: center;
    }
}

@media (max-width: 600px) {
    .coach-hero {
        padding: 2.4rem 1.4rem;
    }
    .coach-title--mobile {
        font-size: 2rem;
    }
}

/* =======================================
   WIDE PAGE LAYOUT OVERRIDE
   ======================================= */

/* Maak de main kolom veel breder */
:root {
    --main-width: 1400px;     /* <<< hier bepaal je de breedte */
    --sidebar-width: 0px;     /* <<< geen sidebar meer gewenst */
}

/* Verwijder de grid en maak er 1 centrale column van */
body {
    display: block !important;
}

/* Header en footer volledig breed, main gecentreerd */
header,
footer {
    width: 100%;
    max-width: 100%;
    margin: 0;
    padding-left: 0;
    padding-right: 0;
}

main {
    max-width: 1500px;
    margin: 0 auto;
    padding-left: 1rem;
    padding-right: 1rem;
}

/* =======================================
   SERVICE / TEGEL GRID
   ======================================= */

.services-section {
    margin: 5rem auto 4rem;
    text-align: center;
}

.services-section-title {
    font-size: 2.1rem;
    margin-bottom: .3rem;
}

.services-section-subtitle {
    font-size: 1rem;
    margin-bottom: 2.5rem;
    color: #666;
}

/* Grid met tegels */
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
    text-align: left;
}

/* Eén tegel */
.service-card {
    background: #cce2df; 
    border-radius: 18px;
    padding: 2rem 1.8rem 1.6rem;
    box-shadow: 0 12px 30px rgba(0,0,0,0.04);
    position: relative;
    overflow: hidden;
}

.service-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 16px 38px rgba(0,0,0,0.08);
}

/* Icon bovenaan */
.service-icon {
    font-size: 2.4rem;
    margin-bottom: 1.2rem;
    display: inline-block;
    color: #d76b73; /* accentkleur */
}

/* Titel & tekst */
.service-title {
    font-weight: 700;
    margin-bottom: .6rem;
    font-size: 1.2rem;
    word-break: normal;
    overflow-wrap: normal;
    hyphens: none;
    -webkit-hyphens: none;
}

.service-text {
    line-height: 1.7;
    color: #444;
    margin-bottom: 1.4rem;
    font-size: 1.2rem;
}

/* Lees meer link */
.service-link {
    font-weight: 600;
    font-size: .95rem;
    color: #c4515c;
    text-decoration: none;
}

.service-link span {
    margin-left: .35rem;
}

/* Responsive tiles */
/* services-grid responsive: zie media queries hieronder */

/* =======================================
   HOOFDMENU / NAVBAR (DESKTOP BASIS)
   ======================================= */

.site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    background: #ffffff;
    border-bottom: 1px solid rgba(0,0,0,0.04);
}

.site-header-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0.8rem 1.75rem;
    display: flex;
    align-items: center;
    gap: 2.5rem;
}

/* Logo links */
.site-logo {
    font-weight: 700;
    font-size: 1.1rem;
    letter-spacing: .12em;
    text-transform: uppercase;
    text-decoration: none;
    color: #4b47a3;
}

.site-logo img {
    height: 75px;
    width: auto;
    display: block;
}

/* Wrapper rond het menu uit {{> menu }} */
.site-nav {
    flex: 1;
}

/* Standaard Publii menu markup: nav > ul.menu > li > a */
.site-nav nav {
    width: 100%;
}

.site-nav .menu {
    display: flex;
    gap: 1.8rem;
    list-style: none;
    margin: 0;
    padding: 0;
    justify-content: center;
}

.site-nav .menu > li > a,
.site-nav .menu > li > span {
    text-decoration: none;
    font-size: 1.15rem;       /* groter menu */
    color: #333;
    font-weight: 600;         /* dikker */
    position: relative;
    padding-bottom: .2rem;    /* iets meer ruimte onder voor de hover underline */
}

.site-nav .menu > li > a:hover {
    color: #4b47a3;
}

.site-nav .menu > li > a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0;
    height: 3px;
    background: #4b47a3;
    transition: width .15s ease;
}

.site-nav .menu > li > a:hover::after {
    width: 100%;
}

/* CTA rechts (desktop) */
.site-nav-cta {
    text-decoration: none;
    padding: 0.6rem 1.4rem;
    border-radius: 999px;
    background: #614578;
    color: #fff;
    font-weight: 600;
    font-size: .95rem;
    box-shadow: none;
    white-space: nowrap;
}

.site-nav-cta:hover {
    background: #4f3660;
}

/* =======================================
   HAMBURGER BUTTON (BASIS)
   ======================================= */

.nav-toggle {
    display: none;
    background: none;
    border: none;
    padding: 0.4rem;
    margin-left: auto;
    cursor: pointer;
}

/* De drie lijntjes */
.nav-toggle span {
    display: block;
    width: 22px;
    height: 2px;
    background: #333;
    border-radius: 999px;
    margin: 4px 0;
    transition: transform .15s ease, opacity .15s ease;
}

/* =======================================
   MOBIEL MAIL ICOON (BASIS)
   ======================================= */

.mobile-contact-icon {
    display: none; /* desktop: verborgen */
}

.mobile-contact-icon img {
    width: 22px;
    height: 22px;
    display: block;
}

/* =======================================
   NAV + ICONS — MOBIEL LAYOUT
   ======================================= */

@media (max-width: 900px) {

    /* Header rij: logo, mail, burger bovenaan */
    .site-header-inner {
        max-width: 100%;
        padding: 0.8rem 1rem;
        display: flex;
        align-items: center;
        gap: 0.75rem;
        flex-wrap: wrap; /* menu mag op 2e regel vallen */
    }

    /* Volgorde: 1 logo, 2 mail, 3 hamburger, 4 menu */
    .site-logo {
        order: 1;
        flex: 1 1 auto;  /* logo gebruikt linker ruimte */
    }

    .mobile-contact-icon {
        order: 2;
        display: flex;
        align-items: center;
        justify-content: center;
        margin-left: 0;
        background: #ffffff;
        border-radius: 12px;
        padding: 10px;
        box-shadow: 0 4px 12px rgba(0,0,0,0.12);
    }

    .nav-toggle {
        order: 3;
        display: block;
        margin-left: 0;
    }

    .site-nav {
        order: 4;
        width: 100%;
        display: none;      /* standaard verborgen */
        padding-top: 0.5rem;
    }

    .site-nav.is-open {
        display: block;     /* bij openklappen tonen */
    }

    .site-nav nav {
        width: 100%;
    }

    .site-nav .menu {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.6rem;
    }

    .site-nav .menu > li > a,
    .site-nav .menu > li > span {
        font-size: 1rem;
        padding: 0.2rem 0;
    }

    /* Desktop CTA uit op mobiel */
    .site-nav-cta {
        display: none;
    }

    /* Hamburger animatie (kruisje) */
    .nav-toggle.is-open span:nth-child(1) {
        transform: translateY(6px) rotate(45deg);
    }
    .nav-toggle.is-open span:nth-child(2) {
        opacity: 0;
    }
    .nav-toggle.is-open span:nth-child(3) {
        transform: translateY(-6px) rotate(-45deg);
    }
}

/* =======================================
   MOBILE MENU RIGHT-ALIGNED
   ======================================= */

@media (max-width: 900px) {

    /* Menu-container rechts uitlijnen */
    .site-nav.is-open {
        text-align: right;
        padding-right: 0.5rem;
    }

    /* UL rechts uitlijnen */
    .site-nav .menu {
        align-items: flex-end !important;
        text-align: right;
        width: 100%;
    }

    /* LI + links rechts uitlijnen */
    .site-nav .menu > li {
        width: 100%;
        display: flex;
        justify-content: flex-end;
    }

    .site-nav .menu > li > a,
    .site-nav .menu > li > span {
        text-align: right;
        width: auto;
        display: inline-block;
    }
}/* =======================================
   FULL-WIDTH HERO VARIANT - HOMEPAGE
   ======================================= */

/* 
   Deze styling voegt een nieuwe hero-variant toe
   naast de bestaande .coach-hero styling.
   Gebruik .coach-hero--fullwidth voor de homepage.
*/

/* Reset van standaard hero styling voor fullwidth variant */
.coach-hero.coach-hero--fullwidth {
  background: transparent;
  padding: 0;
  margin: 0 0 4rem 0; /* Grote ruimte onderaan hero */
  max-width: none;
  width: 100vw;
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
  border-radius: 0;
  box-shadow: none;
}

/* Achtergrondafbeelding container - volledig beeldvullend */
.coach-hero-background {
  position: relative;
  width: 100%;
  min-height: 600px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  border-radius: 0;
}

/* Semi-transparante overlay (gebruikt dezelfde kleur als bestaande hero) */
.coach-hero-overlay {
  position: relative;
  width: 100%;
  height: 100%;
  min-height: 600px;
  background: rgba(204, 226, 223, 0.85);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 4rem 5%;
}

/* Inner wrapper om content te centreren binnen de max-width */
.coach-hero-overlay-inner {
  width: 100%;
  max-width: 1200px;
  display: flex;
  justify-content: flex-start;
}

/* Content container - links uitgelijnd met max-width */
.coach-hero-content {
  max-width: 900px;
  text-align: left;
  color: #2d2b3f;
}

/* Kleine tekst bovenaan */
.coach-hero-pretitle {
  font-size: 0.95rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin: 0 0 1.2rem 0;
  color: #614578;
  opacity: 0.9;
}

/* H1 Grote titel */
.coach-hero-title {
  font-size: 3.5rem;
  font-weight: 700;
  line-height: 1.15;
  margin: 0 0 1.8rem 0;
  color: #2d2b3f;
  max-width: 700px;
}

/* Persoonlijke tekstblok */
.coach-hero-text {
  font-size: 1.3rem;
  line-height: 1.7;
  margin: 0 0 2.5rem 0;
  color: #2d2b3f;
  max-width: 650px;
}

.coach-hero-text p {
  margin: 0 0 0.8rem 0;
}

.coach-hero-text em {
  font-style: italic;
  font-weight: 600;
  color: #614578;
}

/* Handtekening stijl */
.coach-hero-signature {
  font-style: italic;
  font-weight: 600;
  color: #614578;
  margin-top: 0.5rem !important;
  font-size: 1.15rem;
}

/* CTA Button */
.coach-hero--fullwidth .coach-cta-button {
  display: inline-block;
  padding: 1rem 2.2rem;
  background: #614578;
  color: #fff;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1.05rem;
  box-shadow: 0 12px 32px rgba(97, 69, 120, 0.35);
  transition: 0.12s ease;
}

.coach-hero--fullwidth .coach-cta-button:hover {
  background: #4f3660;
  transform: translateY(-2px);
  box-shadow: 0 18px 42px rgba(79, 54, 96, 0.45);
}

/* =======================================
   RESPONSIVE: TABLET (onder 900px)
   ======================================= */
@media (max-width: 900px) {
  .coach-hero.coach-hero--fullwidth {
    margin-bottom: 3rem; /* Kleinere marge op tablet */
  }
  
  .coach-hero-background,
  .coach-hero-overlay {
    min-height: 520px;
  }
  
  .coach-hero-overlay {
    padding: 3rem 4%;
  }
  
  .coach-hero-pretitle {
    font-size: 0.85rem;
    margin-bottom: 1rem;
  }
  
  .coach-hero-title {
    font-size: 2.8rem;
    margin-bottom: 1.5rem;
  }
  
  .coach-hero-text {
    font-size: 1.1rem;
    margin-bottom: 2rem;
  }
  
  .coach-hero--fullwidth .coach-cta-button {
    padding: 0.95rem 2rem;
    font-size: 1rem;
  }
}

/* =======================================
   RESPONSIVE: MOBIEL (onder 600px)
   ======================================= */
@media (max-width: 600px) {
  .coach-hero.coach-hero--fullwidth {
    margin-bottom: 1rem; /* Nog kleinere marge op mobiel */
  }
  
  .coach-hero-background,
  .coach-hero-overlay {
    min-height: 500px;
  }
  
  .coach-hero-overlay {
    padding: 2.5rem 5%;
  }
  
  .coach-hero-pretitle {
    font-size: 0.8rem;
    margin-bottom: 0.8rem;
  }
  
  .coach-hero-title {
    font-size: 2.2rem;
    margin-bottom: 1.2rem;
    line-height: 1.2;
  }
  
  .coach-hero-text {
    font-size: 1.05rem;
    margin-bottom: 1.8rem;
    line-height: 1.6;
  }
  
  .coach-hero--fullwidth .coach-cta-button {
    padding: 0.9rem 1.8rem;
    font-size: 0.95rem;
  }
}

/* =======================================
   RESPONSIVE: EXTRA KLEIN (onder 400px)
   ======================================= */
@media (max-width: 400px) {
  .coach-hero-background,
  .coach-hero-overlay {
    min-height: 450px;
  }
  
  .coach-hero-overlay {
    padding: 2rem 4%;
  }
  
  .coach-hero-pretitle {
    font-size: 0.75rem;
  }
  
  .coach-hero-title {
    font-size: 1.9rem;
  }
  
  .coach-hero-text {
    font-size: 1rem;
  }
  
  .coach-hero-signature {
    font-size: 1rem;
  }
}

/* =======================================
   TYPOGRAFIE — JOST + RELAIS
   ======================================= */

/* Jost als basisfont voor alle tekst */
body {
  font-family: 'Jost', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-size: 1.2rem !important;
  background-color: #ffffff;
}

/* Override style.css die body en coach-content-inner reset naar 1rem */
.coach-content-inner {
  font-size: 1.2rem !important;
  line-height: 1.8;
}

/* Hero intro tekst groter */
.coach-intro {
  font-size: 1.3rem !important;
  line-height: 1.8;
}

/* Relais voor alle koppen en sectietitels */
h1, h2, h3, h4, h5, h6,
.coach-title,
.coach-hero-title,
.coach-role-title,
.service-title,
.site-nav .menu > li > a {
  font-family: 'Relais', sans-serif;
}

/* Sectietitels met inline font-family (Hoe ik jou kan helpen, Werkwijze, Ervaringen) */
/* font-size verhogen zodat ze groter zijn dan de body */
.coach-content-inner span[style*="font-size: 1.60181em"],
span[style*="1.60181em"] {
  font-size: 2rem !important;
}

/* Site header blijft wit */
.site-header {
  background-color: #ffffff;
}

/* Hero behoudt mintgroene achtergrond */
.coach-hero {
  background-color: #cce2df;
}

/* Footer */
.site-footer {
  background-color: #f8f7fb;
}

/* =======================================
   HOMEPAGE MOBIEL — SERVICE CARDS
   ======================================= */
@media (max-width: 1000px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr) !important;
  }
}

@media (max-width: 600px) {
  .services-grid {
    grid-template-columns: 1fr !important;
  }
}

/* =======================================
   HOMEPAGE MOBIEL — WERKWIJZE FOTO
   ======================================= */
@media (max-width: 700px) {
  .werkwijze-float-img {
    float: none !important;
    margin: 0 0 1.5rem 0 !important;
  }
  .werkwijze-float-img img {
    width: 100% !important;
    height: auto !important;
  }
  .werkwijze-content {
    flex-direction: column !important;
  }
  .werkwijze-content figure {
    flex: none !important;
    width: 100% !important;
    order: -1;
  }
  .werkwijze-content figure img {
    width: 100% !important;
    height: auto !important;
  }
}

/* =======================================
   HOMEPAGE MOBIEL — REDENEN GRID
   ======================================= */
@media (max-width: 700px) {
  .redenen-grid {
    grid-template-columns: 1fr !important;
  }
}
