/* ==========================================================================
   Infinity Ochten — shared stylesheet
   ========================================================================== */

:root {
  --olive: #6a6421;
  --olive-dark: #4f4a18;
  --olive-light: #8b8330;
  --champagne: #e5c99b;
  --champagne-light: #f5ead6;
  --cream: #faf8f4;
  --white: #ffffff;
  --ink: #2c2a22;
  --ink-soft: #5c5848;
  --border: #e7e2d6;

  --font-heading: "Cormorant Garamond", "Times New Roman", serif;
  --font-body: "Poppins", "Segoe UI", Arial, sans-serif;

  --container: 1120px;
  --radius: 14px;
  --shadow: 0 12px 32px -18px rgba(44, 42, 34, 0.35);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--cream);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

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

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

ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

h1, h2, h3, h4 {
  font-family: var(--font-heading);
  font-weight: 600;
  color: var(--olive-dark);
  margin: 0 0 0.5em;
  line-height: 1.15;
}

h1 { font-size: clamp(2.2rem, 5vw, 3.4rem); }
h2 { font-size: clamp(1.7rem, 3.4vw, 2.4rem); }
h3 { font-size: clamp(1.25rem, 2.4vw, 1.5rem); }

p { margin: 0 0 1em; }

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

.eyebrow {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--olive);
  font-weight: 600;
  margin-bottom: 0.8em;
}

.section {
  padding: 72px 0;
}

.section--tight {
  padding: 48px 0;
}

.section--alt {
  background: var(--white);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.section-head {
  max-width: 640px;
  margin: 0 auto 40px;
  text-align: center;
}

.section-head p {
  color: var(--ink-soft);
}

/* Buttons ---------------------------------------------------------------- */

.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5em;
  padding: 14px 30px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.02em;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
  border: 2px solid transparent;
}

.btn--primary {
  background: var(--olive);
  color: var(--white);
}

.btn--primary:hover {
  background: var(--olive-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}

.btn--ghost {
  border-color: var(--olive);
  color: var(--olive-dark);
  background: transparent;
}

.btn--ghost:hover {
  background: var(--olive);
  color: var(--white);
  transform: translateY(-2px);
}

.btn--light {
  background: var(--white);
  color: var(--olive-dark);
}

.btn--light:hover {
  background: var(--champagne-light);
  transform: translateY(-2px);
}

/* Header / Nav ------------------------------------------------------------ */

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(250, 248, 244, 0.92);
  backdrop-filter: saturate(160%) blur(10px);
  border-bottom: 1px solid var(--border);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 0;
}

.nav__brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--olive-dark);
}

.nav__brand img {
  height: 48px;
  width: auto;
}

.nav__toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  z-index: 110;
}

.nav__toggle span {
  display: block;
  width: 26px;
  height: 2px;
  background: var(--olive-dark);
  margin: 6px 0;
  transition: transform 0.25s ease, opacity 0.25s ease;
}

.nav__links {
  display: flex;
  align-items: center;
  gap: 6px;
}

.nav__links a {
  padding: 10px 16px;
  border-radius: 999px;
  font-weight: 500;
  font-size: 0.96rem;
  color: var(--ink);
  transition: background 0.2s ease, color 0.2s ease;
}

.nav__links a:hover,
.nav__links a[aria-current="page"] {
  background: var(--champagne-light);
  color: var(--olive-dark);
}

.nav__links a.btn {
  margin-left: 8px;
}

@media (max-width: 860px) {
  .nav__toggle {
    display: block;
  }

  .nav__links {
    position: fixed;
    inset: 0 0 0 auto;
    height: 100vh;
    width: min(78vw, 320px);
    background: var(--white);
    flex-direction: column;
    align-items: stretch;
    gap: 4px;
    padding: 96px 28px 32px;
    transform: translateX(100%);
    transition: transform 0.3s ease;
    box-shadow: -18px 0 40px -20px rgba(0, 0, 0, 0.25);
  }

  .nav__links.is-open {
    transform: translateX(0);
  }

  .nav__links a {
    padding: 14px 8px;
    border-bottom: 1px solid var(--border);
    border-radius: 0;
  }

  .nav__links a.btn {
    margin: 16px 0 0;
    border-radius: 999px;
    text-align: center;
    justify-content: center;
    border-bottom: none;
  }

  .nav__scrim {
    position: fixed;
    inset: 0;
    background: rgba(44, 42, 34, 0.35);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
    z-index: 99;
  }

  .nav__scrim.is-open {
    opacity: 1;
    pointer-events: auto;
  }

  body.nav-open {
    overflow: hidden;
  }

  .nav__toggle.is-open span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
  }
  .nav__toggle.is-open span:nth-child(2) {
    opacity: 0;
  }
  .nav__toggle.is-open span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
  }
}

/* Hero --------------------------------------------------------------------*/

.hero {
  position: relative;
  padding: 64px 0 88px;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  inset: -20% -10% auto auto;
  width: 480px;
  height: 480px;
  background: radial-gradient(circle, var(--champagne-light) 0%, rgba(245, 234, 214, 0) 70%);
  z-index: 0;
}

.hero__inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 48px;
  align-items: center;
}

.hero__copy p.lead {
  font-size: 1.1rem;
  color: var(--ink-soft);
  max-width: 46ch;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 28px;
}

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

.hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@media (max-width: 900px) {
  .hero__inner {
    grid-template-columns: 1fr;
  }
  .hero__media {
    aspect-ratio: 16 / 10;
  }
}

/* Page header (non-home pages) -------------------------------------------*/

.page-hero {
  padding: 56px 0 40px;
  text-align: center;
}

.page-hero .eyebrow {
  display: block;
}

.page-hero p {
  max-width: 60ch;
  margin: 0 auto;
  color: var(--ink-soft);
  font-size: 1.05rem;
}

/* Cards / grids ------------------------------------------------------------*/

.grid {
  display: grid;
  gap: 28px;
}

.grid--3 {
  grid-template-columns: repeat(3, 1fr);
}

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

@media (max-width: 860px) {
  .grid--3,
  .grid--2 {
    grid-template-columns: 1fr;
  }
}

.card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.card:hover {
  transform: translateY(-6px);
}

.card__media {
  aspect-ratio: 4 / 3;
  overflow: hidden;
}

.card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.card:hover .card__media img {
  transform: scale(1.06);
}

.card__body {
  padding: 26px 24px 30px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.card__body p {
  color: var(--ink-soft);
  flex: 1;
}

.card__link {
  font-weight: 600;
  color: var(--olive);
  margin-top: auto;
}

.card__link::after {
  content: " \2192";
}

/* Gallery ------------------------------------------------------------------*/

.gallery {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.gallery img {
  width: 100%;
  height: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: 10px;
  box-shadow: var(--shadow);
}

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

/* Split content section (image + text) -------------------------------------*/

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}

.split.reverse .split__media {
  order: 2;
}

.split__media img {
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
}

.split__body .lead {
  font-size: 1.08rem;
  color: var(--ink-soft);
}

@media (max-width: 860px) {
  .split,
  .split.reverse .split__media {
    grid-template-columns: 1fr;
    order: 0;
  }
}

/* Info strip (opening hours / highlights) ----------------------------------*/

.info-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.info-strip .info-item {
  background: var(--white);
  border-radius: var(--radius);
  padding: 28px 24px;
  box-shadow: var(--shadow);
}

.info-strip .info-item h3 {
  margin-bottom: 0.35em;
}

.info-strip .info-item p {
  color: var(--ink-soft);
  margin: 0;
}

@media (max-width: 860px) {
  .info-strip {
    grid-template-columns: 1fr;
  }
}

/* Tabs (tarieven page) -------------------------------------------------------*/

.tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  margin-bottom: 40px;
}

.tab-btn {
  padding: 10px 20px;
  border-radius: 999px;
  border: 2px solid var(--border);
  background: var(--white);
  font-weight: 600;
  font-size: 0.92rem;
  color: var(--ink-soft);
  cursor: pointer;
  transition: all 0.2s ease;
}

.tab-btn:hover {
  border-color: var(--olive-light);
  color: var(--olive-dark);
}

.tab-btn.is-active {
  background: var(--olive);
  border-color: var(--olive);
  color: var(--white);
}

.tab-panel {
  display: none;
}

.tab-panel.is-active {
  display: block;
  animation: fadeIn 0.35s ease;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(6px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Price tables ---------------------------------------------------------------*/

.price-intro {
  max-width: 70ch;
  color: var(--ink-soft);
  margin-bottom: 28px;
}

.price-group {
  margin-bottom: 36px;
}

.price-group h4 {
  color: var(--olive-dark);
  font-family: var(--font-body);
  font-size: 1.05rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  border-bottom: 2px solid var(--champagne);
  padding-bottom: 8px;
  margin-bottom: 4px;
}

.price-list {
  border-top: 1px solid var(--border);
}

.price-item {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 14px 0;
  border-bottom: 1px solid var(--border);
}

.price-item .name {
  font-weight: 600;
  color: var(--ink);
}

.price-item .desc {
  color: var(--ink-soft);
  font-size: 0.92rem;
  margin-top: 2px;
}

.price-item .amount {
  white-space: nowrap;
  font-weight: 700;
  color: var(--olive-dark);
  font-variant-numeric: tabular-nums;
}

.price-note {
  background: var(--champagne-light);
  border-radius: var(--radius);
  padding: 22px 26px;
  margin-top: 12px;
  color: var(--ink-soft);
}

.price-note strong {
  color: var(--olive-dark);
}

/* Callout / CTA banner ----------------------------------------------------*/

.callout {
  background: var(--olive);
  color: var(--champagne-light);
  border-radius: var(--radius);
  padding: 48px;
  text-align: center;
}

.callout h2 {
  color: var(--white);
}

.callout p {
  color: var(--champagne-light);
  max-width: 60ch;
  margin: 0 auto 24px;
}

/* Contact page ---------------------------------------------------------------*/

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
}

@media (max-width: 860px) {
  .contact-grid {
    grid-template-columns: 1fr;
  }
}

.contact-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 32px;
  box-shadow: var(--shadow);
  margin-bottom: 24px;
}

.contact-card h3 {
  margin-bottom: 0.6em;
}

.hours-table {
  width: 100%;
  border-collapse: collapse;
}

.hours-table td {
  padding: 8px 0;
  border-bottom: 1px solid var(--border);
}

.hours-table td:first-child {
  font-weight: 600;
  color: var(--ink);
  width: 40%;
}

.hours-table td:last-child {
  color: var(--ink-soft);
  text-align: right;
}

.map-embed {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  border: none;
  width: 100%;
  height: 340px;
}

/* Footer -----------------------------------------------------------------*/

.site-footer {
  background: var(--olive-dark);
  color: var(--champagne-light);
  padding: 48px 0 24px;
  margin-top: 64px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 32px;
  margin-bottom: 32px;
}

@media (max-width: 720px) {
  .footer-grid {
    grid-template-columns: 1fr;
  }
}

.site-footer h4 {
  color: var(--champagne);
  font-family: var(--font-body);
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 1em;
}

.site-footer a:hover {
  color: var(--white);
}

.site-footer p {
  color: rgba(245, 234, 214, 0.8);
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
}

.footer-brand img {
  height: 42px;
}

.footer-brand span {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  color: var(--white);
}

.footer-bottom {
  border-top: 1px solid rgba(245, 234, 214, 0.2);
  padding-top: 20px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: space-between;
  font-size: 0.85rem;
  color: rgba(245, 234, 214, 0.65);
}

.social-links {
  display: flex;
  gap: 12px;
  margin-top: 8px;
}

.social-links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(245, 234, 214, 0.12);
  color: var(--champagne-light);
}

.social-links a:hover {
  background: var(--champagne);
  color: var(--olive-dark);
}
