/* ============================================
   BRASSERIE 'T HORLOGEKEN - MAIN STYLESHEET
   ============================================ */

:root {
  --navy:        #1a2a4a;
  --navy-light:  #243560;
  --navy-dark:   #111c30;
  --gold:        #c9a84c;
  --gold-light:  #e0c06a;
  --gold-dark:   #a8883a;
  --cream:       #f5f0e8;
  --cream-dark:  #ede6d8;
  --white:       #ffffff;
  --text:        #3a3a3a;
  --text-light:  #6a6a6a;
  --shadow-sm:   0 2px 8px rgba(0,0,0,0.10);
  --shadow:      0 4px 24px rgba(0,0,0,0.14);
  --shadow-lg:   0 8px 40px rgba(0,0,0,0.20);
  --transition:  all 0.3s ease;
  --radius:      6px;
}

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

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

body {
  font-family: 'Lato', 'Segoe UI', sans-serif;
  color: var(--text);
  background: var(--cream);
  line-height: 1.7;
}

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

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

ul { list-style: none; }

/* ---- TYPOGRAPHY ---- */
h1, h2, h3, h4 {
  font-family: 'Playfair Display', Georgia, serif;
  line-height: 1.25;
  color: var(--navy);
}

.section-title {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  color: var(--navy);
  text-align: center;
  margin-bottom: 0.4rem;
}

.section-subtitle {
  text-align: center;
  color: var(--text-light);
  font-size: 1rem;
  margin-bottom: 3rem;
  letter-spacing: 0.04em;
}

.gold-divider {
  width: 60px;
  height: 3px;
  background: var(--gold);
  margin: 0.75rem auto 0.75rem;
  border-radius: 2px;
}

/* ---- NAVIGATION ---- */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(26, 42, 74, 0.97);
  backdrop-filter: blur(8px);
  padding: 0 2rem;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  box-shadow: 0 2px 16px rgba(0,0,0,0.3);
  transition: var(--transition);
}

.navbar.scrolled {
  background: var(--navy-dark);
  height: 60px;
}

.nav-logo {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.nav-logo .brand {
  font-family: 'Playfair Display', serif;
  color: var(--gold);
  font-size: 1.2rem;
  font-weight: 700;
  letter-spacing: 0.05em;
}

.nav-logo .sub {
  color: rgba(255,255,255,0.6);
  font-size: 0.65rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav-links a {
  color: rgba(255,255,255,0.85);
  font-size: 0.9rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-weight: 600;
  padding: 0.3rem 0;
  border-bottom: 2px solid transparent;
  transition: var(--transition);
}

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

.nav-links .btn-nav {
  background: var(--gold);
  color: var(--navy-dark) !important;
  padding: 0.45rem 1.2rem;
  border-radius: var(--radius);
  border-bottom: none !important;
  font-weight: 700;
  transition: var(--transition);
}

.nav-links .btn-nav:hover {
  background: var(--gold-light);
  transform: translateY(-1px);
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
}

.hamburger span {
  display: block;
  width: 26px;
  height: 2px;
  background: var(--gold);
  border-radius: 2px;
  transition: var(--transition);
}

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

/* Mobile nav drawer */
.mobile-nav {
  display: none;
  flex-direction: column;
  background: var(--navy-dark);
  position: fixed;
  top: 70px; left: 0; right: 0;
  z-index: 999;
  padding: 1.5rem 2rem 2rem;
  gap: 1.2rem;
  box-shadow: var(--shadow-lg);
}

.mobile-nav.open { display: flex; }

.mobile-nav a {
  color: rgba(255,255,255,0.85);
  font-size: 1.05rem;
  letter-spacing: 0.05em;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  padding-bottom: 1rem;
}

.mobile-nav a:hover { color: var(--gold); }

/* ---- HERO ---- */
.hero {
  position: relative;
  height: 100vh;
  min-height: 620px;
  background:
    linear-gradient(160deg, rgba(17,28,48,0.88) 0%, rgba(26,42,74,0.75) 50%, rgba(17,28,48,0.92) 100%),
    repeating-linear-gradient(
      45deg,
      rgba(201,168,76,0.03) 0px,
      rgba(201,168,76,0.03) 1px,
      transparent 1px,
      transparent 16px
    ),
    var(--navy-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
}

/* Decorative corner ornaments */
.hero::before,
.hero::after {
  content: '';
  position: absolute;
  width: 280px;
  height: 280px;
  border: 2px solid rgba(201,168,76,0.2);
  border-radius: 50%;
}
.hero::before { top: -80px; left: -80px; }
.hero::after  { bottom: -80px; right: -80px; }

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 760px;
  padding: 0 2rem;
}

.hero-eyebrow {
  display: inline-block;
  color: var(--gold);
  letter-spacing: 0.25em;
  text-transform: uppercase;
  font-size: 0.8rem;
  font-weight: 700;
  margin-bottom: 1.2rem;
  border: 1px solid rgba(201,168,76,0.4);
  padding: 0.35rem 1.2rem;
  border-radius: 20px;
}

.hero h1 {
  font-size: clamp(2.8rem, 8vw, 5.5rem);
  color: var(--white);
  margin-bottom: 0.1rem;
  font-style: italic;
  text-shadow: 0 2px 20px rgba(0,0,0,0.4);
}

.hero h1 span { color: var(--gold); font-style: normal; }

.hero-tagline {
  color: rgba(255,255,255,0.7);
  font-size: clamp(1rem, 2vw, 1.2rem);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
}

.hero-sep {
  display: flex;
  align-items: center;
  gap: 1rem;
  justify-content: center;
  margin: 1.5rem 0;
}
.hero-sep::before,
.hero-sep::after {
  content: '';
  width: 60px;
  height: 1px;
  background: rgba(201,168,76,0.5);
}
.hero-sep span {
  color: var(--gold);
  font-size: 0.85rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.hero-desc {
  color: rgba(255,255,255,0.75);
  font-size: 1.05rem;
  max-width: 520px;
  margin: 0 auto 2.5rem;
}

.hero-btns {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.btn-primary {
  background: var(--gold);
  color: var(--navy-dark);
  padding: 0.85rem 2.2rem;
  border-radius: var(--radius);
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  transition: var(--transition);
  box-shadow: 0 4px 16px rgba(201,168,76,0.35);
}

.btn-primary:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(201,168,76,0.45);
}

.btn-outline {
  border: 2px solid rgba(255,255,255,0.5);
  color: var(--white);
  padding: 0.85rem 2.2rem;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  transition: var(--transition);
}

.btn-outline:hover {
  border-color: var(--gold);
  color: var(--gold);
  transform: translateY(-2px);
}

.hero-scroll {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.4rem;
  color: rgba(255,255,255,0.5);
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  animation: bounce 2s infinite;
}

.hero-scroll i { font-size: 1rem; color: var(--gold); }

@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50%       { transform: translateX(-50%) translateY(6px); }
}

/* ---- BADGES ROW ---- */
.badges-row {
  background: var(--navy);
  padding: 1.4rem 2rem;
  display: flex;
  justify-content: center;
  gap: 3rem;
  flex-wrap: wrap;
}

.badge-item {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  color: rgba(255,255,255,0.8);
  font-size: 0.88rem;
  letter-spacing: 0.05em;
}

.badge-item i { color: var(--gold); font-size: 1.1rem; }

/* ---- SECTIONS ---- */
section { padding: 6rem 2rem; }

.container {
  max-width: 1100px;
  margin: 0 auto;
}

/* ---- ABOUT ---- */
.about {
  background: var(--cream);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.about-text h2 {
  font-size: clamp(1.7rem, 3vw, 2.4rem);
  margin-bottom: 1.2rem;
}

.about-text .lead {
  font-size: 1.08rem;
  color: var(--text);
  margin-bottom: 1rem;
  line-height: 1.8;
}

.about-text p {
  color: var(--text-light);
  margin-bottom: 1rem;
}

.about-text .gold-bar {
  width: 50px;
  height: 3px;
  background: var(--gold);
  margin-bottom: 1.5rem;
  border-radius: 2px;
}

.about-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin-top: 2rem;
}

.stat-card {
  background: var(--navy);
  color: var(--white);
  padding: 1.5rem;
  border-radius: var(--radius);
  text-align: center;
  border-bottom: 3px solid var(--gold);
}

.stat-card .num {
  font-family: 'Playfair Display', serif;
  font-size: 2.2rem;
  color: var(--gold);
  font-weight: 700;
  display: block;
}

.stat-card .label {
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.65);
}

.about-visual {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.about-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 1.8rem;
  box-shadow: var(--shadow);
  border-left: 4px solid var(--gold);
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  transition: var(--transition);
}

.about-card:hover { transform: translateX(4px); box-shadow: var(--shadow-lg); }

.about-card i { color: var(--gold); font-size: 1.4rem; margin-top: 0.1rem; }

.about-card h4 { font-size: 1rem; margin-bottom: 0.3rem; color: var(--navy); }
.about-card p  { font-size: 0.88rem; color: var(--text-light); }

/* ---- MENU PREVIEW ---- */
.menu-preview {
  background: var(--navy-dark);
  color: var(--white);
}

.menu-preview .section-title { color: var(--white); }
.menu-preview .section-subtitle { color: rgba(255,255,255,0.55); }

.menu-cats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
  margin-bottom: 3rem;
}

.menu-cat-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(201,168,76,0.2);
  border-radius: var(--radius);
  padding: 2rem 1.5rem;
  text-align: center;
  transition: var(--transition);
  cursor: pointer;
}

.menu-cat-card:hover {
  background: rgba(201,168,76,0.08);
  border-color: var(--gold);
  transform: translateY(-3px);
}

.menu-cat-card i { font-size: 2rem; color: var(--gold); margin-bottom: 0.8rem; }

.menu-cat-card h3 {
  color: var(--white);
  font-size: 1.1rem;
  margin-bottom: 0.4rem;
}

.menu-cat-card p { color: rgba(255,255,255,0.5); font-size: 0.82rem; }

.menu-preview-cta {
  text-align: center;
}

/* ---- SFEER / HIGHLIGHTS ---- */
.sfeer {
  background: var(--cream-dark);
}

.sfeer-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.sfeer-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.sfeer-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }

.sfeer-img {
  height: 180px;
  background: var(--navy);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3.5rem;
}

.sfeer-img.blue  { background: linear-gradient(135deg, #1a2a4a 0%, #243560 100%); }
.sfeer-img.dark  { background: linear-gradient(135deg, #111c30 0%, #1a2a4a 100%); }
.sfeer-img.gold  { background: linear-gradient(135deg, #a8883a 0%, #c9a84c 100%); }

.sfeer-body { padding: 1.5rem; }
.sfeer-body h3 { font-size: 1.15rem; margin-bottom: 0.5rem; }
.sfeer-body p  { color: var(--text-light); font-size: 0.9rem; }

/* ---- CONTACT PREVIEW ---- */
.contact-preview {
  background: var(--cream);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}

.contact-info h2 { font-size: 2rem; margin-bottom: 0.5rem; }
.contact-info .gold-bar { width: 50px; height: 3px; background: var(--gold); margin-bottom: 1.5rem; border-radius: 2px; }

.info-row {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  margin-bottom: 1.5rem;
}

.info-row i {
  color: var(--gold);
  font-size: 1.1rem;
  margin-top: 0.2rem;
  width: 20px;
  flex-shrink: 0;
}

.info-row .label { font-size: 0.75rem; text-transform: uppercase; letter-spacing: 0.1em; color: var(--text-light); }
.info-row .value { font-weight: 600; color: var(--navy); font-size: 0.98rem; }
.info-row .value a { color: var(--gold-dark); }
.info-row .value a:hover { text-decoration: underline; }

.hours-table { width: 100%; border-collapse: collapse; margin-top: 0.5rem; }
.hours-table td { padding: 0.25rem 0; font-size: 0.9rem; color: var(--navy); font-weight: 600; }
.hours-table td:first-child { color: var(--text-light); font-weight: 400; padding-right: 1.5rem; }
.hours-table td:last-child { text-align: right; }

.map-wrapper {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  height: 100%;
  min-height: 320px;
  background: var(--navy-light);
}

.map-wrapper iframe {
  width: 100%;
  height: 100%;
  min-height: 320px;
  border: none;
  display: block;
}

/* ---- CTA BANNER ---- */
.cta-banner {
  background: var(--gold);
  padding: 4rem 2rem;
  text-align: center;
}

.cta-banner h2 {
  color: var(--navy-dark);
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  margin-bottom: 0.5rem;
}

.cta-banner p { color: rgba(26,42,74,0.75); margin-bottom: 1.8rem; font-size: 1.05rem; }

.btn-dark {
  background: var(--navy-dark);
  color: var(--gold);
  padding: 0.85rem 2.2rem;
  border-radius: var(--radius);
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  transition: var(--transition);
  display: inline-block;
}

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

/* ---- FOOTER ---- */
footer {
  background: var(--navy-dark);
  color: rgba(255,255,255,0.65);
  padding: 3rem 2rem 1.5rem;
}

.footer-grid {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 3rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  margin-bottom: 1.5rem;
}

.footer-brand .name {
  font-family: 'Playfair Display', serif;
  color: var(--gold);
  font-size: 1.4rem;
  margin-bottom: 0.3rem;
}

.footer-brand .tagline {
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
  margin-bottom: 1rem;
}

.footer-brand p { font-size: 0.88rem; max-width: 280px; }

.social-links { display: flex; gap: 0.8rem; margin-top: 1.2rem; }

.social-links a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.6);
  font-size: 0.9rem;
  transition: var(--transition);
}

.social-links a:hover { border-color: var(--gold); color: var(--gold); }

.footer-col h4 {
  color: var(--white);
  font-family: 'Playfair Display', serif;
  font-size: 1rem;
  margin-bottom: 1rem;
}

.footer-col ul li { margin-bottom: 0.5rem; font-size: 0.87rem; }
.footer-col ul a:hover { color: var(--gold); }

.footer-bottom {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.78rem;
  color: rgba(255,255,255,0.3);
  flex-wrap: wrap;
  gap: 0.5rem;
}

/* ============================================
   MENU PAGE
   ============================================ */

.page-hero {
  background: linear-gradient(160deg, var(--navy-dark) 0%, var(--navy) 100%);
  padding: 7rem 2rem 4rem;
  text-align: center;
}

.page-hero h1 { color: var(--white); font-size: clamp(2rem, 5vw, 3.5rem); }
.page-hero p  { color: rgba(255,255,255,0.6); margin-top: 0.8rem; font-size: 1rem; letter-spacing: 0.05em; }

.menu-page { background: var(--cream); padding: 3rem 2rem 5rem; }

/* Tab navigation */
.menu-tabs {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-bottom: 3rem;
  flex-wrap: wrap;
}

.tab-btn {
  background: none;
  border: 2px solid transparent;
  border-color: rgba(26,42,74,0.15);
  color: var(--text-light);
  padding: 0.6rem 1.6rem;
  border-radius: 30px;
  font-family: 'Lato', sans-serif;
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  cursor: pointer;
  transition: var(--transition);
}

.tab-btn:hover    { border-color: var(--gold); color: var(--navy); }
.tab-btn.active   { background: var(--navy); border-color: var(--navy); color: var(--gold); }

.tab-panel { display: none; }
.tab-panel.active { display: block; }

/* Menu category section */
.menu-section {
  margin-bottom: 3.5rem;
}

.menu-section-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
  padding-bottom: 0.8rem;
  border-bottom: 2px solid var(--gold);
}

.menu-section-header i { color: var(--gold); font-size: 1.3rem; }

.menu-section-header h2 {
  font-size: 1.5rem;
  color: var(--navy);
}

.menu-section-header .desc {
  font-size: 0.83rem;
  color: var(--text-light);
  margin-left: auto;
  font-style: italic;
}

/* Menu items */
.menu-items { display: flex; flex-direction: column; gap: 0; }

.menu-item {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding: 0.7rem 0;
  border-bottom: 1px dashed rgba(0,0,0,0.08);
  gap: 1rem;
}

.menu-item:last-child { border-bottom: none; }

.menu-item .item-name {
  font-weight: 600;
  color: var(--navy);
  font-size: 0.97rem;
}

.menu-item .item-desc {
  font-size: 0.82rem;
  color: var(--text-light);
  margin-top: 0.15rem;
}

.menu-item .item-price {
  font-family: 'Playfair Display', serif;
  color: var(--gold-dark);
  font-weight: 700;
  font-size: 1rem;
  white-space: nowrap;
  flex-shrink: 0;
}

/* Two-column menu grid */
.menu-grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 3rem;
}

/* Menu note */
.menu-note {
  background: rgba(201,168,76,0.1);
  border-left: 4px solid var(--gold);
  padding: 0.8rem 1.2rem;
  border-radius: 0 var(--radius) var(--radius) 0;
  font-size: 0.85rem;
  color: var(--text-light);
  font-style: italic;
  margin-top: 0.5rem;
}

/* ============================================
   CONTACT PAGE
   ============================================ */
.contact-page { background: var(--cream); padding: 4rem 2rem 5rem; }

.contact-full-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
  max-width: 1100px;
  margin: 0 auto;
}

.contact-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 2.5rem;
  box-shadow: var(--shadow);
}

.contact-card h3 {
  font-size: 1.4rem;
  margin-bottom: 0.4rem;
}

.contact-card .gold-bar { width: 40px; height: 3px; background: var(--gold); margin-bottom: 1.5rem; border-radius: 2px; }

.hours-grid { display: flex; flex-direction: column; gap: 0.5rem; }

.hour-row {
  display: flex;
  justify-content: space-between;
  padding: 0.4rem 0;
  border-bottom: 1px solid var(--cream-dark);
  font-size: 0.9rem;
}

.hour-row:last-child { border-bottom: none; }
.hour-row .day { color: var(--text-light); }
.hour-row .time { font-weight: 600; color: var(--navy); }
.hour-row .closed { color: #c0392b; font-weight: 600; }

.map-full {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  height: 420px;
}

.map-full iframe { width: 100%; height: 100%; border: none; }

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 900px) {
  .about-grid,
  .contact-grid,
  .contact-full-grid,
  .footer-grid { grid-template-columns: 1fr; }

  .footer-grid { gap: 2rem; }

  .about-visual { margin-top: 0; }

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

  .menu-grid-2 { grid-template-columns: 1fr; }
}

@media (max-width: 680px) {
  section { padding: 4rem 1.2rem; }

  .navbar { padding: 0 1.2rem; }

  .nav-links { display: none; }
  .hamburger { display: flex; }

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

  .about-stats { grid-template-columns: 1fr 1fr; }

  .hero-btns { flex-direction: column; align-items: center; }

  .badges-row { gap: 1.5rem; }

  .menu-section-header .desc { display: none; }

  .footer-bottom { flex-direction: column; text-align: center; }

  .contact-full-grid { gap: 2rem; }

  .map-full { height: 300px; }
}

/* ============================================
   FOTOGALERIJ
   ============================================ */
.galerij {
  background: var(--navy-dark);
  padding: 6rem 2rem;
}

.galerij .section-title  { color: var(--white); }
.galerij .section-subtitle { color: rgba(255,255,255,0.5); }

.galerij-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.8rem;
}

.galerij-item {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  aspect-ratio: 1;
  cursor: pointer;
  box-shadow: var(--shadow);
}

.galerij-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.45s ease;
  display: block;
}

.galerij-item:hover img { transform: scale(1.07); }

.galerij-overlay {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  background: linear-gradient(transparent, rgba(17,28,48,0.82));
  padding: 2rem 1rem 0.9rem;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.galerij-item:hover .galerij-overlay { opacity: 1; }

.galerij-overlay span {
  color: var(--white);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.03em;
}

/* ---- Lightbox ---- */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.92);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
  padding: 2rem;
}

.lightbox.actief {
  opacity: 1;
  pointer-events: all;
}

.lightbox-inner {
  position: relative;
  max-width: 90vw;
  max-height: 90vh;
}

.lightbox-inner img {
  max-width: 90vw;
  max-height: 80vh;
  object-fit: contain;
  border-radius: var(--radius);
  box-shadow: 0 8px 60px rgba(0,0,0,0.6);
  display: block;
}

.lightbox-caption {
  text-align: center;
  color: rgba(255,255,255,0.65);
  font-size: 0.9rem;
  margin-top: 0.8rem;
  min-height: 1.2em;
}

.lightbox-sluit {
  position: absolute;
  top: -1.4rem;
  right: -1.4rem;
  background: var(--gold);
  color: var(--navy-dark);
  border: none;
  border-radius: 50%;
  width: 34px;
  height: 34px;
  font-size: 1rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
  box-shadow: var(--shadow);
}

.lightbox-sluit:hover { background: var(--gold-light); }

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

@media (max-width: 480px) {
  .galerij-grid { grid-template-columns: repeat(2, 1fr); gap: 0.4rem; }
}

/* ---- SCROLL REVEAL ANIMATION ---- */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
