/* ============================================================
   WIRO BLOEMBINDERS — PREMIUM FLORIST SITE
   Kleurpalet: donkergroen #2D5016 | blush #F2C4CE | cremewit #FAFAF5
   ============================================================ */

/* ---------- RESET & BASE ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --green:       #2D5016;
  --green-light: #3d6b1e;
  --green-dark:  #1e3710;
  --blush:       #F2C4CE;
  --blush-dark:  #e8a8b6;
  --cream:       #FAFAF5;
  --cream-dark:  #F0F0E8;
  --brown:       #6B4F3A;
  --text:        #1a1a1a;
  --text-muted:  #5a5a5a;
  --border:      #E0DDD5;

  --font-serif:  'Playfair Display', Georgia, serif;
  --font-sans:   'Inter', system-ui, sans-serif;

  --radius:      12px;
  --radius-lg:   20px;
  --shadow-sm:   0 2px 8px rgba(0,0,0,.06);
  --shadow-md:   0 8px 32px rgba(0,0,0,.10);
  --shadow-lg:   0 24px 64px rgba(0,0,0,.14);

  --section-pad: clamp(4rem, 8vw, 7rem);
  --container:   1200px;
  --gap:         2rem;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-sans);
  color: var(--text);
  background: var(--cream);
  line-height: 1.7;
  overflow-x: hidden;
}

img { display: block; width: 100%; height: auto; object-fit: cover; }
a { color: inherit; text-decoration: none; }
address { font-style: normal; }

.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;
}

/* ---------- CONTAINER ---------- */
.container {
  width: min(var(--container), 100% - 2.5rem);
  margin-inline: auto;
}

/* ---------- BUTTONS ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  padding: .75rem 1.75rem;
  border-radius: 50px;
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: .95rem;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all .25s ease;
  text-decoration: none;
  white-space: nowrap;
}
.btn-primary {
  background: var(--green);
  color: #fff;
  border-color: var(--green);
}
.btn-primary:hover {
  background: var(--green-light);
  border-color: var(--green-light);
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(45,80,22,.25);
}
.btn-ghost {
  background: transparent;
  color: #fff;
  border-color: rgba(255,255,255,.6);
}
.btn-ghost:hover {
  background: rgba(255,255,255,.12);
  border-color: #fff;
}
.btn-lg { padding: .9rem 2.25rem; font-size: 1rem; }
.btn-full { width: 100%; }

/* ---------- SECTION DEFAULTS ---------- */
.section { padding-block: var(--section-pad); }

.section-header {
  text-align: center;
  max-width: 640px;
  margin-inline: auto;
  margin-bottom: clamp(2.5rem, 5vw, 4rem);
}
.section-eyebrow {
  font-family: var(--font-sans);
  font-size: .8rem;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: .75rem;
}
.section-title {
  font-family: var(--font-serif);
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 700;
  line-height: 1.2;
  color: var(--green-dark);
  margin-bottom: 1rem;
}
.section-lead {
  color: var(--text-muted);
  font-size: 1.05rem;
  line-height: 1.8;
}

/* ============================================================
   HEADER
   ============================================================ */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 900;
  background: rgba(250,250,245,.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  transition: box-shadow .3s;
}
.site-header.scrolled { box-shadow: var(--shadow-md); }

.header-inner {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  height: 70px;
  width: min(var(--container), 100% - 2.5rem);
  margin-inline: auto;
}
.logo {
  display: flex;
  align-items: center;
  gap: .5rem;
  font-family: var(--font-serif);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--green-dark);
  text-decoration: none;
  flex-shrink: 0;
}
.logo-mark { color: var(--green); font-size: 1rem; }

.desktop-nav {
  margin-left: auto;
}
.desktop-nav ul {
  display: flex;
  gap: 2rem;
  list-style: none;
}
.desktop-nav a {
  font-size: .9rem;
  font-weight: 500;
  color: var(--text-muted);
  transition: color .2s;
}
.desktop-nav a:hover { color: var(--green); }

.header-cta { margin-left: 1rem; }

/* Hamburger trigger */
.mobile-menu__trigger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: .5rem;
  margin-left: auto;
  width: 44px;
  height: 44px;
  align-items: center;
}
.hamburger-bar {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--green-dark);
  border-radius: 2px;
  transition: transform .3s, opacity .3s;
}
.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 component)
   ============================================================ */
.mobile-menu__overlay {
  position: fixed;
  inset: 0;
  z-index: 1000;
  background: var(--cream);
  height: 100svh;
  height: 100dvh;
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  transition: transform .3s cubic-bezier(.4,0,.2,1);
  overflow-y: auto;
}
.mobile-menu__overlay.is-open {
  transform: translateX(0);
}

.mobile-menu__panel { flex: 1; display: flex; flex-direction: column; }

.mobile-menu__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem 1.5rem;
  border-bottom: 1px solid var(--border);
  font-family: var(--font-serif);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--green-dark);
}
.mobile-menu__close {
  background: none;
  border: none;
  cursor: pointer;
  color: var(--green-dark);
  padding: .25rem;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
}

.mobile-menu__list {
  list-style: none;
  padding: 1rem 0;
  flex: 1;
}
.mobile-menu__item {
  display: block;
  padding: 1rem 1.75rem;
  font-size: 1.25rem;
  font-family: var(--font-serif);
  font-weight: 600;
  color: var(--green-dark);
  border-bottom: 1px solid var(--border);
  transition: background .2s, color .2s;
}
.mobile-menu__item:hover {
  background: var(--cream-dark);
  color: var(--green);
}

.mobile-menu__footer {
  padding: 1.5rem;
  border-top: 1px solid var(--border);
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding-top: 70px;
}
.hero-media {
  position: absolute;
  inset: 0;
}
.hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 40%;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(20,35,10,.72) 0%,
    rgba(45,80,22,.45) 50%,
    rgba(20,35,10,.30) 100%
  );
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 700px;
  padding: 2rem clamp(1.25rem, 5vw, 3rem);
  margin-top: 2rem;
}
.hero-eyebrow {
  font-size: .8rem;
  font-weight: 600;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--blush);
  margin-bottom: 1.25rem;
}
.hero-title {
  font-family: var(--font-serif);
  font-size: clamp(2.4rem, 6vw, 4.2rem);
  font-weight: 700;
  line-height: 1.1;
  color: #fff;
  margin-bottom: 1.25rem;
}
.hero-title em {
  font-style: italic;
  color: var(--blush);
}
.hero-subtitle {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: rgba(255,255,255,.85);
  max-width: 520px;
  margin-bottom: 2.25rem;
  line-height: 1.75;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.scroll-indicator {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  color: rgba(255,255,255,.6);
  animation: bounce 2s infinite;
  z-index: 2;
}
@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(8px); }
}

/* ============================================================
   DIENSTEN
   ============================================================ */
.diensten-section { background: var(--cream); }

.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: var(--gap);
}

.card {
  background: #fff;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform .3s ease, box-shadow .3s ease;
  display: flex;
  flex-direction: column;
}
.card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}
.card-img-wrap {
  aspect-ratio: 4/3;
  overflow: hidden;
}
.card-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s ease;
}
.card:hover .card-img-wrap img { transform: scale(1.05); }

.card-body {
  padding: 1.75rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.card-title {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--green-dark);
  margin-bottom: .6rem;
}
.card-text {
  color: var(--text-muted);
  font-size: .95rem;
  line-height: 1.7;
  flex: 1;
  margin-bottom: 1.25rem;
}
.card-link {
  font-weight: 600;
  font-size: .9rem;
  color: var(--green);
  display: inline-flex;
  align-items: center;
  gap: .35rem;
  transition: gap .2s, color .2s;
}
.card-link:hover { gap: .65rem; color: var(--green-light); }

/* ============================================================
   OVER ONS
   ============================================================ */
.over-ons-section { background: var(--cream-dark); }

.over-ons-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 5rem);
  align-items: center;
}

.over-ons-img-wrap {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  aspect-ratio: 4/3;
}
.over-ons-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.over-ons-badge {
  position: absolute;
  bottom: 1.5rem;
  right: 1.5rem;
  background: var(--green);
  color: #fff;
  padding: 1rem 1.25rem;
  border-radius: var(--radius);
  font-family: var(--font-sans);
  font-size: .8rem;
  font-weight: 600;
  text-align: center;
  line-height: 1.4;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .35rem;
}
.badge-icon { font-size: 1.2rem; }

.over-ons-content .section-title { text-align: left; margin-bottom: 1.25rem; }
.over-ons-content p {
  color: var(--text-muted);
  margin-bottom: 1rem;
  line-height: 1.8;
}

.over-ons-values {
  margin-top: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.value-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1rem;
  background: #fff;
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
}
.value-icon { font-size: 1.4rem; flex-shrink: 0; margin-top: .1rem; }
.value-item strong {
  display: block;
  font-weight: 600;
  color: var(--green-dark);
  margin-bottom: .15rem;
}
.value-item span { font-size: .9rem; color: var(--text-muted); }

/* ============================================================
   OPENINGSTIJDEN
   ============================================================ */
.openingstijden-section { background: var(--green-dark); color: #fff; }
.openingstijden-section .section-eyebrow { color: var(--blush); }
.openingstijden-section .section-title { color: #fff; }

.ot-card {
  max-width: 680px;
  margin-inline: auto;
  background: rgba(255,255,255,.14);
  border: 1px solid rgba(255,255,255,.25);
  border-radius: var(--radius-lg);
  overflow: hidden;
  backdrop-filter: none;
}
.ot-inner {
  display: flex;
  gap: 2rem;
  align-items: flex-start;
  padding: 2.5rem;
}
.ot-icon { color: var(--blush); flex-shrink: 0; margin-top: .15rem; }

.ot-table { width: 100%; border-collapse: collapse; }
.ot-table th,
.ot-table td {
  padding: .8rem 0;
  border-bottom: 1px solid rgba(255,255,255,.1);
  font-size: 1rem;
}
.ot-table th {
  font-weight: 500;
  text-align: left;
  color: rgba(255,255,255,.8);
  padding-right: 2rem;
}
.ot-table td {
  text-align: right;
  font-weight: 600;
  color: #fff;
}
.ot-table tr:last-child th,
.ot-table tr:last-child td { border-bottom: none; }
.ot-closed th, .ot-closed td { color: rgba(255,255,255,.45); }

.ot-cta {
  padding: 1.75rem 2.5rem;
  border-top: 1px solid rgba(255,255,255,.15);
  background: rgba(255,255,255,.05);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}
.ot-cta p { font-size: .95rem; color: rgba(255,255,255,.75); }

/* ============================================================
   CONTACT
   ============================================================ */
.contact-section { background: var(--cream); }

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: start;
}

/* Form */
.contact-form-wrap {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  box-shadow: var(--shadow-md);
}
.contact-form { display: flex; flex-direction: column; gap: 1.25rem; }

.form-group { display: flex; flex-direction: column; gap: .4rem; }
.form-group label {
  font-size: .875rem;
  font-weight: 600;
  color: var(--green-dark);
}
.required { color: var(--green); }

.form-group input,
.form-group textarea {
  font-family: var(--font-sans);
  font-size: 1rem;
  padding: .75rem 1rem;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  background: var(--cream);
  color: var(--text);
  transition: border-color .2s, box-shadow .2s;
  width: 100%;
}
.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--green);
  box-shadow: 0 0 0 3px rgba(45,80,22,.12);
}
.form-group textarea { resize: vertical; min-height: 120px; }
.form-note {
  font-size: .85rem;
  color: var(--text-muted);
  text-align: center;
}

/* Contact info */
.contact-info-wrap { display: flex; flex-direction: column; gap: 1.75rem; }

.contact-details {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 2rem;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}
.contact-detail-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}
.detail-icon {
  font-size: 1.3rem;
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  background: var(--cream-dark);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.contact-detail-item strong {
  display: block;
  font-weight: 600;
  color: var(--green-dark);
  margin-bottom: .2rem;
  font-size: .9rem;
}
.contact-detail-item a {
  color: var(--green);
  font-weight: 500;
  transition: color .2s;
}
.contact-detail-item a:hover { color: var(--green-light); }
.contact-detail-item span, .contact-detail-item address {
  font-size: .95rem;
  color: var(--text-muted);
  line-height: 1.6;
}

.map-wrap {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  aspect-ratio: 16/9;
}
.map-wrap iframe {
  width: 100%;
  height: 100%;
  border: none;
  display: block;
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer-kit {
  background: var(--green-dark);
  color: rgba(255,255,255,.75);
  padding-top: 4rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255,255,255,.12);
}
.footer-brand .logo { color: #fff; margin-bottom: 1rem; }
.footer-brand .logo-mark { color: var(--blush); }
.footer-tagline {
  font-size: .9rem;
  line-height: 1.7;
  max-width: 280px;
}
.footer-nav h3,
.footer-contact h3 {
  font-family: var(--font-sans);
  font-size: .8rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 1.25rem;
}
.footer-nav ul { list-style: none; display: flex; flex-direction: column; gap: .6rem; }
.footer-nav a {
  font-size: .95rem;
  transition: color .2s;
}
.footer-nav a:hover { color: var(--blush); }
.footer-contact address {
  font-size: .95rem;
  line-height: 1.8;
}
.footer-contact a { color: var(--blush); transition: color .2s; }
.footer-contact a:hover { color: #fff; }
.footer-kvk {
  margin-top: .75rem;
  font-size: .8rem;
  color: rgba(255,255,255,.45);
}
.footer-bottom {
  text-align: center;
  padding: 1.5rem 0;
  font-size: .85rem;
  color: rgba(255,255,255,.35);
}

/* ============================================================
   RESPONSIVE — TABLET (768px–)
   ============================================================ */
@media (max-width: 900px) {
  .desktop-nav { display: none; }
  .header-cta { display: none; }
  .mobile-menu__trigger { display: flex; }

  .over-ons-grid { grid-template-columns: 1fr; }
  .over-ons-img-wrap { aspect-ratio: 16/9; order: -1; }

  .contact-grid { grid-template-columns: 1fr; }

  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
}

/* ============================================================
   RESPONSIVE — MOBILE (max 600px)
   ============================================================ */
@media (max-width: 600px) {
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { width: 100%; justify-content: center; }

  .card-grid { grid-template-columns: 1fr; }

  .ot-inner { flex-direction: column; gap: 1rem; }
  .ot-cta { flex-direction: column; text-align: center; }

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

/* ============================================================
   REDUCED MOTION
   ============================================================ */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .01ms !important; transition-duration: .01ms !important; }
  .scroll-indicator { animation: none; }
  .mobile-menu__overlay { transition: none; }
}

/* ============================================================
   SCROLL REVEAL (added by JS after load)
   ============================================================ */
.reveal-init {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity .5s ease, transform .5s ease;
}
.reveal-init.revealed {
  opacity: 1;
  transform: translateY(0);
}
@media (prefers-reduced-motion: reduce) {
  .reveal-init { opacity: 1 !important; transform: none !important; }
}
