/* ============================================================
   TANTE ZAS & CO — STYLESHEET
   ============================================================ */

/* ── Custom Properties ── */
:root {
  --coral:   #E8635A;
  --coral-d: #d04e46;
  --teal:    #2A8A9F;
  --teal-d:  #1f6f80;
  --peach:   #F9E4D4;
  --yellow:  #F2C94C;
  --white:   #ffffff;
  --dark:    #1a1a1a;
  --text:    #3d3d3d;
  --muted:   #6b6b6b;
  --border:  #e8d5c4;

  --font-script: 'Pacifico', cursive;
  --font-body:   'Nunito', sans-serif;

  --radius:  12px;
  --radius-lg: 20px;
  --shadow:  0 4px 20px rgba(0,0,0,.10);
  --shadow-lg: 0 8px 40px rgba(0,0,0,.16);

  --nav-h: 68px;
}

/* ── Reset & Base ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--white);
  line-height: 1.7;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--teal); text-decoration: none; }
a:hover { text-decoration: underline; }
ul { list-style: none; }
address { font-style: normal; }

/* ── Image fill safety net ── */
.media,
.img-fill,
figure.photo { position: relative; overflow: hidden; }

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

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

/* ── Typography ── */
.logo-script {
  font-family: var(--font-script);
  color: var(--coral);
  font-size: 1.75rem;
  line-height: 1.2;
  letter-spacing: 0.01em;
}
.logo-script--light { color: var(--white); }

h1, h2, h3, h4 {
  font-family: var(--font-body);
  font-weight: 800;
  line-height: 1.2;
  color: var(--dark);
}
h2 { font-size: clamp(1.8rem, 3vw, 2.6rem); }
h3 { font-size: clamp(1.2rem, 2vw, 1.5rem); }
em { font-style: normal; color: var(--coral); }

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.75rem;
  border-radius: 50px;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 1rem;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all 0.2s ease;
  text-decoration: none;
  line-height: 1.2;
  white-space: nowrap;
  min-height: 44px;
}
.btn--primary {
  background: var(--coral);
  color: var(--white);
  border-color: var(--coral);
}
.btn--primary:hover {
  background: var(--coral-d);
  border-color: var(--coral-d);
  text-decoration: none;
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(232,99,90,.35);
}
.btn--ghost {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,.7);
}
.btn--ghost:hover {
  background: rgba(255,255,255,.15);
  text-decoration: none;
}
.btn--nav {
  background: var(--coral);
  color: var(--white);
  border-color: var(--coral);
  padding: 0.5rem 1.25rem;
  font-size: 0.9rem;
}
.btn--nav:hover {
  background: var(--coral-d);
  text-decoration: none;
}
.btn--lg { padding: 1rem 2.25rem; font-size: 1.1rem; }
.btn--full { width: 100%; justify-content: center; }

/* ── Label tag ── */
.label-tag {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--teal);
  background: rgba(42,138,159,.1);
  padding: 0.3rem 0.9rem;
  border-radius: 50px;
  margin-bottom: 0.75rem;
}
.label-tag--coral {
  color: var(--coral);
  background: rgba(232,99,90,.1);
}
.label-tag--light {
  color: var(--white);
  background: rgba(255,255,255,.2);
}

/* ── Section header ── */
.section-header {
  text-align: center;
  margin-bottom: 3rem;
}
.section-header h2 { margin-bottom: 0.5rem; }
.section-lead {
  color: var(--muted);
  font-size: 1.1rem;
  max-width: 540px;
  margin: 0 auto;
}

/* ============================================================
   NAVBAR
   ============================================================ */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: var(--teal);
  box-shadow: 0 2px 16px rgba(0,0,0,.12);
  height: var(--nav-h);
}
.navbar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 1.5rem;
  height: 100%;
}
.navbar__logo .logo-script {
  color: var(--white);
  font-size: 1.5rem;
}
.navbar__logo:hover { text-decoration: none; }
.navbar__links {
  display: flex;
  align-items: center;
  gap: 1.75rem;
}
.navbar__links a {
  color: rgba(255,255,255,.9);
  font-weight: 600;
  font-size: 0.95rem;
  transition: color 0.2s;
}
.navbar__links a:hover { color: var(--white); text-decoration: none; }

.mobile-menu__trigger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--white);
  padding: 0.5rem;
  min-width: 44px;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
}

/* ============================================================
   MOBILE MENU — FULLSCREEN OVERLAY
   ============================================================ */
.mobile-menu__overlay {
  position: fixed;
  inset: 0;
  z-index: 200;
  background: var(--teal);
  display: flex;
  flex-direction: column;
  height: 100dvh;
  overflow-y: auto;
  transform: translateX(100%);
  transition: transform 0.28s cubic-bezier(0.4, 0, 0.2, 1);
}
.mobile-menu__overlay[aria-hidden="false"] {
  transform: translateX(0);
}
.mobile-menu__overlay[aria-hidden="true"] {
  pointer-events: none;
}
body.menu-open { overflow: hidden; }

.mobile-menu__panel--root {
  display: flex;
  flex-direction: column;
  min-height: 100dvh;
  padding: 1.5rem 2rem 2rem;
}
.mobile-menu__close {
  align-self: flex-end;
  background: none;
  border: none;
  color: var(--white);
  cursor: pointer;
  padding: 0.5rem;
  min-width: 44px;
  min-height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  margin-bottom: 1rem;
}
.mobile-menu__close:hover { background: rgba(255,255,255,.1); }
.mobile-menu__logo .logo-script {
  color: var(--white);
  font-size: 2rem;
  margin-bottom: 2rem;
  display: block;
}
.mobile-menu__list {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}
.mobile-menu__item {
  display: block;
  color: rgba(255,255,255,.9);
  font-size: 1.35rem;
  font-weight: 700;
  padding: 0.85rem 1rem;
  border-radius: var(--radius);
  transition: background 0.15s, color 0.15s;
  min-height: 44px;
}
.mobile-menu__item:hover {
  background: rgba(255,255,255,.12);
  color: var(--white);
  text-decoration: none;
}
.mobile-menu__item--cta {
  margin-top: 0.75rem;
  background: var(--coral);
  color: var(--white);
  text-align: center;
  border-radius: 50px;
}
.mobile-menu__item--cta:hover {
  background: var(--coral-d);
}
.mobile-menu__footer {
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255,255,255,.2);
  color: rgba(255,255,255,.7);
  font-size: 0.9rem;
}
.mobile-menu__footer a {
  color: rgba(255,255,255,.9);
  font-weight: 600;
}

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

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  min-height: 100dvh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  padding-top: var(--nav-h);
}
.hero__media {
  position: absolute;
  inset: 0;
}
.hero__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(0,0,0,.3) 0%,
    rgba(0,0,0,.45) 60%,
    rgba(0,0,0,.6) 100%
  );
}
.hero__content {
  position: relative;
  z-index: 2;
  color: var(--white);
  max-width: 760px;
  padding: 0 1.5rem 5rem;
}
.hero__title {
  font-size: clamp(3rem, 8vw, 6rem);
  color: var(--white);
  text-shadow: 0 2px 20px rgba(0,0,0,.4);
  margin-bottom: 1rem;
  line-height: 1.1;
}
.hero__sub {
  font-size: clamp(1.1rem, 2.5vw, 1.4rem);
  font-weight: 600;
  color: rgba(255,255,255,.92);
  margin-bottom: 2.5rem;
  line-height: 1.5;
  text-shadow: 0 1px 8px rgba(0,0,0,.3);
}
.hero__actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}
.hero__wave {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 50px;
  z-index: 1;
  opacity: 0.75;
}
.hero__wave svg {
  width: 100%;
  height: 100%;
}

/* ============================================================
   OVER ONS
   ============================================================ */
.over {
  padding: 5rem 0 4rem;
  background: var(--white);
}
.over__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.over__text h2 { margin-bottom: 1.25rem; }
.over__text p {
  color: var(--muted);
  margin-bottom: 1rem;
  font-size: 1.05rem;
}
.over__text .btn { margin-top: 0.5rem; }
.over__image-wrap {
  position: relative;
}
.over__image-wrap .media {
  aspect-ratio: 4/5;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.over__badge {
  position: absolute;
  bottom: -1rem;
  left: -1rem;
  background: var(--white);
  border: 2px solid var(--peach);
  border-radius: var(--radius);
  padding: 0.75rem 1rem;
  box-shadow: var(--shadow);
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--coral);
  max-width: 180px;
}
.over__badge svg { flex-shrink: 0; fill: var(--coral); stroke: var(--coral); }

/* ============================================================
   DIENSTEN
   ============================================================ */
.diensten {
  padding: 5rem 0;
  background: var(--peach);
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}
.card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  display: flex;
  flex-direction: column;
}
.card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}
.card--featured {
  outline: 3px solid var(--coral);
  outline-offset: -3px;
}
.card__media {
  aspect-ratio: 16/10;
  overflow: hidden;
}
.card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}
.card:hover .card__media img { transform: scale(1.04); }

.card__body {
  padding: 1.5rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.card__icon {
  width: 44px; height: 44px;
  background: rgba(232,99,90,.1);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--coral);
  margin-bottom: 1rem;
}
.card__body h3 { margin-bottom: 0.75rem; }
.card__body p { color: var(--muted); font-size: 0.97rem; flex: 1; }
.card__link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  color: var(--coral);
  font-weight: 700;
  font-size: 0.9rem;
  margin-top: 1.25rem;
  transition: gap 0.2s;
}
.card__link:hover { gap: 0.7rem; text-decoration: none; }

/* ============================================================
   SFEER
   ============================================================ */
.sfeer {
  background: var(--peach);
  padding: 5rem 0 4rem;
  overflow: hidden;
}
.sfeer__inner { position: relative; }
.sfeer__text {
  text-align: center;
  margin-bottom: 3rem;
}
.sfeer__text h2 { margin-bottom: 1.25rem; }
.sfeer__quote {
  max-width: 620px;
  margin: 0 auto;
  border-left: 4px solid var(--coral);
  padding-left: 1.5rem;
  text-align: left;
}
.sfeer__quote p {
  font-size: 1.1rem;
  color: var(--muted);
  font-style: italic;
  line-height: 1.7;
}

.sfeer__gallery {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 280px 280px;
  gap: 8px;
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 1.5rem;
}
.sfeer__gallery-item {
  overflow: hidden;
  border-radius: var(--radius);
}
.sfeer__gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}
.sfeer__gallery-item:hover img { transform: scale(1.05); }

/* ============================================================
   CATERING
   ============================================================ */
.catering {
  position: relative;
  padding: 6rem 0;
  overflow: hidden;
}
.catering__media {
  position: absolute;
  inset: 0;
}
.catering__bg {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.catering__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(42,138,159,.92) 0%,
    rgba(42,138,159,.78) 60%,
    rgba(0,0,0,.6) 100%
  );
}
.catering__content { position: relative; z-index: 2; }
.catering__inner {
  max-width: 600px;
  color: var(--white);
}
.catering__inner h2 {
  color: var(--white);
  margin-bottom: 1.25rem;
}
.catering__inner p {
  color: rgba(255,255,255,.9);
  font-size: 1.1rem;
  margin-bottom: 2rem;
}
.catering__features {
  margin-bottom: 2.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.catering__features li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: rgba(255,255,255,.95);
  font-weight: 600;
  font-size: 1rem;
}
.catering__features li svg {
  flex-shrink: 0;
  color: var(--yellow);
  stroke: var(--yellow);
  width: 20px;
  height: 20px;
}

/* ============================================================
   REVIEWS
   ============================================================ */
.reviews {
  padding: 5rem 0;
  background: var(--white);
}
.reviews__rating {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  justify-content: center;
  margin-top: 0.75rem;
}
.stars { display: flex; gap: 2px; }
.reviews__score {
  font-weight: 700;
  color: var(--dark);
  font-size: 1rem;
}
.reviews__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}
.review-card {
  background: var(--peach);
  border-radius: var(--radius-lg);
  padding: 2rem;
  position: relative;
}
.review-card::before {
  content: '\201C';
  font-family: Georgia, serif;
  font-size: 5rem;
  color: var(--coral);
  opacity: 0.25;
  position: absolute;
  top: 0.5rem; left: 1.25rem;
  line-height: 1;
}
.review-card__stars {
  display: flex;
  gap: 2px;
  margin-bottom: 1rem;
}
.review-card p {
  color: var(--text);
  font-size: 0.97rem;
  line-height: 1.7;
  margin-bottom: 1.25rem;
  font-style: italic;
}
.review-card footer { display: flex; flex-direction: column; gap: 0.15rem; }
.review-card footer strong { font-weight: 800; color: var(--dark); }
.review-card footer span { font-size: 0.85rem; color: var(--muted); }

/* ============================================================
   CONTACT
   ============================================================ */
.contact {
  padding: 5rem 0;
  background: var(--peach);
}
.contact__grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 4rem;
  align-items: start;
}
.contact__info h2 { margin-bottom: 0.75rem; }
.contact__info > p { color: var(--muted); margin-bottom: 2rem; font-size: 1.05rem; }
.contact__details {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 2rem;
}
.contact__details li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  color: var(--text);
  font-size: 0.97rem;
}
.contact__details li svg {
  flex-shrink: 0;
  color: var(--coral);
  margin-top: 2px;
}
.contact__details a { color: var(--teal); font-weight: 600; }
.contact__social {
  display: flex;
  gap: 0.75rem;
}
.contact__social a {
  width: 44px; height: 44px;
  background: var(--white);
  border: 2px solid var(--border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--teal);
  transition: background 0.2s, border-color 0.2s;
}
.contact__social a:hover {
  background: var(--teal);
  border-color: var(--teal);
  color: var(--white);
}

/* ── Contact form ── */
.contact__form-wrap {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  box-shadow: var(--shadow);
}
.contact__form h3 {
  margin-bottom: 1.5rem;
  color: var(--dark);
}
.form-group {
  margin-bottom: 1.25rem;
}
.form-group label {
  display: block;
  font-weight: 700;
  margin-bottom: 0.4rem;
  font-size: 0.9rem;
  color: var(--dark);
}
.form-group input,
.form-group textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 2px solid var(--border);
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--dark);
  background: var(--white);
  transition: border-color 0.2s;
}
.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--teal);
}
.form-group textarea { resize: vertical; }
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer-kit {
  background: var(--teal);
  color: var(--white);
}
.footer__wave {
  height: 60px;
  overflow: hidden;
  background: var(--peach);
}
.footer__wave svg {
  width: 100%;
  height: 100%;
  display: block;
}
.footer__body { padding: 3rem 0 0; }
.footer__grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1.2fr 1.2fr;
  gap: 2.5rem;
  padding-bottom: 2.5rem;
  border-bottom: 1px solid rgba(255,255,255,.15);
}
.footer__brand p {
  color: rgba(255,255,255,.75);
  font-size: 0.95rem;
  margin-top: 0.75rem;
  max-width: 260px;
  line-height: 1.6;
}
.footer__col h4 {
  font-size: 0.85rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,.6);
  margin-bottom: 1rem;
  font-weight: 700;
}
.footer__col ul {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.footer__col ul li a {
  color: rgba(255,255,255,.8);
  font-size: 0.95rem;
  transition: color 0.2s;
}
.footer__col ul li a:hover { color: var(--white); text-decoration: none; }
.footer__hours li {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  color: rgba(255,255,255,.8);
  font-size: 0.9rem;
  padding: 0.2rem 0;
}
.footer__hours li.closed { opacity: 0.5; }
.footer__col address p {
  color: rgba(255,255,255,.8);
  font-size: 0.95rem;
  margin-bottom: 0.5rem;
}
.footer__col address a {
  color: rgba(255,255,255,.9);
  font-weight: 600;
}
.footer__social {
  display: flex;
  gap: 0.5rem;
  margin-top: 1rem;
}
.footer__social a {
  width: 38px; height: 38px;
  background: rgba(255,255,255,.12);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,.8);
  transition: background 0.2s;
}
.footer__social a:hover { background: rgba(255,255,255,.25); }
.footer__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.25rem 0;
  gap: 1rem;
  flex-wrap: wrap;
}
.footer__bottom p {
  color: rgba(255,255,255,.55);
  font-size: 0.85rem;
}
.footer__bottom a { color: rgba(255,255,255,.8); }
.footer__bottom a:hover { color: var(--white); }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .card-grid { grid-template-columns: 1fr 1fr; }
  .reviews__grid { grid-template-columns: 1fr 1fr; }
  .footer__grid { grid-template-columns: 1fr 1fr; }
  .sfeer__gallery { grid-template-columns: repeat(2, 1fr); grid-template-rows: 260px 260px; }
}

@media (max-width: 768px) {
  .navbar__links { display: none; }
  .mobile-menu__trigger { display: flex; }

  .over__grid { grid-template-columns: 1fr; gap: 2rem; }
  .over__image-wrap .media { aspect-ratio: 4/3; }
  .over__badge { bottom: -0.5rem; left: 0.5rem; }

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

  .sfeer__gallery { grid-template-columns: repeat(2, 1fr); grid-template-rows: 200px 200px; }

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

  .reviews__grid { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto; }

  .footer__grid { grid-template-columns: 1fr 1fr; }
  .footer__bottom { flex-direction: column; text-align: center; }
}

@media (max-width: 480px) {
  .hero__title { font-size: 2.8rem; }
  .hero__actions { flex-direction: column; align-items: center; }
  .sfeer__gallery { grid-template-columns: repeat(2, 1fr); }
  .footer__grid { grid-template-columns: 1fr; }
  .contact__form-wrap { padding: 1.5rem; }
}
