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

:root {
  --red: #c0392b;
  --black: #0a0a0a;
  --dark: #111;
  --mid: #1a1a1a;
  --light: #e8e8e8;
  --muted: #888;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Segoe UI', system-ui, sans-serif;
  background: var(--black);
  color: var(--light);
  overflow-x: hidden;
}

/* ── HERO ── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('../pictures/roel-reef-beldert.jpeg');
  background-size: cover;
  background-position: center 30%;
  filter: brightness(0.35) saturate(0.7);
  z-index: 0;
}

.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent 50%, var(--black) 100%);
}

.hero-content {
  position: relative;
  z-index: 1;
  padding: 2rem;
}

.hero-logo {
  width: min(280px, 55vw);
  height: auto;
  filter: drop-shadow(0 0 40px rgba(192, 57, 43, 0.5));
  margin-bottom: 2rem;
  animation: float 6s ease-in-out infinite;
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-12px); }
}

.hero h1 {
  font-size: clamp(2rem, 6vw, 4rem);
  font-weight: 900;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  line-height: 1.1;
  text-shadow: 0 2px 20px rgba(0,0,0,0.8);
}

.hero h1 span {
  color: var(--red);
}

.hero-sub {
  margin-top: 1rem;
  font-size: clamp(0.9rem, 2.5vw, 1.2rem);
  color: var(--muted);
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.hero-tagline {
  margin-top: 0.75rem;
  font-size: clamp(0.8rem, 2vw, 1rem);
  color: var(--muted);
  letter-spacing: 0.08em;
  font-style: italic;
}

.scroll-hint {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.4rem;
  color: var(--muted);
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  animation: pulse 2s ease-in-out infinite;
}

.scroll-hint svg {
  width: 20px;
  height: 20px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

@keyframes pulse {
  0%, 100% { opacity: 0.4; transform: translateX(-50%) translateY(0); }
  50%       { opacity: 1;   transform: translateX(-50%) translateY(4px); }
}

/* ── DIVIDER ── */
.divider {
  height: 3px;
  background: linear-gradient(to right, transparent, var(--red), transparent);
  margin: 0;
}

/* ── CAROUSEL ── */
.carousel {
  position: relative;
  background: var(--black);
  overflow: hidden;
}

.carousel-track-wrap {
  overflow: hidden;
}

.carousel-track {
  display: flex;
  transition: transform 0.45s cubic-bezier(0.4, 0, 0.2, 1);
}

.carousel-slide {
  flex: 0 0 25%;
  padding: 4px;
  box-sizing: border-box;
}

.carousel-slide figure {
  margin: 0;
  overflow: hidden;
  aspect-ratio: 3/4;
  position: relative;
  cursor: zoom-in;
}

.carousel-slide figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: brightness(0.8) saturate(0.85);
  transition: filter 0.4s, transform 0.6s;
}

.carousel-slide figure:hover img {
  filter: brightness(1) saturate(1);
  transform: scale(1.04);
}

.carousel-slide figcaption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 0.3rem 0.5rem;
  font-size: 0.65rem;
  color: rgba(255,255,255,0.5);
  background: linear-gradient(transparent, rgba(0,0,0,0.6));
  letter-spacing: 0.05em;
  text-align: right;
}

.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
  background: rgba(0,0,0,0.55);
  border: 1px solid rgba(255,255,255,0.12);
  color: var(--light);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
}

.carousel-btn:hover {
  background: rgba(192,57,43,0.7);
}

.carousel-btn svg {
  width: 20px;
  height: 20px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.carousel-btn.prev { left: 0.75rem; }
.carousel-btn.next { right: 0.75rem; }

.carousel-dots {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem 0 0.5rem;
}

.carousel-dots button {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  border: none;
  background: #333;
  cursor: pointer;
  padding: 0;
  transition: background 0.2s;
}

.carousel-dots button.active {
  background: var(--red);
}

/* ── LIGHTBOX ── */
.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 100;
  background: rgba(0,0,0,0.93);
  align-items: center;
  justify-content: center;
  flex-direction: column;
}

.lightbox.open {
  display: flex;
}

.lightbox-img-wrap {
  position: relative;
  max-width: 92vw;
  max-height: 85vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.lightbox img {
  max-width: 92vw;
  max-height: 85vh;
  object-fit: contain;
  display: block;
  border: 1px solid #222;
}

.lightbox-caption {
  margin-top: 0.75rem;
  font-size: 0.75rem;
  color: rgba(255,255,255,0.4);
  letter-spacing: 0.08em;
}

.lightbox-close {
  position: fixed;
  top: 1.2rem;
  right: 1.4rem;
  background: none;
  border: none;
  color: var(--muted);
  cursor: pointer;
  font-size: 2rem;
  line-height: 1;
  transition: color 0.2s;
}

.lightbox-close:hover { color: var(--light); }

.lightbox-nav {
  position: fixed;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0,0,0,0.5);
  border: 1px solid rgba(255,255,255,0.1);
  color: var(--light);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
}

.lightbox-nav:hover { background: rgba(192,57,43,0.7); }
.lightbox-nav svg {
  width: 22px; height: 22px;
  stroke: currentColor; fill: none;
  stroke-width: 2.5; stroke-linecap: round; stroke-linejoin: round;
}

.lightbox-nav.prev { left: 1rem; }
.lightbox-nav.next { right: 1rem; }

/* ── ABOUT ── */
.about {
  max-width: 760px;
  margin: 0 auto;
  padding: 5rem 2rem;
  text-align: center;
}

.section-label {
  font-size: 0.75rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 1rem;
}

.about h2 {
  font-size: clamp(1.6rem, 4vw, 2.4rem);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.about p {
  font-size: 1.05rem;
  line-height: 1.8;
  color: #bbb;
}

/* ── COMING SOON ── */
.coming-soon {
  background: var(--mid);
  padding: 5rem 2rem;
  text-align: center;
}

.coming-soon h2 {
  font-size: clamp(1.6rem, 4vw, 2.4rem);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 1rem;
}

.coming-soon p {
  color: var(--muted);
  font-size: 1rem;
  letter-spacing: 0.05em;
  margin-bottom: 2.5rem;
}

.features {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.2rem;
  max-width: 700px;
  margin: 0 auto;
}

.feature-pill {
  padding: 0.55rem 1.4rem;
  border: 1px solid #333;
  border-radius: 100px;
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  color: var(--muted);
  background: var(--dark);
}

a.feature-pill {
  text-decoration: none;
}

.feature-pill.active {
  border-color: var(--red);
  color: var(--light);
  background: rgba(192, 57, 43, 0.12);
}

/* ── FOOTER ── */
footer {
  background: var(--black);
  border-top: 1px solid #1f1f1f;
  padding: 2.5rem 2rem;
  text-align: center;
}

footer .footer-logo {
  width: 64px;
  height: auto;
  margin-bottom: 1rem;
  opacity: 0.7;
}

footer p {
  font-size: 0.8rem;
  color: #444;
  letter-spacing: 0.1em;
}

/* ── RESPONSIVE ── */
@media (max-width: 800px) {
  .carousel-slide { flex: 0 0 50%; }
}

@media (max-width: 480px) {
  .carousel-slide { flex: 0 0 100%; }
}
