/* ==========================================================================
   Only Jets Style — statische site
   ========================================================================== */

:root {
  --pink: #ec0b77;
  --pink-dark: #c30a63;
  --pink-light: #fe87b3;
  --pink-tint: #fdf1f7;
  --navy: #1c3747;
  --ink: #1a1419;
  --body: #4a4650;
  --muted: #7d7a84;
  --line: #e7e3e8;
  --white: #fff;

  --wrap: 1180px;
  --radius: 10px;
  --shadow: 0 2px 14px rgba(28, 55, 71, .08);
  --shadow-lg: 0 10px 40px rgba(28, 55, 71, .16);

  --font: "Helvetica Neue", Helvetica, Arial, -apple-system, BlinkMacSystemFont,
    "Segoe UI", Roboto, sans-serif;
  --font-heading: "Metropolis1920", "Helvetica Neue", Helvetica, Arial, sans-serif;
}

/* ----------------------------------------------------------- webfont -- */

@font-face {
  font-family: "Metropolis1920";
  src: url("https://atika.silvas.dev/site-assets/12/5db1ddb7dae63746f5ecff1b3e4cbf21.woff") format("woff");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

/* --------------------------------------------------------------- reset -- */

*,
*::before,
*::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.65;
  color: var(--body);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
}

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

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

h1, h2, h3, h4, h5, h6 {
  margin: 0 0 .5em;
  font-family: var(--font-heading);
  color: var(--ink);
  line-height: 1.25;
  font-weight: 700;
}

h1 { font-size: clamp(1.9rem, 4vw, 2.6rem); }
h2 { font-size: clamp(1.5rem, 3vw, 2rem); }
h3 { font-size: 1.15rem; }

p { margin: 0 0 1em; }

ul { margin: 0 0 1em; padding-left: 1.2em; }
li { margin-bottom: .3em; }

:focus-visible {
  outline: 3px solid var(--pink);
  outline-offset: 2px;
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  z-index: 200;
  background: var(--pink);
  color: #fff;
  padding: .75rem 1.25rem;
}
.skip-link:focus {
  left: 0;
  color: #fff;
}

/* ------------------------------------------------------------- layout -- */

.wrap {
  width: 100%;
  max-width: var(--wrap);
  margin: 0 auto;
  padding: 0 20px;
}

.section { padding: 56px 0; }
.section--tint { background: var(--pink-tint); }
.section--tight { padding: 36px 0; }

.section-head {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 40px;
}
.section-head p { color: var(--muted); }

.lede { font-size: 1.08rem; }

/* ------------------------------------------------------------- header -- */

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--white);
  box-shadow: 0 1px 0 var(--line);
}

.site-header__bar {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 12px 20px;
  position: relative;
}

.site-logo {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}
.site-logo img { width: 74px; height: 74px; }
.site-logo span {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 400;
  color: var(--ink);
  letter-spacing: .01em;
}

.nav-toggle {
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  display: none;
  align-items: center;
  gap: 8px;
  background: none;
  border: 0;
  padding: 8px;
  cursor: pointer;
  color: var(--pink);
  font: inherit;
}
.nav-toggle__box {
  position: relative;
  width: 26px;
  height: 18px;
  display: block;
}
.nav-toggle__box span,
.nav-toggle__box::before,
.nav-toggle__box::after {
  content: "";
  position: absolute;
  left: 0;
  width: 100%;
  height: 3px;
  border-radius: 2px;
  background: var(--pink);
  transition: transform .2s ease, opacity .2s ease;
}
.nav-toggle__box::before { top: 0; }
.nav-toggle__box span { top: 7.5px; }
.nav-toggle__box::after { bottom: 0; }

.nav-toggle[aria-expanded="true"] .nav-toggle__box::before {
  transform: translateY(7.5px) rotate(45deg);
}
.nav-toggle[aria-expanded="true"] .nav-toggle__box span { opacity: 0; }
.nav-toggle[aria-expanded="true"] .nav-toggle__box::after {
  transform: translateY(-7.5px) rotate(-45deg);
}

/* ---------------------------------------------------------------- nav -- */

.site-nav {
  background: var(--pink);
  border-top: 4px solid var(--pink-light);
  border-bottom: 4px solid var(--pink-light);
}

.site-nav ul {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 4px;
  margin: 0;
  padding: 0;
  list-style: none;
}
.site-nav li { margin: 0; }

.site-nav a {
  display: block;
  padding: 12px 18px;
  color: #fff;
  font-size: .95rem;
  font-weight: 600;
  letter-spacing: .02em;
}
.site-nav a:hover,
.site-nav a:focus-visible { background: rgba(0, 0, 0, .14); color: #fff; }
.site-nav a[aria-current="page"] {
  background: rgba(0, 0, 0, .2);
  color: #fff;
}

/* --------------------------------------------------------------- hero -- */

.hero {
  background: linear-gradient(180deg, var(--pink-tint), #fff);
  padding: 48px 0 40px;
  text-align: center;
}
.hero img {
  width: 260px;
  margin: 0 auto 18px;
}
.hero h1 { margin-bottom: .2em; font-weight: 400; }
.hero__tagline {
  font-size: 1.15rem;
  color: var(--pink);
  font-weight: 600;
  margin-bottom: 1.4em;
}

.page-hero {
  background: var(--pink-tint);
  padding: 40px 0;
  text-align: center;
  border-bottom: 1px solid var(--line);
}
.page-hero h1 { margin-bottom: .2em; }
.page-hero p { margin: 0; color: var(--muted); }

/* ------------------------------------------------------------ buttons -- */

.btn {
  display: inline-block;
  padding: 12px 26px;
  border-radius: 4px;
  background: var(--pink);
  color: #fff;
  font-weight: 700;
  font-size: .95rem;
  border: 2px solid var(--pink);
  cursor: pointer;
  font-family: inherit;
  transition: background .15s ease, color .15s ease;
}
.btn:hover { background: var(--pink-dark); border-color: var(--pink-dark); color: #fff; }

.btn--ghost { background: transparent; color: var(--pink); }
.btn--ghost:hover { background: var(--pink); color: #fff; }

.btn-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
}

/* -------------------------------------------------------------- cards -- */

.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
}

.card {
  display: block;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px 24px;
  text-align: center;
  color: var(--body);
  transition: box-shadow .18s ease, transform .18s ease;
}
.card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-3px);
  color: var(--body);
}
.card img { width: 96px; margin: 0 auto 14px; }
.card h3 { color: var(--pink); margin-bottom: .35em; }
.card p { margin: 0; font-size: .95rem; }

/* ---------------------------------------------------------- split row -- */

.split {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 44px;
  align-items: center;
}
.split--flip .split__media { order: -1; }
.split__media img {
  width: 100%;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

/* ------------------------------------------------------------ pricing -- */

.price-group { margin-bottom: 44px; }
.price-group:last-child { margin-bottom: 0; }

.price-group > h2 {
  color: var(--pink);
  text-align: center;
  margin-bottom: 1em;
}

.price-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 0 44px;
}
.price-list li {
  display: flex;
  align-items: baseline;
  gap: 10px;
  margin: 0;
  padding: 12px 0;
  border-bottom: 1px solid var(--line);
}
.price-list .label { flex: 1; }
.price-list .note {
  display: block;
  font-size: .85rem;
  color: var(--muted);
}
.price-list .price {
  color: var(--pink);
  font-weight: 700;
  white-space: nowrap;
}

.price-figure {
  margin: 28px auto 0;
  max-width: 325px;
  text-align: center;
}

/* ------------------------------------------------------------ gallery -- */

.tabs {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 28px;
  padding: 0;
  list-style: none;
}
.tabs button {
  font: inherit;
  font-weight: 700;
  padding: 8px 22px;
  border: 1px solid var(--line);
  background: #fff;
  color: var(--ink);
  border-radius: 4px;
  cursor: pointer;
}
.tabs button[aria-selected="true"] {
  background: var(--pink);
  border-color: var(--pink);
  color: #fff;
}

.grid-gallery {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(230px, 1fr));
  gap: 10px;
}
.grid-gallery--wide {
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
}

.grid-gallery button {
  display: block;
  padding: 0;
  border: 0;
  background: #f3eef1;
  cursor: pointer;
  overflow: hidden;
  border-radius: 6px;
  aspect-ratio: 1 / 1;
  width: 100%;
}
.grid-gallery--wide button { aspect-ratio: 4 / 3; }

/* Eén losse foto: niet bijsnijden, gewoon op volledige hoogte tonen. */
.grid-gallery--single {
  grid-template-columns: 1fr;
  max-width: 460px;
}
.grid-gallery--single button { aspect-ratio: auto; }
.grid-gallery--single img { height: auto; }

.grid-gallery img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .3s ease, opacity .2s ease;
}
.grid-gallery button:hover img { transform: scale(1.05); opacity: .9; }

[hidden] { display: none !important; }

/* ---------------------------------------------------------- lightbox -- */

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 200;
  background: rgba(20, 12, 18, .93);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
}
.lightbox img {
  max-width: 100%;
  max-height: 84vh;
  border-radius: 4px;
  margin: 0 auto;
}
.lightbox__caption {
  position: absolute;
  bottom: 18px;
  left: 0;
  right: 0;
  text-align: center;
  color: rgba(255, 255, 255, .85);
  font-size: .9rem;
  padding: 0 60px;
}
.lightbox button {
  position: absolute;
  background: rgba(255, 255, 255, .12);
  color: #fff;
  border: 0;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  font-size: 1.5rem;
  line-height: 1;
  cursor: pointer;
}
.lightbox button:hover { background: var(--pink); }
.lightbox__close { top: 18px; right: 18px; }
.lightbox__prev { left: 18px; top: 50%; transform: translateY(-50%); }
.lightbox__next { right: 18px; top: 50%; transform: translateY(-50%); }

body.is-locked { overflow: hidden; }

/* -------------------------------------------------------------- nieuws -- */

.news-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 26px;
}

.news-card {
  display: flex;
  flex-direction: column;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  color: var(--body);
  transition: box-shadow .18s ease, transform .18s ease;
}
.news-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-3px);
  color: var(--body);
}
.news-card__media {
  position: relative;
  aspect-ratio: 4 / 3;
  background: #f3eef1;
}
.news-card__media img { width: 100%; height: 100%; object-fit: cover; }

.news-card__date {
  position: absolute;
  left: 12px;
  top: 12px;
  background: rgba(255, 255, 255, .94);
  border-radius: 6px;
  padding: 8px 10px;
  text-align: center;
  line-height: 1.05;
  box-shadow: var(--shadow);
}
.news-card__date .d { display: block; color: var(--pink); font-size: 1.5rem; font-weight: 700; }
.news-card__date .m { display: block; font-size: .85rem; }
.news-card__date .y { display: block; font-size: .75rem; color: var(--muted); }

.news-card__body { padding: 16px 18px 20px; }
.news-card__body h3 { margin: 0; color: var(--pink); font-size: 1.05rem; }

.article-meta {
  color: var(--muted);
  font-size: .9rem;
  margin-bottom: 1.4em;
}

.back-link {
  display: inline-block;
  margin-top: 32px;
  font-weight: 700;
}

/* ------------------------------------------------------------ contact -- */

.contact-layout {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 44px;
  align-items: start;
}

.form-field { margin-bottom: 18px; }
.form-field label {
  display: block;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 6px;
  font-size: .95rem;
}
.form-field input,
.form-field textarea {
  width: 100%;
  font: inherit;
  color: var(--ink);
  padding: 11px 13px;
  background: #fcfcfc;
  border: 1px solid var(--line);
  border-bottom: 2px solid var(--line);
  border-radius: 4px;
}
.form-field input:focus,
.form-field textarea:focus {
  border-bottom-color: var(--pink);
  outline: none;
  background: #fff;
}
.form-field textarea { resize: vertical; min-height: 150px; }

.form-note {
  font-size: .88rem;
  color: var(--muted);
  margin-top: 14px;
}

.info-box {
  background: var(--pink-tint);
  border-radius: var(--radius);
  padding: 24px;
  margin-bottom: 24px;
}
.info-box h3 { margin-top: 0; }
.info-box p:last-child { margin-bottom: 0; }

.hours {
  list-style: none;
  margin: 0;
  padding: 0;
}
.hours li {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 7px 0;
  border-bottom: 1px solid rgba(236, 11, 119, .14);
}
.hours li:last-child { border-bottom: 0; }
.hours .day { font-weight: 600; color: var(--ink); }
.hours .closed { color: var(--muted); }

/* ------------------------------------------------------------- footer -- */

.site-footer {
  background: var(--navy);
  color: rgba(255, 255, 255, .78);
  padding: 48px 0 28px;
  margin-top: 8px;
}
.site-footer h3 {
  color: #fff;
  font-size: 1.05rem;
  margin-bottom: .8em;
}
.site-footer a { color: #fff; }
.site-footer a:hover { color: var(--pink-light); }

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
  gap: 32px;
}
.footer-grid ul { list-style: none; margin: 0; padding: 0; }
.footer-grid ul li { margin-bottom: .4em; }

.socials {
  display: flex;
  gap: 12px;
}
.socials a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .1);
  transition: background .15s ease;
}
.socials a:hover { background: var(--pink); }
.socials svg { width: 21px; height: 21px; fill: #fff; }

.footer-bottom {
  margin-top: 36px;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, .14);
  font-size: .85rem;
  display: flex;
  flex-wrap: wrap;
  gap: 8px 20px;
  justify-content: space-between;
}

/* ---------------------------------------------------------- responsive -- */

@media (max-width: 860px) {
  .split,
  .contact-layout {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .split--flip .split__media { order: 0; }
  .split__media { max-width: 460px; }
}

@media (max-width: 760px) {
  .nav-toggle { display: inline-flex; }

  .site-logo img { width: 58px; height: 58px; }
  .site-logo span { font-size: 1.05rem; }

  .site-nav { display: none; }
  .site-nav.is-open { display: block; }
  .site-nav ul { flex-direction: column; gap: 0; }
  .site-nav li + li { border-top: 1px solid rgba(255, 255, 255, .22); }
  .site-nav a { padding: 14px 20px; }

  .section { padding: 40px 0; }
  .price-list { grid-template-columns: 1fr; gap: 0; }
  .lightbox__caption { padding: 0 20px; }
}

@media (max-width: 520px) {
  .grid-gallery { grid-template-columns: repeat(auto-fill, minmax(140px, 1fr)); }
  .hero img { width: 200px; }
}

@media print {
  .site-header, .site-nav, .site-footer, .nav-toggle { display: none; }
  body { color: #000; }
}
