/* Norbert Maes fotografie - minimale, moderne stijl geïnspireerd op since1965.be, donkere achtergrond */

:root {
  --bg: #000000;
  --bg-alt: #0a0a0a;
  --text: #f2f2f0;
  --accent: #ffffff;
  --muted: #9a9a95;
  --border: #222222;
  --max-width: 1400px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
  background: var(--bg);
  color: var(--text);
  font-size: 16px;
  line-height: 1.5;
  font-weight: 300;
}

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

/* Header */

header.site-header {
  position: relative;
  padding: 0;
}

.header-content {
  position: relative;
  max-width: var(--max-width);
  margin: 0 auto;
  overflow: hidden;
}

.facebook-link {
  position: absolute;
  top: 18px;
  right: 0;
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  z-index: 2;
}

.facebook-link:hover {
  color: var(--accent);
}

.header-inner {
  display: flex;
  align-items: stretch;
  justify-content: space-between;
  min-height: 220px;
}

.header-left {
  padding: 40px 24px 24px 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.header-photo-wrap {
  position: relative;
  max-width: 45%;
  flex-shrink: 0;
}

.header-photo-wrap::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, var(--bg) 0%, rgba(0,0,0,0) 18%);
  pointer-events: none;
  z-index: 1;
}

.header-photo {
  height: 220px;
  width: auto;
  max-width: 100%;
  object-fit: cover;
  object-position: top center;
  display: block;
}

.brand {
  display: inline-block;
}

.brand-text {
  display: block;
  font-size: 1.6rem;
  letter-spacing: 0.04em;
  font-weight: 300;
  line-height: 1.25;
}

.brand-text .first-name {
  display: block;
  font-size: 0.8rem;
  color: var(--muted);
  letter-spacing: 0.25em;
  text-transform: uppercase;
  margin-bottom: 6px;
}

nav.main-nav {
  margin-top: 26px;
}

nav.main-nav ul {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 4px 22px;
  padding: 0;
  margin: 0;
}

nav.main-nav a {
  display: inline-block;
  padding: 4px 0;
  font-size: 0.85rem;
  letter-spacing: 0.06em;
  color: var(--muted);
}

nav.main-nav a:hover,
nav.main-nav a:focus,
nav.main-nav a.active {
  color: var(--accent);
}

@media (max-width: 700px) {
  .header-inner {
    flex-direction: column;
    min-height: 0;
  }
  .header-left {
    padding: 36px 20px 20px;
  }
  .header-photo-wrap {
    max-width: 100%;
    width: 100%;
  }
  .header-photo-wrap::before {
    background: linear-gradient(to bottom, var(--bg) 0%, rgba(0,0,0,0) 22%);
  }
  .header-photo {
    max-width: 100%;
    width: 100%;
    height: 240px;
    object-position: center 20%;
  }
}

/* Main */

main {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 0 0;
}

.page-title {
  text-align: center;
  font-weight: 300;
  font-size: 1.1rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin: 40px 16px 10px;
  color: var(--text);
}

.quote-bar {
  background: #bf3b34;
  margin: 0 0 40px;
}

.category-quote {
  margin: 0;
  padding: 32px 40px;
  font-size: 1.3rem;
  font-weight: 400;
  color: #fff;
  line-height: 1.4;
}

.quote-intro {
  margin: 0;
  padding: 32px 40px 8px;
  font-size: 1.3rem;
  font-weight: 400;
  color: #fff;
  line-height: 1.4;
}

.quote-list {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 8px 0;
  margin: 0;
  padding: 0 40px 32px;
}

.quote-list li {
  font-size: 1rem;
  color: #fff;
  line-height: 1.4;
}

.quote-list li:not(:last-child)::after {
  content: "\2022";
  margin: 0 10px;
  color: rgba(255,255,255,0.6);
}

@media (max-width: 700px) {
  .quote-intro {
    padding: 24px 20px 6px;
    font-size: 1.05rem;
  }
  .quote-list {
    padding: 0 20px 24px;
  }
  .quote-list li {
    font-size: 0.92rem;
  }
  .category-quote {
    font-size: 1.05rem;
    padding: 24px 20px;
  }
}

/* Gallery grid — staggered ("geschrankt"), full-bleed, no rounded corners */

.gallery {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  column-gap: 80px;
  row-gap: 100px;
  padding: 20px 0 240px;
}

.gallery figure {
  margin: 0;
  overflow: hidden;
  background: var(--bg-alt);
  will-change: transform;
}

.gallery figure:nth-child(2n) {
  transform: translateY(220px);
}

.gallery a {
  display: block;
  overflow: hidden;
}

.img-parallax {
  display: block;
  overflow: hidden;
  will-change: transform;
}

.gallery img {
  display: block;
  width: 100%;
  height: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  transition: transform 0.5s ease, opacity 0.3s ease;
}

.gallery a:hover img,
.gallery a:focus img {
  opacity: 0.9;
  transform: scale(1.06);
}

@media (max-width: 600px) {
  .gallery {
    column-gap: 0;
    row-gap: 56px;
  }
  .gallery figure {
    transform: none !important;
  }
}

/* Homepage intro + hero grid */

.intro-bar {
  background: #bf3b34;
  margin-bottom: 40px;
}

.intro-text {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 40px;
  font-size: 1.6rem;
  font-weight: 400;
  color: #fff;
  line-height: 1.4;
}

@media (max-width: 700px) {
  .intro-text {
    font-size: 1.2rem;
    padding: 28px 20px;
  }
}

.hero-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  column-gap: 80px;
  row-gap: 100px;
  padding: 10px 0 250px;
}

.hero-tile {
  margin: 0;
  overflow: hidden;
  will-change: transform;
}

.hero-tile:nth-child(2n) {
  transform: translateY(220px);
}

.hero-tile a {
  position: relative;
  display: block;
  overflow: hidden;
}

.hero-tile img {
  display: block;
  width: 100%;
  height: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  transition: transform 0.5s ease, opacity 0.3s ease;
}

.hero-tile a:hover img,
.hero-tile a:focus img {
  opacity: 0.9;
  transform: scale(1.06);
}

@media (max-width: 600px) {
  .hero-grid {
    column-gap: 0;
    row-gap: 56px;
  }
  .hero-tile {
    transform: none !important;
  }
}

.hero-label {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 14px 16px;
  font-size: 0.85rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #fff;
  background: linear-gradient(to top, rgba(0,0,0,0.65), rgba(0,0,0,0));
}

/* Lightbox */

.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.96);
  z-index: 100;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.lightbox.open {
  display: flex;
}

.lightbox img {
  max-width: 100%;
  max-height: 90vh;
}

.lightbox .close-btn,
.lightbox .nav-btn {
  position: absolute;
  background: transparent;
  color: #fff;
  border: 1px solid rgba(255,255,255,0.4);
  border-radius: 50%;
  width: 48px;
  height: 48px;
  font-size: 1.5rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}

.lightbox .close-btn:hover,
.lightbox .nav-btn:hover {
  border-color: #fff;
}

.lightbox .close-btn {
  top: 18px;
  right: 18px;
}

.lightbox .prev-btn {
  left: 18px;
  top: 50%;
  transform: translateY(-50%);
}

.lightbox .next-btn {
  right: 18px;
  top: 50%;
  transform: translateY(-50%);
}

/* Footer */

footer.site-footer {
  text-align: center;
  padding: 30px 16px 50px;
  color: var(--muted);
  font-size: 0.85rem;
  border-top: 1px solid var(--border);
}

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

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

/* Responsive tweaks */

@media (max-width: 500px) {
  .gallery,
  .hero-grid {
    grid-template-columns: 1fr;
  }
  nav.main-nav a {
    padding: 12px 14px;
    font-size: 0.7rem;
  }
}
