/*
Theme Name: Flow by Melanie
Version: 1.0
Author: Leslie Buyinng
Author URI: https://nuwebs.nl
*/


/* ==========
   Tokens
   ========== */
   :root{
    --bg: #FBF7F3;
    --white: #ffffff;
    --text: #121212;
    --muted: #444;
  
    --accent: #8B5A4A;     /* Framer-like brown */
    --accent-2: #9C6349;   /* your CTA button color */
    --contact-bg: #9B6A55;
  
    --rule: rgba(0,0,0,.12);
    --stroke: rgba(0,0,0,.06);
  
    --radius: 22px;
    /* --wrap: 1160px; */
    --wrap: 1200px;
    /* --wrap: 1440px; */
  
    --shadow: 0 18px 50px rgba(0,0,0,.10);
  
    --font: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
            Roboto, Helvetica, Arial, sans-serif;
  }
  
  /* ==========
     Base
     ========== */
  *{ box-sizing: border-box; }
  
  html{ background: var(--bg);  scroll-behavior: smooth; }
  
  body{
    margin: 0;
    font-family: var(--font);
    color: var(--text);
  }
  
  img{ max-width: 100%; display: block; }
  
  .wrap{
    max-width: var(--wrap);
    margin: 0 auto;
    padding: 0 22px;
  }

  .detailText {
    font-size: 17px;
    line-height: 2em;
    color: #262626;
  }

	main ul {
		list-style: none;	
		padding-left: 18px;
	}


	main ul li {
		position: relative;
	}

	main ul li::before {
		content: "";
		position: absolute;
		left: -17px;
		top: 14px;
		width: 8px;
		height: 8px;
		border-radius: 50%;
		background: var(--accent);
	}

  .usps {
    list-style: none;
    padding-left: 0;
    color: #262626;
    line-height: 2.5rem;
  }

  .menuItem .usps {
    font-size:17px; 
  }

  /* ==========
     Header
     ========== */
  .siteHeader{
    background: var(--bg);
    padding: 10px 0;
  }
  
  .headerRow{
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 18px;
  }
  
  .logo img{
    height: auto;
    width: 180px;
    min-width: 180px;
  }
  
  .nav a{
    font-weight: 400;
    font-size: 15px;
    text-decoration: none;
    color: #2B2B2B;
    padding: 0 5px;
    padding-bottom: 8px;
    border-bottom: 2px solid transparent;
  }

  .nav a.active{
    font-weight: 700;
    color:var(--accent-2);
    border-bottom: 2px solid var(--accent-2);
  }
  
  /* ==========
     Buttons
     ========== */
  .btn{
    display: inline-flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    border-radius: 999px;
    padding: 10px 15px;
    font-size: 15px;
    font-weight: 500;
  }
  
  .btn--primary{
    background: var(--accent-2);
    color: #fff;
  }
  
  .btn--ghost{
    background: transparent;
    color: #262626;
    font-weight: 500;
  }
  
  .btn--ghost:hover{ color: #737373; }
  .btnIcon {
    display: flex;
  }
  .btnIcon .material-symbols-outlined{
    font-size: 18px;
    line-height: 1;
  }

	.home .hero h1 {
		max-width: 420px;
	}
  
  /* ==========
     Hero
     ========== */
  .hero{
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    margin: 0 auto 70px;
    padding: 18px 22px 0 22px;
  }
  
  .hero h1{
    font-size: 35px;
    font-weight: 500;
    line-height: 1.5em;
    color: #262626;
    max-width: 600px;
    margin: 16px 0 12px;
  }
  
  .hero p{
    max-width: 600px;
    font-size: 18px;
    color: var(--muted);
    font-weight: 500;
    line-height: 2em;
    margin: 0;
  }
  
  .heroActions{
    margin-top: 20px;
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    justify-content: center;
  }
  
  .heroMediaSection{
    margin-bottom: 40px;
  }
  
  .heroMedia img{
    width: 100%;
    height: auto;
    border-radius: 30px;
  }
  
  /* ==========
     Section intro
     ========== */
  .sectionIntro{
    text-align: center;
    padding: 40px 20px 60px;
    background: var(--bg);
  }
  
  .eyebrow{
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 18px;
    font-weight: 500;
    color: #1E1E1E;
    margin-bottom: 24px;
  }
  
  .eyebrow .dot{
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--accent);
  }
  
  .sectionTitle{
    margin: 0 auto;
    max-width: 820px;
    font-size: 32px;
    font-weight: 500;
    line-height: 1.15;
    color: #0E0E0E;
    letter-spacing: -0.02em;
  }
  
  /* ==========
     Services grid
     ========== */
  .servicesGrid{
    background: var(--bg);
    padding: 28px 0 48px;
  }
  
  .cards{
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
  }
  
  .card{
    background: var(--white);
    border-radius: var(--radius);
    padding: 26px 26px 22px;
    border: 1px solid var(--stroke);
    text-decoration: none;
    color: inherit;
    min-height: 228px;
  
    display: flex;
    flex-direction: column;
  }
  
  .icon{
    width: 44px;
    height: 44px;
    color: #9A6A59;
    margin-bottom: 18px;
  }
  
  .icon svg{
    width: 100%;
    height: 100%;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
  }
  
  .card h3{
    margin: 0 0 10px;
    font-size: 22px;
    font-weight: 500;
    letter-spacing: -0.01em;
    color: var(--text);
  }
  
  .card p{
    margin: 0;
    max-width: 40ch;
    color: #6A6A6A;
    font-size: 17px;
    line-height: 2em;
  }
  
  .card--cta{
    background: var(--accent);
    border-color: transparent;
  }
  
  .icon--cta{ color: rgba(255,255,255,.95); }
  
  .card--cta .ctaText{
    margin-top: auto;
    color: #fff;
    font-size: 26px;
    line-height: 1.18;
    font-weight: 600;
    letter-spacing: -0.02em;
    padding-bottom: 6px;
  }
  
  .card:hover{
    transform: translateY(-1px);
    transition: transform .12s ease, box-shadow .12s ease;
    box-shadow: 0 20px 55px rgba(0,0,0,.08);
  }
  
  .card--cta:hover{
    box-shadow: 0 22px 60px rgba(139,90,74,.35);
  }
  
  /* ==========
     Statement
     ========== */
  .statement{
    background: var(--bg);
    padding: 96px 20px;
  }
  
  .statementInner{
    max-width: 820px;
    margin: 0 auto;
    text-align: center;
  }
  
  .statementIcon{
    width: 48px;
    height: 48px;
    margin: 0 auto 32px;
    color: var(--accent);
  }
  
  .statementIcon svg{
    width: 100%;
    height: 100%;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.7;
    stroke-linecap: round;
    stroke-linejoin: round;
  }
  
  .statementText{
    margin: 0;
    font-size: 24px;
    line-height: 38px;
    color: #1E1E1E;
    letter-spacing: -0.01em;
  }
  
  /* ==========
     Menu
     ========== */
  .menuSection{
    background: var(--bg);
    padding: 40px 0 70px;
  }
  
  .menuGrid{
    display: grid;
    grid-template-columns: 1.05fr .95fr;
    gap: 48px;
    align-items: start;
  }
  
  .menuImage{
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    background: #eee;
  }
  
  .menuImage img{
    width: 100%;
    height: 730px;
    object-fit: cover;
  }
  
  .menuList{ padding-top: 10px; }
  
  .menuItem{ padding: 18px 0 22px; }
  .menuItem:first-of-type{ padding-top:0; }
  
  .menuTop{
    display: flex;
    align-items: baseline;
    gap: 16px;
  }

  .menuBottom{
    /* margin-top: 16px;
    display: flex;
    align-items: baseline;
    gap: 16px; */
    margin-top: 16px;
    display: flex;
    align-items: baseline;
    gap: 16px;
    margin-bottom: 26px;
  }

  .menuBottom:last-of-type {
    margin-bottom: 16px;
  }

  .menuBottom h4{
   font-size: 17px;
  }
  
  .menuName{
    margin: 0;
    font-size: 24px;
    font-weight: 500;
    color: var(--text);
    letter-spacing: -0.01em;
  }
  
  .menuLine{
    flex: 1;
    height: 1px;
    background: var(--rule);
    transform: translateY(-4px);
  }
  
  .menuPrice{
    font-size: 14px;
    color: #3A3A3A;
    white-space: nowrap;
  }
  
  .menuPrice strong{
    font-size: 22px;
    font-weight: 500;
    color: var(--text);
    margin-left: 6px;
  }
  
  .menuDesc{
    margin: 10px 0 0;
    max-width: 66ch;
    color: #444;
    font-size: 14px;
    line-height: 1.65;

    line-height: 2.2em;
    font-size: 17px;
  }
  
  /* ==========
     Contact
     ========== */
  .contactSection{
    background: var(--contact-bg);
    padding: 56px 20px 66px;
    color: #fff;
  }
  
  .contactWrap{
    max-width: var(--wrap);
    margin: 0 auto;
  }
  
  .contactEyebrow{
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-size: 17px;
    font-weight: 500;
    margin-bottom: 18px;
  }
  
  .contactDot{
    width: 8px;
    height: 8px;
    border-radius: 999px;
    background: #fff;
    opacity: .95;
  }
  
  .contactTitle{
    margin: 0 0 36px;
    text-align: center;
    font-size: 35px;
    font-weight: 500;
    letter-spacing: -0.02em;
  }
  
  .contactGrid{
    display: grid;
    grid-template-columns: 520px 1fr;
    gap: 56px;
    align-items: start;
    justify-content: center;
  }
  
  .contactImage{
    border-radius: var(--radius);
    overflow: hidden;
    background: rgba(255,255,255,.08);
  }
  
  .contactImage img{
    width: 100%;
    height: 520px;
    object-fit: cover;
  }
  
  .fields2{
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px 28px;
    margin-top: 4px;
  }
  
  .field{
    display: grid;
    gap: 10px;
  }
  
  .label{
    font-size: 17px;
    font-weight: 600;
  }
  
  .input{
    width: 100%;
    border: none;
    outline: none;
    background: transparent;
    color: #fff;
    font-size: 14px;
    padding: 10px 0 12px;
    border-bottom: 1px solid rgba(255,255,255,.35);
  }
  
  .input::placeholder{ color: rgba(255,255,255,.65); }
  
  .input:focus{ border-bottom-color: rgba(255,255,255,.55); }
  
  .select{
    appearance: none;
    padding-right: 28px;
    cursor: pointer;
    background-image:
      linear-gradient(45deg, transparent 50%, rgba(255,255,255,.85) 50%),
      linear-gradient(135deg, rgba(255,255,255,.85) 50%, transparent 50%);
    background-position:
      calc(100% - 14px) 55%,
      calc(100% - 8px) 55%;
    background-size: 6px 6px, 6px 6px;
    background-repeat: no-repeat;
  }
  
  .select {
    background-color: transparent;
    color: #fff;
    border-radius: 0;
  }
  
  .select option {
    color: #000; /* dropdown tekst zwart */
  }

  .textarea{
    resize: vertical;
    min-height: 130px;
  }
  
  .fieldFull{ margin-top: 26px; }
  
  .submitBtn{
    margin-top: 26px;
    background: #fff;
    color: #1a1a1a;
    border: none;
    height: 46px;
    padding: 0 22px;
    border-radius: 999px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
  }
  
  .submitBtn:hover{ filter: brightness(.96); }
  
  /* ==========
     FAQ
     ========== */
  .faqSection{
    background: var(--bg);
    padding: 86px 0 90px;
  }
  
  .faqGrid{
    display: grid;
    grid-template-columns: 1fr 1.25fr;
    gap: 80px;
    align-items: start;
  }
  
  .faqTitle{
    margin: 0;
    font-size: 48px;
    font-weight: 500;
    letter-spacing: -0.02em;
  }
  
  .faqItem{
    border-bottom: 1px solid var(--rule);
    padding: 22px 0;
  }
  
  .faqItem:first-child{ border-top: 1px solid var(--rule); }
  
  .faqQ{
    list-style: none;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    cursor: pointer;
    user-select: none;
    font-size: 20px;
    font-weight: 500;
  }
  
  .faqQ::-webkit-details-marker{ display:none; }
  
  .chev{
    width: 26px;
    height: 26px;
    border-radius: 999px;
    background: var(--accent);
    color: #fff;
    display: grid;
    place-items: center;
    font-size: 14px;
    line-height: 1;
    flex: 0 0 auto;
  }
  
  .faqA{
    margin-top: 12px;
    font-size: 17px;
    line-height: 1.7;
    color: #7A7A7A;
    max-width: 70ch;
  }
  
  .faqItem[open] .chev{ transform: rotate(180deg); }
  
  /* ==========
     Footer
     ========== */
  .footer{
    background: #ffffff;
    padding: 44px 0 60px;
    border-top: 1px solid rgba(0,0,0,.10);
    color: #141414;
  }
  
  .footerGrid{
    display: grid;
    grid-template-columns: 2.2fr 1fr 1.1fr .8fr;
    gap: 64px;
    align-items: start;
  }
  
  .footerTitle{
    margin: 0 0 18px;
    font-size: 18px;
    font-weight: 600;
  }
  
  .hours{
    margin: 0;
    display: grid;
    gap: 12px;
  }
  .hoursRow{
    display: grid;
    grid-template-columns: 110px 1fr;
    gap: 18px;
  }
  .hours dt, .hours dd{
    margin: 0;
    color: #6f6f6f;
  }
  .hours dt{ font-weight: 500; }
  
  .footerLinks{
    display: grid;
    gap: 18px;
  }
  .footerLinks a{
    color: #6f6f6f;
    text-decoration: none;
  }
  .footerLinks a:hover{ color: #141414; }
  
  .contactList{
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    gap: 18px;
  }
  .contactList li{
    display: flex;
    align-items: center;
    gap: 12px;
    color: #6f6f6f;
  }
  .contactList a{
    color: inherit;
    text-decoration: none;
  }
  .contactList a:hover{ color: #141414; }
  
  .i{
    width: 28px;
    height: 28px;
    display: grid;
    place-items: center;
    color: var(--accent);
  }
  .i svg{
    width: 18px;
    height: 18px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
  }
  
  .socials{
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
  }
  .socialBtn{
    width: 34px;
    height: 34px;
    border-radius: 10px;
    border: 1px solid rgba(0,0,0,.10);
    display: grid;
    place-items: center;
    color: #141414;
    text-decoration: none;
    background: #fff;
  }
  .socialBtn svg{
    width: 16px;
    height: 16px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
  }
  .socialBtn:hover{
    border-color: rgba(0,0,0,.16);
    transform: translateY(-1px);
    transition: transform .12s ease, border-color .12s ease;
  }
  
  /* ==========
     Responsive
     ========== */
  @media (max-width: 980px){
    .cards{ grid-template-columns: repeat(2, minmax(0, 1fr)); }
  
    .menuGrid{
      grid-template-columns: 1fr;
      gap: 28px;
    }
    .menuImage img{ height: 420px; }
  
    .contactGrid{
      grid-template-columns: 1fr;
      gap: 34px;
    }
    .contactImage img{ height: 380px; }
  
    .faqGrid{
      grid-template-columns: 1fr;
      gap: 34px;
    }
    .faqTitle{ font-size: 38px; }
  
    .footerGrid{
      grid-template-columns: 1fr 1fr;
      gap: 34px;
    }
  }
  
  @media (max-width: 680px){
    .fields2{ grid-template-columns: 1fr; }
  }
  
  @media (max-width: 640px){
    .cards{ grid-template-columns: 1fr; }
    .card{ min-height: auto; }
    .card--cta .ctaText{ font-size: 22px; }
  
    .statement{ padding: 72px 16px; }
    .statementText{ font-size: 18px; line-height: 1.65; }
  }
  
  @media (max-width: 620px){
    .footerGrid{ grid-template-columns: 1fr; }
    .hoursRow{ grid-template-columns: 120px 1fr; }
  }
  
/* =========================
   Page: Massages
   ========================= */
  
  

  /* =========================
   Pricing detail page (Massages)
   Re-uses: .menuSection, .menuGrid, .menuImage, .menuList, .menuItem, etc.
   ========================= */

.menuSection--detail .menuImage img{
  height: 700px; /* iets hoger dan home voor detailpagina */
}

/* Page head inside pricing column */
.menuPageHead{
  margin-bottom: 14px;
}

.menuPageTitle{
  margin: 6px 0 18px;
  font-size: 34px;
  font-weight: 600;
  letter-spacing: -0.01em;
  color: var(--text);
}

/* More breathing room between big blocks */
.menuItem--detail{
  padding: 22px 0 26px;
}

/* Sub price list */
.subPrices{
  margin-top: 14px;
  padding-top: 10px;
  border-top: 1px solid var(--rule);
  display: grid;
  gap: 10px;
  max-width: 560px;
}

.subPriceRow{
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 18px;
  align-items: baseline;
}

.subName{
  font-size: 14px;
  font-weight: 600;
  color: var(--text);
}

.subValue{
  font-size: 14px;
  font-weight: 600;
  color: var(--text);
  white-space: nowrap;
}

/* Note text (asterisk) */
.menuNote{
  margin: 10px 0 0;
  font-size: 13px;
  line-height: 1.65;
  color: var(--muted);
  max-width: 70ch;
}

.menuPriceHint{
  font-size: 14px;
  color: #3A3A3A;
}

/* Buttons row */
.menuActions{
  margin-top: 26px;
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

/* Responsive */
@media (max-width: 980px){
  .menuSection--detail .menuImage img{
    height: 420px;
  }
  .menuPageTitle{
    font-size: 30px;
  }
}

/* =========================
   Schoonheidsbehandelingen – inline pricing details
   (matches the home pricing component style)
   ========================= */

   .menuTop--compact{
    margin-top: 14px;
  }
  
  .menuName--sm{
    font-size: 18px;
    font-weight: 600;
  }
  
  /* List under each sub-price row */
  .priceList{
    margin: 10px 0 0;
    padding-left: 18px;
    color: var(--muted);
    font-size: 14px;
    line-height: 1.7;
    max-width: 70ch;
  }
  
  .priceList li{
    margin: 4px 0;
  }
  
  /* Spacing between facial blocks */
  .priceDetail + .priceDetail{
    margin-top: 18px;
  }
  
  /* If you still have a boxed variant somewhere, neutralize it */
  .subPrices--boxed{
    border: none !important;
    background: transparent !important;
    padding: 0 !important;
  }
  
  /* Divider (subtle like other pages) */
  .divider{
    height: 1px;
    background: var(--rule);
    margin: 18px 0 6px;
  }

  .menuTop--compact{
    margin-top: 14px;
  }
  
  .menuName--sm{
    font-size: 18px;
    font-weight: 600;
  }
  
  .priceList{
    margin: 10px 0 0;
    padding-left: 18px;
    color: var(--muted);
    font-size: 17px;
    line-height: 2em;
  }
  
  .priceList li{
    margin: 4px 0;
  }
  
  .priceDetail + .subPrices{
    margin-top: 18px;
  }

  /* Reveal on scroll */
.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 700ms ease, transform 700ms ease;
  will-change: opacity, transform;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* Optioneel: kleine vertraging per item */
.reveal[data-delay] {
  transition-delay: var(--delay, 0ms);
}

/* Respecteer gebruikers die minder animatie willen */
@media (prefers-reduced-motion: reduce) {
  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

/* =========================
   Responsive navigation
   ========================= */

   .nav {
    display: flex;
    align-items: center;
    gap: 14px;
  }
  
  /* Desktop links container */
  .navLinks {
    display: flex;
    align-items: center;
    gap: 6px;
  }
  
  /* Hamburger button (desktop hidden) */
  .navToggle {
    display: none;
    width: 44px;
    height: 44px;
    border: 1px solid rgba(0,0,0,.10);
    background: #fff;
    border-radius: 12px;
    cursor: pointer;
    place-items: center;
    background: #9c6349;
  }
  
  .navToggleBars {
    width: 18px;
    height: 2px;
    background: white;
    position: relative;
    display: block;
  }
  
  .navToggleBars::before,
  .navToggleBars::after {
    content: "";
    position: absolute;
    left: 0;
    width: 18px;
    height: 2px;
    background: white;
  }
  
  .navToggleBars::before { top: -6px; }
  .navToggleBars::after  { top:  6px; }
  
  /* Mobile layout */
  @media (max-width: 980px) {
    /* verberg desktop links, toon hamburger */
    .navLinks {
      display: none;
    }
  
    .navToggle {
      display: grid;
    }
  
    /* mobiele panel (dropdown) */
    .navLinks.is-open {
      display: grid;
      position: absolute;
      top: 90px;               /* onder je header */
      right: 22px;
      left: 22px;
      background: #9c6349;
      border: 1px solid rgba(0,0,0,.10);
      border-radius: 18px;
      padding: 14px;
      gap: 6px;
      box-shadow: 0 18px 50px rgba(0,0,0,.12);
      z-index: 2000;
    }
  
    .navLinks.is-open a {
      padding: 12px 10px;
      border-radius: 12px;
      color: white;
    }
  
    .navLinks.is-open a:hover {
      background: rgba(0,0,0,.04);
    }
  
    /* Zorg dat je header "anker" is voor absolute positioning */
    .siteHeader {
      position: sticky;
      top: 0;
      z-index: 3000;
    }
  
    .headerRow {
      position: relative;
    }
  }
  
  /* Optioneel: hamburger animatie naar X */
  .navToggle.is-open .navToggleBars {
    background: transparent;
  }
  .navToggle.is-open .navToggleBars::before {
    top: 0;
    transform: rotate(45deg);
  }
  .navToggle.is-open .navToggleBars::after {
    top: 0;
    transform: rotate(-45deg);
  }
  .navToggleBars,
  .navToggleBars::before,
  .navToggleBars::after {
    transition: transform 200ms ease, background 200ms ease, top 200ms ease;
  }
  
  @media (max-width: 1175px) {
    .siteHeader .btn {
      display: none;;
    }
  }

.wpcf7-not-valid-tip {
	color: white!important;
    font-size: 11px;
    font-weight: normal;
    display: block;
    background: #b12020;
    padding: 5px;
    border-radius: 0px 0px 10px 10px;
	position: absolute;
    width: 100%;
}

.contactSection p {
	margin-top: 0;
	margin-bottom:0;
}

.wpcf7-form.invalid .wpcf7-response-output{
	display: none;
}

.wpcf7-form.sent .wpcf7-response-output{
	background: #dfffe2;
    color: #006d0a;
    border: 1px solid #006d0a;
}

.wpcf7-spinner {display:none!important;}

.grecaptcha-badge {display:none;}