/* ============================================
   CHEZ WILLY ZOMERBAR — Warm Retro Theme
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,700;0,900;1,400&family=DM+Sans:ital,wght@0,400;0,500;0,700;1,400&family=Permanent+Marker&display=swap');

/* --- CSS Variables --- */
:root {
  --color-cream: #F5EBD8;
  --color-cream-light: #FBF6ED;
  --color-brown-dark: #3B2314;
  --color-brown: #5C3A1E;
  --color-brown-medium: #8B5E3C;
  --color-orange: #D4771A;
  --color-orange-light: #E8943A;
  --color-green: #4A6741;
  --color-green-dark: #2F4A28;
  --color-green-light: #6B8F60;
  --color-gold: #C4952A;
  --color-red-warm: #B5442A;
  --color-white: #FFFDF8;
  --color-black: #1A1209;
  --color-overlay: rgba(59, 35, 20, 0.7);

  --font-display: 'Playfair Display', Georgia, serif;
  --font-body: 'DM Sans', 'Segoe UI', sans-serif;
  --font-accent: 'Permanent Marker', cursive;

  --max-width: 1200px;
  --nav-height: 80px;
  --border-radius: 8px;
  --transition: 0.3s ease;
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  background-color: var(--color-cream);
  color: var(--color-brown-dark);
  line-height: 1.7;
  overflow-x: hidden;
}

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

a {
  text-decoration: none;
  color: inherit;
  transition: color var(--transition);
}

ul { list-style: none; }

.container {
  width: 90%;
  max-width: var(--max-width);
  margin: 0 auto;
}

/* --- Texture overlay on body --- */
body::before {
  content: '';
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%238B5E3C' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 0;
}

/* --- NAVIGATION --- */
.navbar {
  position: fixed;
  top: 0; left: 0;
  width: 100%;
  height: var(--nav-height);
  z-index: 1000;
  transition: background var(--transition), box-shadow var(--transition);
}

.navbar.scrolled {
  background: rgba(245, 235, 216, 0.97);
  backdrop-filter: blur(10px);
  box-shadow: 0 2px 20px rgba(59, 35, 20, 0.1);
}

.navbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  z-index: 1001;
}

.nav-logo img {
  height: 55px;
  width: 55px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--color-orange);
}

.nav-logo span {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--color-brown-dark);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-links a {
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--color-brown);
  position: relative;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0;
  width: 0;
  height: 2px;
  background: var(--color-orange);
  transition: width var(--transition);
}

.nav-links a:hover::after,
.nav-links a.active::after {
  width: 100%;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--color-orange);
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  z-index: 1001;
  background: none;
  border: none;
  padding: 5px;
}

.hamburger span {
  display: block;
  width: 28px;
  height: 3px;
  background: var(--color-brown-dark);
  border-radius: 2px;
  transition: var(--transition);
}

.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 6px);
}
.hamburger.active span:nth-child(2) {
  opacity: 0;
}
.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -6px);
}

/* --- HERO SECTION --- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  background: linear-gradient(135deg, var(--color-brown-dark) 0%, var(--color-brown) 50%, var(--color-green-dark) 100%);
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('../images/sfeer-sunset.jpg');
  background-size: cover;
  background-position: center 40%;
  animation: slowZoom 25s ease-in-out infinite alternate;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, rgba(59,35,20,0.4) 0%, rgba(59,35,20,0.8) 100%);
  z-index: 2;
}
@keyframes slowZoom {
  from { transform: scale(1); }
  to   { transform: scale(1.08); }
}
/* Decorative sun rays */
.hero::before {
  content: '';
  position: absolute;
  top: -150px; left: 50%;
  transform: translateX(-50%);
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(212,119,26,0.15) 0%, transparent 70%);
  border-radius: 50%;
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 3;
  padding: 0 20px;
  animation: fadeInUp 1s ease-out;
}

.hero-logo {
  width: 160px;
  height: 160px;
  border-radius: 50%;
  object-fit: cover;
  border: 4px solid var(--color-orange);
  margin: 0 auto 30px;
  box-shadow: 0 0 60px rgba(212,119,26,0.3);
}

.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  color: var(--color-cream);
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: 8px;
}

.hero h1 .accent {
  color: var(--color-orange);
  font-family: var(--font-accent);
  display: block;
  font-size: 0.6em;
  letter-spacing: 0.05em;
}

.hero-subtitle {
  font-family: var(--font-body);
  font-size: clamp(1rem, 2.5vw, 1.3rem);
  color: var(--color-cream);
  opacity: 0.85;
  margin-bottom: 10px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.hero-date {
  font-family: var(--font-accent);
  font-size: clamp(1.1rem, 3vw, 1.6rem);
  color: var(--color-orange-light);
  margin-bottom: 40px;
}

.hero-cta {
  display: inline-flex;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: center;
}

/* --- BUTTONS --- */
.btn {
  display: inline-block;
  padding: 14px 36px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  border-radius: 50px;
  cursor: pointer;
  transition: all var(--transition);
  border: 2px solid transparent;
}

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

.btn-primary:hover {
  background: var(--color-orange-light);
  border-color: var(--color-orange-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(212,119,26,0.35);
}

.btn-outline {
  background: transparent;
  color: var(--color-cream);
  border-color: var(--color-cream);
}

.btn-outline:hover {
  background: var(--color-cream);
  color: var(--color-brown-dark);
  transform: translateY(-2px);
}

/* --- SECTION STYLES --- */
.section {
  position: relative;
  padding: 100px 0;
  z-index: 1;
}

.section-dark {
  background: var(--color-brown-dark);
  color: var(--color-cream);
}

.section-green {
  background: var(--color-green-dark);
  color: var(--color-cream);
}

.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-header h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 900;
  margin-bottom: 8px;
}

.section-header .label {
  font-family: var(--font-accent);
  font-size: 1rem;
  color: var(--color-orange);
  letter-spacing: 0.05em;
}

.section-header p {
  font-size: 1.1rem;
  opacity: 0.8;
  max-width: 600px;
  margin: 15px auto 0;
}

.divider-icon {
  display: block;
  margin: 15px auto 0;
  width: 60px;
  height: 3px;
  background: var(--color-orange);
  border-radius: 2px;
}

/* --- HIGHLIGHTS / FEATURES GRID --- */
.highlights-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}

.highlight-card {
  background: var(--color-white);
  border-radius: var(--border-radius);
  padding: 40px 30px;
  text-align: center;
  border: 1px solid rgba(139,94,60,0.1);
  transition: transform var(--transition), box-shadow var(--transition);
}

.highlight-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(59,35,20,0.1);
}

.highlight-card .icon {
  font-size: 2.8rem;
  margin-bottom: 20px;
}

.highlight-card h3 {
  font-family: var(--font-display);
  font-size: 1.3rem;
  margin-bottom: 10px;
  color: var(--color-brown-dark);
}

.highlight-card p {
  font-size: 0.95rem;
  opacity: 0.75;
}

/* --- OPENINGSUREN --- */
.openingsuren {
  background: var(--color-white);
  border-radius: var(--border-radius);
  padding: 40px;
  max-width: 500px;
  margin: 0 auto;
  border: 2px solid var(--color-orange);
  position: relative;
}

.openingsuren h3 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  margin-bottom: 20px;
  text-align: center;
  color: var(--color-brown-dark);
}

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

.openingsuren td {
  padding: 8px 0;
  border-bottom: 1px dashed rgba(139,94,60,0.2);
  font-size: 1rem;
}

.openingsuren td:first-child {
  font-weight: 700;
  color: var(--color-brown);
}

.openingsuren td:last-child {
  text-align: right;
  color: var(--color-green);
  font-weight: 500;
}

.openingsuren tr:last-child td {
  border-bottom: none;
}

/* --- PROGRAMMA / CALENDAR --- */
.program-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 25px;
}

.program-card {
  background: var(--color-white);
  border-radius: var(--border-radius);
  overflow: hidden;
  border: 1px solid rgba(139,94,60,0.1);
  transition: transform var(--transition), box-shadow var(--transition);
}

.program-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 35px rgba(59,35,20,0.12);
}

.program-card-image {
  height: 200px;
  background: linear-gradient(135deg, var(--color-brown) 0%, var(--color-green-dark) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.program-card-image .event-icon {
  font-size: 3.5rem;
  z-index: 1;
}

.program-card-date {
  position: absolute;
  top: 15px; right: 15px;
  background: var(--color-orange);
  color: var(--color-white);
  padding: 8px 14px;
  border-radius: 6px;
  font-weight: 700;
  font-size: 0.85rem;
  text-align: center;
  line-height: 1.3;
}

.program-card-date .day {
  display: block;
  font-size: 1.4rem;
}

.program-card-body {
  padding: 25px;
}

.program-card-body h3 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  margin-bottom: 8px;
  color: var(--color-brown-dark);
}

.program-card-body .time {
  font-size: 0.85rem;
  color: var(--color-orange);
  font-weight: 700;
  margin-bottom: 8px;
  text-transform: uppercase;
}

.program-card-body p {
  font-size: 0.9rem;
  opacity: 0.75;
  line-height: 1.6;
}

.program-tag {
  display: inline-block;
  padding: 4px 12px;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  border-radius: 20px;
  margin-top: 12px;
}

.tag-music { background: rgba(212,119,26,0.15); color: var(--color-orange); }
.tag-food { background: rgba(74,103,65,0.15); color: var(--color-green); }
.tag-party { background: rgba(181,68,42,0.15); color: var(--color-red-warm); }
.tag-family { background: rgba(196,149,42,0.15); color: var(--color-gold); }

/* --- OVER ONS --- */
.about-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.about-image {
  border-radius: var(--border-radius);
  overflow: hidden;
  aspect-ratio: 4/3;
  background: linear-gradient(135deg, var(--color-brown-medium), var(--color-green));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 5rem;
  position: relative;
}

.about-image::after {
  content: '';
  position: absolute;
  inset: 10px;
  border: 2px dashed var(--color-orange);
  border-radius: var(--border-radius);
  opacity: 0.4;
}

.about-text h3 {
  font-family: var(--font-display);
  font-size: 1.8rem;
  margin-bottom: 20px;
  color: var(--color-brown-dark);
}

.about-text p {
  margin-bottom: 16px;
  font-size: 1.05rem;
  opacity: 0.85;
}

.about-text .signature {
  font-family: var(--font-accent);
  font-size: 1.3rem;
  color: var(--color-orange);
  margin-top: 25px;
}

/* --- TEAM --- */
.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 30px;
  margin-top: 50px;
}

.team-member {
  text-align: center;
}

.team-member .avatar {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  margin: 0 auto 15px;
  background: linear-gradient(135deg, var(--color-brown-medium), var(--color-orange));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
  border: 3px solid var(--color-orange);
}

.team-member h4 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  margin-bottom: 4px;
}

.team-member p {
  font-size: 0.85rem;
  opacity: 0.65;
  font-style: italic;
}

/* --- SPONSORS --- */
.sponsors-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 30px;
  align-items: center;
}

.sponsor-card {
  background: var(--color-white);
  border-radius: var(--border-radius);
  padding: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 120px;
  border: 1px solid rgba(139,94,60,0.1);
  transition: transform var(--transition), box-shadow var(--transition);
}

.sponsor-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(59,35,20,0.08);
}

.sponsor-card .placeholder {
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--color-brown-medium);
  opacity: 0.5;
  font-size: 1rem;
  text-align: center;
}

/* --- CONTACT --- */
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
}

.contact-info-block {
  margin-bottom: 30px;
}

.contact-info-block .icon-label {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 8px;
}

.contact-info-block .icon-label .ci-icon {
  font-size: 1.5rem;
}

.contact-info-block .icon-label h4 {
  font-family: var(--font-display);
  font-size: 1.1rem;
}

.contact-info-block p,
.contact-info-block a {
  font-size: 1rem;
  opacity: 0.85;
  padding-left: 40px;
}

.contact-info-block a:hover {
  color: var(--color-orange);
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.contact-form input,
.contact-form textarea {
  padding: 14px 20px;
  border: 2px solid rgba(139,94,60,0.2);
  border-radius: var(--border-radius);
  font-family: var(--font-body);
  font-size: 1rem;
  background: var(--color-white);
  color: var(--color-brown-dark);
  transition: border-color var(--transition);
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--color-orange);
}

.contact-form textarea {
  min-height: 140px;
  resize: vertical;
}

.map-container {
  margin-top: 60px;
  border-radius: var(--border-radius);
  overflow: hidden;
  border: 2px solid rgba(139,94,60,0.15);
}

.map-container iframe {
  width: 100%;
  height: 350px;
  border: none;
}

/* --- FOOTER --- */
.footer {
  background: var(--color-brown-dark);
  color: var(--color-cream);
  padding: 60px 0 30px;
  position: relative;
  z-index: 1;
}

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

.footer h4 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  margin-bottom: 15px;
  color: var(--color-orange);
}

.footer p,
.footer a {
  font-size: 0.9rem;
  opacity: 0.7;
  line-height: 1.8;
}

.footer a:hover {
  opacity: 1;
  color: var(--color-orange);
}

.footer-links a {
  display: block;
}

.footer-bottom {
  border-top: 1px solid rgba(245,235,216,0.1);
  padding-top: 25px;
  text-align: center;
  font-size: 0.85rem;
  opacity: 0.5;
}

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

.social-links a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid rgba(245,235,216,0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  transition: all var(--transition);
}

.social-links a img {
  filter: brightness(0) invert(1);
}
.social-links a:hover {
  background: var(--color-orange);
  border-color: var(--color-orange);
  opacity: 1;
}

/* --- SCROLL ANIMATIONS --- */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

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

/* --- PAGE HEADER (non-home pages) --- */
.page-header {
  padding: 140px 0 60px;
  background: linear-gradient(135deg, var(--color-brown-dark), var(--color-brown));
  text-align: center;
  color: var(--color-cream);
  position: relative;
}

.page-header::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 100%; height: 60px;
  background: var(--color-cream);
  clip-path: polygon(0 100%, 100% 100%, 100% 0, 0 100%);
}

.page-header h1 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 900;
}

.page-header .label {
  font-family: var(--font-accent);
  color: var(--color-orange);
  font-size: 1rem;
}

/* --- HERO VIDEO BACKGROUND --- */

/* Blurred poster image fills the sides behind the vertical video */
.hero-video-bg {
  position: absolute;
  inset: -20px;
  width: calc(100% + 40px);
  height: calc(100% + 40px);
  background-size: cover;
  background-position: center;
  filter: blur(25px) brightness(0.4);
  z-index: 0;
}

/* Main video — contained so the vertical footage isn't awkwardly cropped */
.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  z-index: 1;

}

.hero-scroll-indicator {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 4;
  color: var(--color-cream);
  text-align: center;
  opacity: 0.7;
  font-size: 0.8rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  animation: fadeInUp 1.5s ease-out 0.5s both;
}

.scroll-arrow {
  font-size: 1.2rem;
  margin-top: 5px;
  animation: bounceDown 1.5s ease infinite;
}

@keyframes bounceDown {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(8px); }
}

/* --- FULL-WIDTH PHOTO SECTIONS --- */
.photo-full {
  position: relative;
  width: 100%;
  height: 70vh;
  min-height: 400px;
  overflow: hidden;
  z-index: 1;
}

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

.photo-full-caption {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: rgba(59, 35, 20, 0.45);
  color: var(--color-cream);
  padding: 20px;
}

.photo-full-caption h2 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 4vw, 3.2rem);
  font-weight: 900;
  line-height: 1.2;
  max-width: 700px;
}

.photo-full-caption .label {
  font-family: var(--font-accent);
  font-size: 1rem;
  color: var(--color-orange-light);
  margin-bottom: 5px;
}

.photo-full-caption p {
  font-size: 1.1rem;
  opacity: 0.85;
  margin-top: 10px;
  max-width: 500px;
}

/* --- PHOTO MOSAIC --- */
.photo-mosaic {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 280px;
  gap: 10px;
}

.mosaic-item {
  border-radius: var(--border-radius);
  overflow: hidden;
}

.mosaic-item.mosaic-large {
  grid-column: span 2;
}

.mosaic-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.mosaic-item:hover img {
  transform: scale(1.04);
}

/* --- ABOUT TEASER (short block on homepage) --- */
.about-teaser {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}

.about-teaser-img {
  border-radius: var(--border-radius);
  overflow: hidden;
  aspect-ratio: 16/10;
}

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

.about-teaser-text h2 {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  font-weight: 900;
  color: var(--color-brown-dark);
  line-height: 1.3;
  margin: 10px 0 25px;
}

/* --- HIGHLIGHT PHOTOS --- */
.highlight-photo {
  width: 100%;
  height: 180px;
  border-radius: var(--border-radius);
  overflow: hidden;
  margin-bottom: 20px;
}

.highlight-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.highlight-card:hover .highlight-photo img {
  transform: scale(1.05);
}

/* --- PHOTO GALLERY --- */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}

.gallery-item {
  border-radius: var(--border-radius);
  overflow: hidden;
  aspect-ratio: 1;
  cursor: pointer;
}

.gallery-item.gallery-wide {
  grid-column: span 2;
  aspect-ratio: 16/9;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease, filter 0.3s ease;
}

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

/* --- VIDEO --- */
.video-container {
  max-width: 800px;
  margin: 0 auto;
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: 0 15px 50px rgba(59,35,20,0.15);
  border: 3px solid var(--color-orange);
}

.video-container video {
  width: 100%;
  display: block;
}

/* --- RESPONSIVE --- */
@media (max-width: 768px) {
  .nav-links {
    position: fixed;
    top: 0; right: -100%;
    width: 80%;
    height: 100vh;
    background: var(--color-cream);
    flex-direction: column;
    justify-content: center;
    gap: 24px;
    transition: right var(--transition);
    box-shadow: -5px 0 30px rgba(0,0,0,0.15);
  }

  .nav-links.open {
    right: 0;
  }

  .nav-links a {
    font-size: 1.2rem;
  }

  .hamburger {
    display: flex;
  }

  .hero-logo {
    width: 120px;
    height: 120px;
  }

  .section {
    padding: 60px 0;
  }

  .about-layout,
  .contact-layout {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 25px;
  }

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

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

  .about-teaser {
    grid-template-columns: 1fr;
    gap: 25px;
  }

  .photo-full {
    height: 50vh;
    min-height: 280px;
  }

  .program-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .hero-cta {
    flex-direction: column;
    align-items: center;
  }

  .btn {
    width: 100%;
    max-width: 280px;
    text-align: center;
  }

  .openingsuren {
    padding: 25px;
  }
}
