/* Take a Break — huisstijl afgeleid van de menuborden en het logo */

:root {
  --bruin-950: #241811;
  --bruin-900: #33241B;
  --bruin-800: #433126;
  --bord: #543D35;            /* exacte achtergrond van de menuborden */
  --creme: #EAD9B5;
  --creme-zacht: rgba(234, 217, 181, .72);
  --creme-lijn: rgba(234, 217, 181, .22);
  --papier: #F2E9D8;
  --inkt: #33241B;
  --inkt-zacht: rgba(51, 36, 27, .72);
  --inkt-lijn: rgba(51, 36, 27, .18);
  --caramel: #C29A63;
  --font-display: "Cormorant Garamond", Georgia, serif;
  --font-sans: "Jost", "Segoe UI", sans-serif;
  /* houdt de inhoud max ±1240px breed; achtergronden lopen volledig door */
  --kader: max(calc(50% - 620px), clamp(1.2rem, 4vw, 3rem));
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html {
  scroll-behavior: smooth;
}

body {
  background: var(--bruin-900);
  color: var(--creme);
  font-family: var(--font-sans);
  font-weight: 400;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

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

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

section { scroll-margin-top: 76px; }

::selection { background: var(--caramel); color: var(--bruin-950); }

/* ---------- bouwstenen ---------- */

.merk img { height: 34px; width: auto; object-fit: contain; object-position: left center; }

.knop {
  display: inline-block;
  font-family: var(--font-sans);
  font-weight: 500;
  font-size: .9rem;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--bruin-950);
  background: var(--creme);
  border: 1px solid var(--creme);
  border-radius: 3px;
  padding: .72em 1.7em;
  transition: background .25s ease, border-color .25s ease;
}
.knop:hover { background: var(--caramel); border-color: var(--caramel); }

.knop-klein { padding: .45em 1.25em; font-size: .82rem; }

.knop-donker {
  color: var(--creme);
  background: var(--inkt);
  border-color: var(--inkt);
}
.knop-donker:hover { background: var(--bruin-950); border-color: var(--bruin-950); }

.tekstlink {
  font-family: var(--font-sans);
  font-weight: 500;
  font-size: .88rem;
  letter-spacing: .13em;
  text-transform: uppercase;
  border-bottom: 1px solid currentColor;
  padding-bottom: .15em;
  opacity: .85;
  transition: opacity .25s ease;
}
.tekstlink:hover { opacity: 1; }

/* ---------- topbar ---------- */

.topbar {
  position: sticky;
  top: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding: .8rem var(--kader);
  background: rgba(51, 36, 27, .93);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--creme-lijn);
}

.hoofdnav { display: flex; gap: clamp(1.2rem, 3vw, 2.4rem); }
.hoofdnav a {
  font-weight: 400;
  font-size: .9rem;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--creme-zacht);
  transition: color .25s ease;
}
.hoofdnav a:hover, .hoofdnav a.actief { color: var(--creme); }

/* hamburger — enkel zichtbaar op kleine schermen */
.nav-knop {
  display: none;
  flex-direction: column;
  justify-content: center;
  flex-shrink: 0;
  gap: 5px;
  width: 42px;
  height: 38px;
  padding: 0 10px;
  background: transparent;
  border: 1px solid var(--creme-lijn);
  border-radius: 3px;
  cursor: pointer;
}
.nav-knop span {
  display: block;
  height: 2px;
  background: var(--creme);
  border-radius: 1px;
  transition: transform .25s ease, opacity .25s ease;
}
.topbar.menu-open .nav-knop span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.topbar.menu-open .nav-knop span:nth-child(2) { opacity: 0; }
.topbar.menu-open .nav-knop span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ---------- hero (home) ---------- */

.hero {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  align-items: center;
  gap: clamp(2rem, 4vw, 4rem);
  padding: clamp(2.5rem, 6vh, 4rem) var(--kader);
  min-height: min(calc(100vh - 62px), 780px);
}

.hero-logo { margin-bottom: 2rem; }
.hero-logo img { width: min(100%, 440px); }

.hero-intro {
  font-size: 1.05rem;
  font-weight: 300;
  color: var(--creme-zacht);
  max-width: 32em;
  margin-bottom: 1.4rem;
}

.status {
  font-weight: 500;
  font-size: .88rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--caramel);
  margin-bottom: 2rem;
}
.stip-open {
  display: inline-block;
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--caramel);
  margin-right: .6em;
  vertical-align: 1px;
}

.hero-acties { display: flex; align-items: center; gap: 1.8rem; flex-wrap: wrap; }

.hero-beeld { justify-self: center; }
.hero-beeld img {
  width: min(100%, 400px);
  height: min(60vh, 540px);
  object-fit: cover;
  border-radius: 999px 999px 6px 6px;
  outline: 1px solid var(--creme-lijn);
  outline-offset: 12px;
}

/* ---------- over (home) ---------- */

.over {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: clamp(2.5rem, 5vw, 5rem);
  background: var(--papier);
  color: var(--inkt);
  padding: clamp(3.25rem, 7vh, 5rem) var(--kader);
}

.over h2 {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(1.9rem, 3vw, 2.6rem);
  line-height: 1.12;
  margin-bottom: 1.2rem;
}

.over p { color: var(--inkt-zacht); max-width: 36em; }
.over-kolom p + p { margin-top: .9rem; }
.over-kolom .tekstlink { display: inline-block; margin-top: 1.4rem; font-size: .82rem; }

.feiten { list-style: none; align-self: center; }
.feiten li {
  padding: 1.05rem 0;
  border-top: 1px solid var(--inkt-lijn);
}
.feiten li:last-child { border-bottom: 1px solid var(--inkt-lijn); }
.feiten h3 {
  font-family: var(--font-sans);
  font-weight: 500;
  font-size: .95rem;
  letter-spacing: .13em;
  text-transform: uppercase;
  margin-bottom: .1rem;
}
.feiten p { font-size: .95rem; }

/* ---------- fotostrip (home) ---------- */

.strip-wrap {
  background: var(--papier);
  padding: 0 0 clamp(3rem, 6vh, 4.5rem);
}
.strip {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: min(62vw, 300px);
  align-items: start;
  gap: 1rem;
  overflow-x: auto;
  scroll-snap-type: x proximity;
  padding: 0 var(--kader);
  scrollbar-width: none;
  cursor: grab;
}
.strip::-webkit-scrollbar { display: none; }
.strip.sleept { cursor: grabbing; scroll-snap-type: none; }
.strip img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  border-radius: 4px;
  scroll-snap-align: center;
  user-select: none;
  -webkit-user-drag: none;
}
.strip img:nth-child(even) { margin-top: 2rem; }

/* ---------- menukaart (home) ---------- */

.menukaart {
  background: var(--bord);
  color: var(--creme);
  padding: clamp(3.25rem, 7vh, 5rem) var(--kader);
}

.menu-kop {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
  border-bottom: 1px solid var(--creme-lijn);
  padding-bottom: 1.5rem;
  margin-bottom: 2.2rem;
}

.menu-kop h2 {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(2.1rem, 3.4vw, 2.9rem);
  line-height: 1;
}

.menu-nota {
  color: var(--creme-zacht);
  font-size: .95rem;
  font-weight: 300;
  text-align: right;
}
.menu-nota a { color: var(--creme); border-bottom: 1px solid var(--creme-lijn); }
.menu-nota a:hover { border-bottom-color: var(--creme); }

.menu-kolommen {
  columns: 3;
  column-gap: clamp(2.2rem, 4vw, 4rem);
}

.categorie {
  break-inside: avoid;
  margin-bottom: 2.2rem;
}

.categorie h3 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.3rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  margin-bottom: .8rem;
}

.categorie ul { list-style: none; }

.categorie li {
  display: flex;
  align-items: baseline;
  gap: .7em;
  padding: .2em 0;
  font-size: .95rem;
}
.naam { letter-spacing: .05em; text-transform: uppercase; font-weight: 400; }
.stip { flex: 1; border-bottom: 1px dotted var(--creme-lijn); transform: translateY(-4px); }
.prijs { font-weight: 500; white-space: nowrap; }

.illu { margin-top: 1.3rem; width: min(70%, 260px); }
.illu-croissant { width: min(35%, 130px); }

.menu-voetnoot {
  margin-top: 1.2rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--creme-lijn);
  color: var(--creme-zacht);
  font-weight: 300;
  font-size: .95rem;
}
.menu-voetnoot a { color: var(--creme); border-bottom: 1px solid var(--creme-lijn); }

/* ---------- bestel-band ---------- */

.bestel-band {
  background: var(--creme);
  color: var(--inkt);
  padding: clamp(3.5rem, 8vh, 5.5rem) var(--kader);
  text-align: center;
}

.bestel-inhoud { max-width: 40rem; margin: 0 auto; }

.bestel-band h2 {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(2rem, 3.4vw, 2.8rem);
  line-height: 1.08;
  margin-bottom: 1rem;
}

.bestel-band p { color: var(--inkt-zacht); max-width: 34em; margin-inline: auto; }

.bestel-acties {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.4rem;
  flex-wrap: wrap;
  margin-top: 1.9rem;
}
.of { font-size: .95rem; color: var(--inkt-zacht); }
.of a { font-weight: 500; color: var(--inkt); }

/* ---------- subpagina's ---------- */

.pagina-kop {
  background: var(--bruin-900);
  padding: clamp(2.75rem, 6vh, 4rem) var(--kader);
  border-bottom: 1px solid var(--creme-lijn);
}
.pagina-kop h1 {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(2.2rem, 4vw, 3rem);
  line-height: 1.05;
  margin-bottom: .5rem;
}
.pagina-kop p {
  color: var(--creme-zacht);
  font-weight: 300;
  font-size: 1rem;
  max-width: 38em;
}

/* over ons — verhaal */

.verhaal {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: clamp(2.5rem, 5vw, 5rem);
  align-items: center;
  background: var(--papier);
  color: var(--inkt);
  padding: clamp(3.25rem, 7vh, 5rem) var(--kader);
}
.verhaal h2 {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  line-height: 1.12;
  margin-bottom: 1.2rem;
}
.verhaal p { color: var(--inkt-zacht); max-width: 36em; }
.verhaal p + p { margin-top: .9rem; }
.verhaal-beeld img {
  width: 100%;
  max-width: 460px;
  justify-self: center;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  border-radius: 4px;
}

.fotorij {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  background: var(--papier);
  padding: 0 var(--kader) clamp(3rem, 6vh, 4.5rem);
}
.fotorij img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  border-radius: 4px;
  user-select: none;
  -webkit-user-drag: none;
}
.fotorij.sleept { cursor: grabbing; scroll-snap-type: none; }

/* over ons — locatie */

.locatie {
  background: var(--bruin-900);
  color: var(--creme);
  padding: clamp(3.25rem, 7vh, 5rem) var(--kader);
}
.locatie h2 {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  margin-bottom: 1.5rem;
}
.locatie-beeld img {
  width: 100%;
  aspect-ratio: 16 / 8;
  object-fit: cover;
  border-radius: 4px;
}
.locatie-info {
  display: flex;
  gap: clamp(1.5rem, 4vw, 3rem);
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  margin-top: 1.5rem;
}
.locatie-info p { color: var(--creme-zacht); font-size: .98rem; }
.locatie-info strong { color: var(--creme); font-weight: 500; }
.locatie-info a { color: var(--creme); }
.locatie-info .knop { color: var(--bruin-950); }

/* contact-pagina */

.contact-blad {
  display: grid;
  grid-template-columns: minmax(0, 380px) minmax(0, 560px);
  justify-content: space-between;
  gap: clamp(2.5rem, 5vw, 5rem);
  background: var(--papier);
  color: var(--inkt);
  padding: clamp(3.25rem, 7vh, 5rem) var(--kader);
}

.contact-info h2, .contact-formulier h2 {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 1.6rem;
  margin-bottom: 1.1rem;
}

.contact-info > div + div { margin-top: 1.8rem; }
.contact-info h3 {
  font-family: var(--font-sans);
  font-weight: 500;
  font-size: .88rem;
  letter-spacing: .13em;
  text-transform: uppercase;
  margin-bottom: .4rem;
}
.contact-info p { color: var(--inkt-zacht); }
.contact-info a { color: var(--inkt); }
.contact-info .tekstlink { display: inline-block; margin-top: .7rem; font-size: .8rem; }

.uren { border-collapse: collapse; width: 100%; max-width: 20rem; }
.uren td {
  padding: .45em 0;
  border-bottom: 1px solid var(--inkt-lijn);
  color: var(--inkt-zacht);
  font-size: .95rem;
}
.uren td:last-child { text-align: right; color: var(--inkt); font-weight: 500; }

.sociaal { display: flex; gap: 1.4rem; margin-top: .4rem; }
.sociaal a {
  font-weight: 500;
  font-size: .85rem;
  letter-spacing: .13em;
  text-transform: uppercase;
  border-bottom: 1px solid var(--inkt-lijn);
}
.sociaal a:hover { border-bottom-color: var(--inkt); }

.contact-formulier label {
  display: block;
  font-weight: 500;
  font-size: .85rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  margin: 1.2rem 0 .35rem;
}
.contact-formulier label:first-of-type { margin-top: 0; }

.contact-formulier input,
.contact-formulier textarea {
  width: 100%;
  font: inherit;
  font-size: 1rem; /* onder 16px zoomt iOS Safari in bij focus */
  color: var(--inkt);
  background: transparent;
  border: 1px solid var(--inkt-lijn);
  border-radius: 3px;
  padding: .6em .85em;
}
.contact-formulier input:focus,
.contact-formulier textarea:focus {
  outline: none;
  border-color: var(--inkt);
}
.contact-formulier textarea { min-height: 150px; resize: vertical; }

.contact-formulier .knop { margin-top: 1.4rem; }

.kaart-sectie {
  background: var(--papier);
  padding: 0 var(--kader) clamp(3rem, 6vh, 4.5rem);
}
.kaart-sectie iframe {
  display: block;
  width: 100%;
  height: 380px;
  border: 0;
  border-radius: 4px;
}

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

.voet {
  background: var(--bruin-950);
  color: var(--creme-zacht);
  padding: clamp(2.5rem, 6vh, 3.5rem) var(--kader) 1.4rem;
  text-align: center;
}

.voet-boven { display: flex; flex-direction: column; align-items: center; gap: .8rem; }
.voet-boven img { height: 34px; width: auto; }

.voet-nav {
  display: flex;
  justify-content: center;
  gap: 1.6rem;
  flex-wrap: wrap;
  margin-top: 1.5rem;
  font-size: .82rem;
  letter-spacing: .13em;
  text-transform: uppercase;
}
.voet-nav a { color: var(--creme-zacht); transition: color .25s ease; }
.voet-nav a:hover { color: var(--creme); }

.voet-tagline {
  font-weight: 400;
  font-size: .74rem;
  letter-spacing: .32em;
  text-transform: uppercase;
}

.voet-info { margin-top: 1rem; font-size: .92rem; font-weight: 300; }
.voet-info a { color: var(--creme); }

.voet-onder {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: 2.4rem;
  padding-top: 1.3rem;
  border-top: 1px solid var(--creme-lijn);
  font-size: .86rem;
}
.voet-onder a { border-bottom: 1px solid var(--creme-lijn); transition: border-color .25s ease, color .25s ease; }
.voet-onder a:hover { color: var(--creme); border-bottom-color: var(--creme); }

/* ---------- reveal ---------- */

/* enkel verbergen als JS draait (html.js), anders blijft alles zichtbaar */
html.js [data-reveal] {
  opacity: 0;
  transform: translateY(14px);
  transition: opacity .7s ease, transform .7s ease;
}
html.js [data-reveal].toon { opacity: 1; transform: none; }

/* ---------- responsief ---------- */

@media (max-width: 1080px) {
  .menu-kolommen { columns: 2; }
}

@media (max-width: 900px) {
  .hero {
    grid-template-columns: 1fr;
    min-height: 0;
    padding-top: 2.5rem;
  }
  .hero-beeld img { height: 400px; width: min(100%, 360px); }
  .over { grid-template-columns: 1fr; }
  .menu-nota { text-align: left; }
  .verhaal { grid-template-columns: 1fr; }
  .contact-blad { grid-template-columns: 1fr; }
}

@media (max-width: 760px) {
  /* topbar: logo links, bestelknop + hamburger rechts */
  .topbar { justify-content: flex-start; gap: .9rem; }
  .merk { margin-right: auto; }
  .merk img { height: 26px; }
  .nav-knop { display: flex; }

  /* de navigatie klapt uit onder de topbar */
  .hoofdnav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    display: none;
    flex-direction: column;
    gap: 0;
    padding: .3rem var(--kader) .9rem;
    background: var(--bruin-900);
    border-bottom: 1px solid var(--creme-lijn);
  }
  .topbar.menu-open .hoofdnav { display: flex; }
  .hoofdnav a {
    padding: .85rem 0;
    font-size: .95rem;
    border-top: 1px solid var(--creme-lijn);
  }
  .hoofdnav a:first-child { border-top: 0; }

  /* hero gecentreerd op mobiel: logo, intro, status en knoppen */
  .hero-tekst { text-align: center; }
  .hero-logo img { width: min(100%, 380px); margin-inline: auto; }
  .hero-intro { margin-inline: auto; }
  .hero-acties { justify-content: center; }

  /* fotorij (over ons) wordt een slider naast elkaar i.p.v. gestapeld */
  .fotorij {
    grid-template-columns: none;
    grid-auto-flow: column;
    grid-auto-columns: min(62vw, 300px);
    overflow-x: auto;
    scroll-snap-type: x proximity;
    scrollbar-width: none;
    cursor: grab;
  }
  .fotorij::-webkit-scrollbar { display: none; }
  .fotorij img { scroll-snap-align: center; }
}

@media (max-width: 640px) {
  .menu-kolommen { columns: 1; }
  .voet-onder { justify-content: center; text-align: center; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  html.js [data-reveal] { opacity: 1; transform: none; transition: none; }
}
