/* ============================================================
   Bloemen & Zo — Demo website
   Merk: #e8527a (roze accent), #f5e6eb (blush achtergrond)
   Fonts: Dancing Script (koppen), Lato (body)
   ============================================================ */

/* ── Reset & Custom Properties ─────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --pink:        #e8527a;
  --pink-dark:   #c73d62;
  --pink-light:  #f0789a;
  --blush:       #f5e6eb;
  --blush-mid:   #eedde4;
  --text-dark:   #2a1a1f;
  --text-body:   #4a3540;
  --text-muted:  #7a6470;
  --white:       #ffffff;
  --card-bg:     #fff;
  --shadow-sm:   0 2px 8px rgba(232,82,122,.10);
  --shadow-md:   0 6px 24px rgba(232,82,122,.14);
  --radius:      12px;
  --transition:  0.25s ease;
  --font-script: 'Dancing Script', cursive;
  --font-body:   'Lato', sans-serif;
  --nav-h:       72px;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.7;
  color: var(--text-body);
  background: var(--white);
  overflow-x: hidden;
}

/* ── Typography ─────────────────────────────────────────────── */
h1, h2, h3 { line-height: 1.2; color: var(--text-dark); }

.logo-script {
  font-family: var(--font-script);
  font-size: 2rem;
  color: var(--pink);
  letter-spacing: 0.02em;
}

.section-title {
  font-family: var(--font-script);
  font-size: clamp(2rem, 5vw, 2.8rem);
  color: var(--text-dark);
  margin-bottom: .5rem;
}

.section-eyebrow {
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--pink);
  margin-bottom: .4rem;
}

.section-lead {
  font-size: 1.05rem;
  color: var(--text-muted);
  max-width: 56ch;
  margin: 0 auto;
}

a { color: var(--pink); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--pink-dark); }

/* ── Layout helpers ─────────────────────────────────────────── */
.container {
  width: 100%;
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.section {
  padding: 5rem 0;
}

.blush-bg { background: var(--blush); }

.section-header {
  text-align: center;
  margin-bottom: 3rem;
}

/* ── Media fill helpers ─────────────────────────────────────── */
.media,
.img-fill,
figure.photo {
  position: relative;
  overflow: hidden;
}

.media > img,
.img-fill > img,
figure.photo > img,
.gallery img,
.card__media img,
.over__foto img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* ── Buttons ────────────────────────────────────────────────── */
.btn {
  display: inline-block;
  font-family: var(--font-body);
  font-size: .95rem;
  font-weight: 700;
  padding: .75rem 1.75rem;
  border-radius: 50px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: background var(--transition), color var(--transition), transform var(--transition), box-shadow var(--transition);
  text-align: center;
  line-height: 1.3;
}

.btn:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); }
.btn:active { transform: translateY(0); }

.btn-pink {
  background: var(--pink);
  color: var(--white);
  border-color: var(--pink);
}
.btn-pink:hover { background: var(--pink-dark); border-color: var(--pink-dark); color: var(--white); }

.btn-white-solid {
  background: var(--white);
  color: var(--pink);
  border-color: var(--white);
}
.btn-white-solid:hover { background: var(--blush); color: var(--pink-dark); }

.btn-outline-pink {
  background: transparent;
  color: var(--pink);
  border-color: var(--pink);
}
.btn-outline-pink:hover { background: var(--pink); color: var(--white); }

.btn-lg { padding: 1rem 2.5rem; font-size: 1.05rem; }

/* Hero CTA extra punch */
.hero .btn-pink {
  background: #e8527a;
  color: #ffffff;
  border: none;
  box-shadow: 0 6px 28px rgba(232,82,122,.60), 0 2px 8px rgba(0,0,0,.25);
  font-size: 1.1rem;
  padding: 1.1rem 2.8rem;
  letter-spacing: .02em;
  text-shadow: none;
}
.hero .btn-pink:hover {
  background: var(--pink-dark);
  box-shadow: 0 8px 32px rgba(232,82,122,.65), 0 4px 12px rgba(0,0,0,.3);
  transform: translateY(-3px);
}
.btn-sm { padding: .55rem 1.25rem; font-size: .88rem; }
.btn-full { width: 100%; }

/* ── Site Header ────────────────────────────────────────────── */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  height: var(--nav-h);
  background: #ffffff;
  border-bottom: 3px solid var(--pink);
  box-shadow: 0 3px 16px rgba(42,26,31,.12);
}

.site-header.is-scrolled {
  box-shadow: 0 4px 24px rgba(42,26,31,.18);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.logo {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
  color: inherit;
}

.logo-sub {
  font-size: .7rem;
  letter-spacing: .08em;
  color: var(--text-muted);
  text-transform: uppercase;
  margin-top: -2px;
}

.desktop-nav ul {
  display: flex;
  list-style: none;
  gap: 2rem;
}

.desktop-nav a {
  font-size: .9rem;
  font-weight: 700;
  color: #2a1a1f;
  letter-spacing: .03em;
  padding-bottom: 3px;
  border-bottom: 2px solid transparent;
  transition: color var(--transition), border-color var(--transition);
}

.desktop-nav a:hover {
  color: var(--pink);
  border-bottom-color: var(--pink);
}

/* ── Mobile Menu Trigger (hamburger) ───────────────────────── */
.mobile-menu__trigger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  border-radius: 8px;
  transition: background var(--transition);
}

.mobile-menu__trigger:hover { background: var(--blush); }

.hamburger-bar {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text-dark);
  border-radius: 2px;
  transition: transform var(--transition), opacity var(--transition);
}

/* Animated hamburger when open */
.mobile-menu__trigger[aria-expanded="true"] .hamburger-bar:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.mobile-menu__trigger[aria-expanded="true"] .hamburger-bar:nth-child(2) {
  opacity: 0;
}
.mobile-menu__trigger[aria-expanded="true"] .hamburger-bar:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* ── Mobile Menu Overlay (fullscreen kit) ───────────────────── */
.mobile-menu__overlay {
  position: fixed;
  inset: 0;
  width: 100vw;
  height: 100svh;
  min-height: 100vh;
  z-index: 200;
  background: var(--white);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transform: translateX(100%);
  transition: opacity .28s ease, visibility .28s ease, transform .28s ease;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}

.mobile-menu__overlay[aria-hidden="false"] {
  opacity: 1;
  visibility: visible;
  transform: translateX(0);
}

.mobile-menu__panel {
  width: 100%;
  max-width: 480px;
  padding: 2rem 2rem 3rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

.mobile-menu__close {
  align-self: flex-end;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--text-body);
  padding: .5rem;
  border-radius: 8px;
  transition: background var(--transition), color var(--transition);
  margin-bottom: .5rem;
}
.mobile-menu__close:hover { background: var(--blush); color: var(--pink); }

.mobile-menu__logo {
  margin-bottom: .5rem;
}
.mobile-menu__logo .logo-script {
  font-size: 2.4rem;
}

.mobile-menu__list {
  list-style: none;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: .25rem;
  margin-bottom: 1rem;
}

.mobile-menu__item {
  display: block;
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--text-dark);
  padding: .75rem 1rem;
  border-radius: 8px;
  text-align: center;
  transition: background var(--transition), color var(--transition);
}

.mobile-menu__item:hover {
  background: var(--blush);
  color: var(--pink);
}

.mobile-menu__cta {
  margin-top: .5rem;
  font-size: 1rem;
  padding: .9rem 2.5rem;
}

/* ── Hero ───────────────────────────────────────────────────── */
.hero {
  position: relative;
  width: 100%;
  height: 100svh;
  min-height: 560px;
  overflow: hidden;
  margin-top: 0;
  padding-top: var(--nav-h);
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero__media {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(10,5,8,.72) 0%,
    rgba(20,8,14,.50) 40%,
    rgba(20,8,14,.68) 100%
  );
}

.hero__content {
  position: relative;
  z-index: 1;
  text-align: center;
  color: var(--white);
  padding: 2rem 1.5rem;
  max-width: 700px;
  animation: fadeUp .8s ease both;
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: translateY(0); }
}

.hero__eyebrow {
  font-size: .82rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  opacity: .88;
  margin-bottom: .75rem;
}

.hero__title {
  font-family: var(--font-script);
  font-size: clamp(3rem, 10vw, 5.5rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 1rem;
  text-shadow: 0 2px 16px rgba(0,0,0,.35);
}

.hero__sub {
  font-size: clamp(.95rem, 2.5vw, 1.15rem);
  opacity: .92;
  margin-bottom: 2rem;
  line-height: 1.6;
}

/* ── Diensten / Cards ───────────────────────────────────────── */
.card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.75rem;
}

.card {
  background: var(--card-bg);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition), box-shadow var(--transition);
  display: flex;
  flex-direction: column;
}

.card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
}

.card__media {
  aspect-ratio: 16/10;
  overflow: hidden;
  flex-shrink: 0;
}

.card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .4s ease;
}

.card:hover .card__media img {
  transform: scale(1.05);
}

.card__body {
  padding: 1.75rem;
  display: flex;
  flex-direction: column;
  flex: 1;
  gap: .75rem;
}

.card__icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--blush);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--pink);
  flex-shrink: 0;
}

.card__title {
  font-family: var(--font-script);
  font-size: 1.65rem;
  color: var(--text-dark);
}

.card__text {
  font-size: .95rem;
  color: var(--text-muted);
  line-height: 1.65;
  flex: 1;
}

/* ── Over ons ───────────────────────────────────────────────── */
.over-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.over__foto {
  position: relative;
}

.foto-frame {
  border-radius: var(--radius);
  aspect-ratio: 4/3;
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

.foto-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.over__quote-badge {
  position: absolute;
  bottom: -1rem;
  right: -1rem;
  background: var(--pink);
  color: var(--white);
  font-size: .8rem;
  font-weight: 700;
  padding: .75rem 1.1rem;
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  gap: .5rem;
  box-shadow: var(--shadow-sm);
  max-width: 200px;
  line-height: 1.3;
}

.over__quote-badge svg { flex-shrink: 0; stroke: var(--white); }

.over__tekst {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.over__tekst p {
  font-size: .97rem;
  line-height: 1.75;
}

/* ── Reviews ────────────────────────────────────────────────── */
.reviews { background: var(--white); }

.review-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.75rem;
}

.review-card {
  background: var(--blush);
  border-radius: var(--radius);
  padding: 2rem 1.75rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  border: 1px solid var(--blush-mid);
  transition: box-shadow var(--transition);
}

.review-card:hover {
  box-shadow: var(--shadow-md);
}

.review-stars {
  display: flex;
  gap: 3px;
}

.star {
  width: 18px;
  height: 18px;
  fill: var(--pink);
  flex-shrink: 0;
}

.review-text {
  font-size: .95rem;
  color: var(--text-body);
  line-height: 1.65;
  font-style: italic;
  quotes: "\201E" "\201D";
  flex: 1;
}

.review-name {
  font-weight: 700;
  font-size: .9rem;
  color: var(--pink);
  font-style: normal;
}

/* ── CTA Band ───────────────────────────────────────────────── */
.cta-band {
  background: var(--pink);
  padding: 4.5rem 0;
  position: relative;
  overflow: hidden;
}

.cta-band__inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  text-align: center;
  position: relative;
  z-index: 1;
}

.cta-band__fleur {
  flex-shrink: 0;
  display: none;
}

.cta-band__text {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

.cta-band__title {
  font-family: var(--font-script);
  font-size: clamp(2rem, 5vw, 3rem);
  color: var(--white);
  line-height: 1.15;
}

.cta-band__sub {
  font-size: 1.05rem;
  color: rgba(255,255,255,.88);
  max-width: 48ch;
}

/* ── Contact ────────────────────────────────────────────────── */
.contact-inner {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 4rem;
  align-items: start;
}

.contact__info {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.contact__info p {
  font-size: .97rem;
  line-height: 1.75;
}

.contact-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: .85rem;
  margin-top: .5rem;
}

.contact-list li {
  display: flex;
  align-items: center;
  gap: .75rem;
  font-size: .95rem;
}

.contact-list__icon {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--pink);
  flex-shrink: 0;
  box-shadow: var(--shadow-sm);
}

.contact-list a {
  color: var(--text-body);
}
.contact-list a:hover { color: var(--pink); }

/* ── Contact Form ───────────────────────────────────────────── */
.contact__form-wrap {
  background: var(--white);
  border-radius: var(--radius);
  padding: 2.5rem;
  box-shadow: var(--shadow-md);
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.form-row {
  display: flex;
  flex-direction: column;
  gap: .4rem;
}

.form-row label {
  font-size: .85rem;
  font-weight: 700;
  color: var(--text-body);
  letter-spacing: .02em;
}

.form-row input,
.form-row textarea {
  font-family: var(--font-body);
  font-size: .97rem;
  line-height: 1.5;
  color: var(--text-dark);
  background: var(--blush);
  border: 1.5px solid var(--blush-mid);
  border-radius: 8px;
  padding: .75rem 1rem;
  transition: border-color var(--transition), box-shadow var(--transition);
  width: 100%;
  outline: none;
  resize: vertical;
}

.form-row input:focus,
.form-row textarea:focus {
  border-color: var(--pink);
  box-shadow: 0 0 0 3px rgba(232,82,122,.15);
}

.form-row input::placeholder,
.form-row textarea::placeholder {
  color: var(--text-muted);
  opacity: .7;
}

/* ── Footer ─────────────────────────────────────────────────── */
.footer-kit {
  background: var(--text-dark);
  color: rgba(255,255,255,.8);
  padding: 3.5rem 0 1.5rem;
}

.footer-inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1.2fr;
  gap: 3rem;
  padding-bottom: 2.5rem;
  border-bottom: 1px solid rgba(255,255,255,.08);
}

.footer-logo {
  color: var(--pink-light);
  font-size: 2rem;
  display: block;
  margin-bottom: .5rem;
}

.footer-tagline {
  font-size: .88rem;
  line-height: 1.6;
  color: rgba(255,255,255,.6);
  margin-top: .4rem;
}

.footer-nav h4,
.footer-contact h4 {
  color: var(--white);
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.footer-nav ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: .5rem;
}

.footer-nav a {
  color: rgba(255,255,255,.7);
  font-size: .9rem;
  transition: color var(--transition);
}

.footer-nav a:hover { color: var(--pink-light); }

.footer-contact address {
  font-style: normal;
  display: flex;
  flex-direction: column;
  gap: .4rem;
}

.footer-contact address p,
.footer-hours {
  font-size: .9rem;
  color: rgba(255,255,255,.7);
}

.footer-contact a {
  color: rgba(255,255,255,.7);
  transition: color var(--transition);
}
.footer-contact a:hover { color: var(--pink-light); }

.footer-hours {
  margin-top: .5rem;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 1.5rem;
  font-size: .82rem;
  color: rgba(255,255,255,.4);
  flex-wrap: wrap;
  gap: .5rem;
}

.footer-credit a {
  color: var(--pink-light);
}

/* ── Responsive ─────────────────────────────────────────────── */

/* Tablet: ≤ 1024px */
@media (max-width: 1024px) {
  .cta-band__fleur { display: flex; }
}

/* Tablet: ≤ 900px */
@media (max-width: 900px) {
  .card-grid,
  .review-grid {
    grid-template-columns: 1fr 1fr;
  }

  .over-inner {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .over__quote-badge {
    right: 0;
    bottom: -1rem;
  }

  .contact-inner {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .footer-inner {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }
}

/* Mobile: ≤ 768px */
@media (max-width: 768px) {
  :root { --nav-h: 64px; }

  .desktop-nav { display: none; }
  .mobile-menu__trigger { display: flex; }

  .section { padding: 3.5rem 0; }

  .card-grid,
  .review-grid {
    grid-template-columns: 1fr;
    max-width: 460px;
    margin: 0 auto;
  }

  .hero__title { font-size: clamp(2.5rem, 12vw, 4rem); }
  .hero__sub { display: none; }

  .footer-inner {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
    gap: .4rem;
  }

  .contact__form-wrap {
    padding: 1.75rem;
  }
}

/* Small mobile: ≤ 390px */
@media (max-width: 390px) {
  .container { padding: 0 1rem; }
  .card-grid,
  .review-grid {
    max-width: 100%;
  }
  .over__quote-badge {
    position: static;
    margin-top: 1rem;
    max-width: 100%;
  }
}

/* ── Reduced motion ─────────────────────────────────────────── */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .01ms !important;
    transition-duration: .01ms !important;
  }
}
