/* =====================================================
   MARROXY HAIRSTYLING & VISAGIE: STYLESHEET
   Merkkleur: magenta #c0397a | Blush: #f2e8f0 | Wit: #ffffff
   Fonts: Playfair Display (headings) + Inter (body)
===================================================== */

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

:root {
  --magenta: #c0397a;
  --magenta-dark: #a02d64;
  --magenta-light: #e8a0c2;
  --blush: #f2e8f0;
  --blush-dark: #e8d6e4;
  --white: #ffffff;
  --text: #2c2c2c;
  --text-light: #6b5c65;
  --text-xlight: #9e8a94;
  --border: #e0d0d8;
  --shadow: 0 4px 24px rgba(192, 57, 122, 0.08);
  --shadow-lg: 0 12px 48px rgba(192, 57, 122, 0.12);
  --radius: 12px;
  --radius-lg: 20px;
  --header-h: 72px;
  --font-display: 'Playfair Display', Georgia, serif;
  --font-body: 'Inter', system-ui, sans-serif;
  --transition: 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--header-h);
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--white);
  line-height: 1.65;
  font-size: 1rem;
  overflow-x: hidden;
}

body.menu-open {
  overflow: hidden;
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

address { font-style: normal; }

/* Media fill helper */
.media, .img-fill, figure.photo { position: relative; overflow: hidden; }
.media > img, .img-fill > img, figure.photo > img,
.gallery img, .card img, .hero__img,
.gallery-item img, .about-img {
  width: 100%; height: 100%; object-fit: cover; display: block;
}

/* ---- TYPOGRAPHY ---- */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  line-height: 1.2;
  color: var(--text);
}

h1 { font-size: clamp(2.4rem, 6vw, 4.2rem); font-weight: 700; }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.6rem); font-weight: 600; }
h3 { font-size: 1.2rem; font-weight: 600; }

p { max-width: 68ch; }

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

/* ---- BUTTONS ---- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  padding: 0.75rem 1.75rem;
  border-radius: 50px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: var(--transition);
  text-decoration: none;
  white-space: nowrap;
  letter-spacing: 0.01em;
}

.btn-lg {
  font-size: 1.05rem;
  padding: 0.9rem 2.2rem;
}

.btn-full { width: 100%; justify-content: center; }

.btn-primary {
  background: var(--magenta);
  color: var(--white);
  border-color: var(--magenta);
}
.btn-primary:hover, .btn-primary:focus-visible {
  background: var(--magenta-dark);
  border-color: var(--magenta-dark);
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(192, 57, 122, 0.3);
}

.btn-ghost-light {
  background: rgba(255,255,255,0.22);
  color: var(--white);
  border-color: rgba(255,255,255,0.9);
  backdrop-filter: blur(4px);
}
.btn-ghost-light:hover, .btn-ghost-light:focus-visible {
  background: rgba(255,255,255,0.35);
  border-color: var(--white);
}

.btn-white {
  background: var(--white);
  color: var(--magenta);
  border-color: var(--white);
}
.btn-white:hover, .btn-white:focus-visible {
  background: var(--blush);
  border-color: var(--blush);
}

.btn-outline-magenta {
  background: transparent;
  color: var(--magenta);
  border-color: var(--magenta);
}
.btn-outline-magenta:hover, .btn-outline-magenta:focus-visible {
  background: var(--magenta);
  color: var(--white);
}

.btn-icon { width: 18px; height: 18px; flex-shrink: 0; }

/* ---- HEADER ---- */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: var(--header-h);
  z-index: 900;
  background: rgba(255,255,255,0.96);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  transition: box-shadow var(--transition);
}

.site-header.scrolled {
  box-shadow: 0 2px 20px rgba(192, 57, 122, 0.1);
}

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

/* Logo */
.logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  flex-shrink: 0;
  text-decoration: none;
}

.logo-icon { width: 36px; height: 36px; }

.logo-text {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--text);
  letter-spacing: -0.01em;
}

/* Desktop Nav */
.desktop-nav {
  margin-left: auto;
}

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

.desktop-nav a {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-light);
  text-decoration: none;
  transition: color var(--transition);
  position: relative;
}

.desktop-nav a::after {
  content: '';
  position: absolute;
  bottom: -3px;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--magenta);
  transform: scaleX(0);
  transition: transform var(--transition);
  transform-origin: left;
}

.desktop-nav a:hover,
.desktop-nav a:focus-visible {
  color: var(--magenta);
}

.desktop-nav a:hover::after { transform: scaleX(1); }

.header-cta { font-size: 0.9rem; padding: 0.55rem 1.4rem; }

/* Mobile menu trigger */
.mobile-menu__trigger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  background: none;
  border: none;
  cursor: pointer;
  border-radius: 8px;
  transition: background var(--transition);
  flex-shrink: 0;
}

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

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

/* =====================================================
   MOBILE MENU: FULLSCREEN KIT COMPONENT
===================================================== */
.mobile-menu__overlay {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100svh;
  background: var(--white);
  z-index: 1000;
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}

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

@media (prefers-reduced-motion: reduce) {
  .mobile-menu__overlay { transition: none; }
}

.mobile-menu__panel {
  display: flex;
  flex-direction: column;
  min-height: 100svh;
  padding: 1.5rem;
}

.mobile-menu__close {
  align-self: flex-end;
  padding: 10px;
  background: var(--blush);
  border: none;
  border-radius: 50%;
  cursor: pointer;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 2rem;
  transition: background var(--transition);
}

.mobile-menu__close svg {
  width: 20px;
  height: 20px;
  stroke: var(--text);
}

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

.mobile-menu__list {
  list-style: none;
  flex: 1;
}

.mobile-menu__item {
  display: block;
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 600;
  color: var(--text);
  padding: 0.6rem 0;
  border-bottom: 1px solid var(--border);
  transition: color var(--transition), padding-left var(--transition);
  text-decoration: none;
}

.mobile-menu__item:hover,
.mobile-menu__item:focus-visible {
  color: var(--magenta);
  padding-left: 0.5rem;
}

.mobile-cta {
  margin-top: 2.5rem;
  align-self: flex-start;
  font-size: 1.1rem;
  padding: 1rem 2.5rem;
}

/* ---- SECTIONS ---- */
.section {
  padding: 5rem 0;
}

.section--white { background: var(--white); }
.section--blush { background: var(--blush); }

.section-header {
  text-align: center;
  max-width: 620px;
  margin: 0 auto 3.5rem;
}

.section-eyebrow {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--magenta);
  margin-bottom: 0.5rem;
  max-width: unset;
}

.section-title {
  margin-bottom: 1rem;
}

.section-title em {
  font-style: italic;
  color: var(--magenta);
}

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

.section-cta {
  text-align: center;
  margin-top: 3rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

.gallery-cta-text {
  color: var(--text-light);
  font-size: 0.95rem;
  max-width: unset;
}

/* ---- HERO ---- */
.hero {
  position: relative;
  height: 100svh;
  min-height: 600px;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.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(
    135deg,
    rgba(44, 20, 30, 0.65) 0%,
    rgba(192, 57, 122, 0.25) 50%,
    rgba(44, 20, 30, 0.45) 100%
  );
}

.hero__content {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 1160px;
  margin: 0 auto;
  padding: calc(var(--header-h) + 2rem) 1.5rem 4rem;
  color: var(--white);
}

.hero__eyebrow {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--magenta-light);
  margin-bottom: 1rem;
  max-width: unset;
}

.hero__h1 {
  color: var(--white);
  font-size: clamp(2.8rem, 7vw, 5rem);
  line-height: 1.1;
  margin-bottom: 1.25rem;
  max-width: 12ch;
}

.hero__h1 em {
  font-style: italic;
  color: var(--magenta-light);
}

.hero__sub {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: rgba(255,255,255,0.88);
  max-width: 52ch;
  margin-bottom: 2.5rem;
  font-weight: 300;
}

.hero__actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

/* ---- DIENSTEN CARDS ---- */
.card-grid--diensten {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.card--dienst {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2rem 1.75rem;
  border: 1px solid var(--border);
  transition: transform var(--transition), box-shadow var(--transition);
  position: relative;
  overflow: hidden;
}

.card--dienst::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--magenta), var(--magenta-light));
  transform: scaleX(0);
  transition: transform var(--transition);
  transform-origin: left;
}

.card--dienst:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.card--dienst:hover::before {
  transform: scaleX(1);
}

.card__icon-wrap {
  width: 52px;
  height: 52px;
  background: var(--blush);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
  transition: background var(--transition);
}

.card--dienst:hover .card__icon-wrap {
  background: rgba(192, 57, 122, 0.12);
}

.card__icon-wrap svg {
  width: 26px;
  height: 26px;
  stroke: var(--magenta);
}

.card__title {
  margin-bottom: 0.6rem;
  font-size: 1.1rem;
}

.card__desc {
  color: var(--text-light);
  font-size: 0.92rem;
  line-height: 1.6;
  max-width: unset;
}

/* ---- ABOUT ---- */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.about-img-wrap {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4/5;
  box-shadow: var(--shadow-lg);
}

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

.about-badge {
  position: absolute;
  bottom: 1.5rem;
  right: 1.5rem;
  background: var(--magenta);
  color: var(--white);
  border-radius: var(--radius);
  padding: 1rem 1.25rem;
  text-align: center;
  box-shadow: 0 8px 24px rgba(192, 57, 122, 0.35);
}

.about-badge__number {
  display: block;
  font-family: var(--font-display);
  font-size: 2.2rem;
  font-weight: 700;
  line-height: 1;
}

.about-badge__label {
  display: block;
  font-size: 0.8rem;
  font-weight: 500;
  opacity: 0.9;
  margin-top: 0.2rem;
  line-height: 1.3;
}

.about-content .section-title {
  text-align: left;
  margin-bottom: 1.5rem;
}

.about-content .section-eyebrow {
  text-align: left;
}

.about-content p {
  color: var(--text-light);
  margin-bottom: 1rem;
  font-size: 0.98rem;
}

.about-features {
  margin-top: 1.75rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.about-feature {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--text);
}

.about-feature svg {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}

/* ---- CTA BAND ---- */
.cta-band {
  background: linear-gradient(135deg, var(--magenta) 0%, #a02d64 60%, #7d1f4e 100%);
  padding: 4rem 0;
  position: relative;
  overflow: hidden;
}

.cta-band::before {
  content: '';
  position: absolute;
  top: -60%;
  right: -10%;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: rgba(255,255,255,0.05);
  pointer-events: none;
}

.cta-band__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
}

.cta-band__text h2 {
  color: var(--white);
  font-size: clamp(1.5rem, 3vw, 2rem);
  margin-bottom: 0.4rem;
}

.cta-band__text p {
  color: rgba(255,255,255,0.82);
  font-size: 1rem;
  max-width: 45ch;
}

/* ---- GALLERY ---- */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: 300px;
  gap: 0.75rem;
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.gallery-item {
  overflow: hidden;
  position: relative;
  background: var(--blush-dark);
}

.gallery-item--large {
  /* uniform grid - no special spanning */
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.gallery-item:hover img {
  transform: scale(1.05);
}

/* ---- CONTACT ---- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 3rem;
  align-items: start;
}

.contact-block {
  background: var(--blush);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  border: 1px solid var(--blush-dark);
}

.contact-block--form {
  background: var(--white);
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
}

.contact-block__title {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-family: var(--font-display);
  font-size: 1.2rem;
  margin-bottom: 1.75rem;
  color: var(--text);
}

.contact-block__title svg {
  width: 22px;
  height: 22px;
  stroke: var(--magenta);
  flex-shrink: 0;
}

/* Hours table */
.hours-table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 2rem;
  font-size: 0.92rem;
}

.hours-table th,
.hours-table td {
  padding: 0.55rem 0;
  border-bottom: 1px solid var(--blush-dark);
  text-align: left;
}

.hours-table th {
  font-weight: 500;
  color: var(--text);
  width: 110px;
}

.hours-table td {
  color: var(--text-light);
}

.hours-table tr:last-child th,
.hours-table tr:last-child td {
  border-bottom: none;
}

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

.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  font-size: 0.92rem;
  color: var(--text-light);
}

.contact-info-item svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  stroke: var(--magenta);
  margin-top: 2px;
}

.contact-info-item a {
  color: var(--magenta);
  font-weight: 500;
  text-decoration: none;
  transition: color var(--transition);
}

.contact-info-item a:hover { color: var(--magenta-dark); text-decoration: underline; }

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

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

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

label {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text);
  letter-spacing: 0.01em;
}

input, textarea {
  font-family: var(--font-body);
  font-size: 0.95rem;
  padding: 0.75rem 1rem;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  background: var(--white);
  color: var(--text);
  outline: none;
  transition: border-color var(--transition), box-shadow var(--transition);
  width: 100%;
}

input:focus, textarea:focus {
  border-color: var(--magenta);
  box-shadow: 0 0 0 3px rgba(192, 57, 122, 0.12);
}

input::placeholder, textarea::placeholder {
  color: var(--text-xlight);
}

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

/* ---- FOOTER ---- */
.footer-kit {
  background: var(--text);
  color: rgba(255,255,255,0.75);
  padding: 4rem 0 2rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer-brand .logo-text { color: var(--white); }
.footer-brand .logo-icon circle { fill: rgba(192,57,122,0.2); }

.footer-tagline {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.55);
  margin-top: 0.75rem;
  line-height: 1.6;
  max-width: unset;
}

.footer-socials {
  display: flex;
  gap: 0.75rem;
  margin-top: 1.25rem;
}

.footer-socials a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.7);
  transition: background var(--transition), color var(--transition);
}

.footer-socials a:hover { background: var(--magenta); color: var(--white); }
.footer-socials a svg { width: 18px; height: 18px; }

.footer-col h4 {
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 1.25rem;
}

.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 0.6rem; }
.footer-col ul a, .footer-col address p, .footer-col address a {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.6);
  transition: color var(--transition);
}

.footer-col address p { margin-bottom: 0.5rem; }
.footer-col ul a:hover, .footer-col address a:hover { color: var(--magenta-light); }

.footer-hours {
  list-style: none;
}

.footer-hours li {
  display: flex;
  justify-content: space-between;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.6);
  padding: 0.35rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.07);
  gap: 1rem;
}

.footer-hours li:last-child { border-bottom: none; }
.footer-hours li span:first-child { color: rgba(255,255,255,0.8); font-weight: 500; }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.4);
}

.footer-bottom p { max-width: unset; }
.footer-credits a { color: var(--magenta-light); }
.footer-credits a:hover { color: var(--white); }

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

@media (max-width: 1024px) {
  .card-grid--diensten {
    grid-template-columns: repeat(2, 1fr);
  }

  .about-grid {
    gap: 3rem;
  }

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

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

@media (max-width: 768px) {
  .desktop-nav,
  .header-cta {
    display: none;
  }

  .mobile-menu__trigger {
    display: flex;
    margin-left: auto;
  }

  :root { --header-h: 64px; }

  .hero__h1 { font-size: clamp(2.2rem, 9vw, 3rem); }

  .hero__actions {
    flex-direction: column;
    align-items: flex-start;
  }

  .hero__actions .btn {
    width: 100%;
    justify-content: center;
  }

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

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

  .about-img-wrap {
    aspect-ratio: 16/9;
    max-height: 320px;
  }

  .cta-band__inner {
    flex-direction: column;
    text-align: center;
  }

  .cta-band__text p { margin: 0 auto; }

  .gallery-grid {
    grid-template-columns: repeat(3, 1fr);
    grid-auto-rows: 160px;
  }

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

  .form-row {
    grid-template-columns: 1fr;
  }

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

  .footer-brand { grid-column: auto; }

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

  .section { padding: 3.5rem 0; }
}

@media (max-width: 480px) {
  .hero { min-height: 100svh; }

  .card--dienst { padding: 1.5rem; }

  .contact-block { padding: 1.5rem; }

  .gallery-grid {
    grid-template-columns: 1fr 1fr;
    gap: 0.5rem;
  }
}

/* Focus styles */
:focus-visible {
  outline: 2px solid var(--magenta);
  outline-offset: 3px;
}

/* Scrollbar */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--blush); }
::-webkit-scrollbar-thumb { background: var(--magenta-light); border-radius: 3px; }
