/* 't Lammetje Amsterdam — generated by Publisher */

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

:root {
  --bg: #0a0a0a;
  --bg-card: #151515;
  --text: #f0ece6;
  --text-dim: rgba(255,255,255,0.5);
  --accent: #ff2d55;
  --accent-glow: rgba(255,45,85,0.3);
  --gold: #f5c518;
  --radius: 6px;
  --max-width: 1280px;
  --header-height: 60px;
  --font: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font);
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img { display: block; max-width: 100%; height: auto; }
a { color: var(--accent); text-decoration: none; }
a:hover { text-decoration: underline; }

/* ── Header ────────────────────────────────────────────────────────────── */

header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(10,10,10,0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.header-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
  height: var(--header-height);
  display: flex;
  align-items: center;
  gap: 12px;
  overflow: hidden;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1.3rem;
  font-weight: 800;
  color: #fff;
  letter-spacing: -0.02em;
  white-space: nowrap;
  flex-shrink: 0;
}
.logo img { height: 44px; width: auto; }
.logo:hover { text-decoration: none; color: var(--accent); }

.open-badge {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #0a0a0a;
  background: var(--gold);
  padding: 3px 10px;
  border-radius: 20px;
  font-weight: 700;
  white-space: nowrap;
}
.closed-badge {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-dim);
  background: rgba(255,255,255,0.1);
  padding: 3px 10px;
  border-radius: 20px;
  font-weight: 600;
  white-space: nowrap;
}

nav { margin-left: auto; display: flex; gap: 28px; }
nav a {
  color: var(--text-dim);
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  transition: color 0.2s;
}
nav a:hover, nav a.active { color: #fff; text-decoration: none; }

.menu-toggle { display: none; background: none; border: none; cursor: pointer; padding: 8px; margin-left: auto; }
.menu-toggle span { display: block; width: 22px; height: 2px; background: #fff; margin: 5px 0; transition: 0.3s; }

/* ── Hero wall ─────────────────────────────────────────────────────────── */

.hero-wall {
  position: relative;
  height: 100vh;
  height: 100dvh;
  overflow: hidden;
  background: #000;
}

.wall-grid {
  position: absolute;
  inset: 0;
  display: grid;
  grid-template-columns: repeat(8, 1fr);
  grid-auto-rows: 1fr;
  gap: 3px;
  padding: 3px;
}

.wall-cell {
  overflow: hidden;
  perspective: 400px;
}
.wall-cell img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.6) saturate(1.1);
  transition: transform 0.3s ease-in, opacity 0.3s ease-in;
  transform-origin: center center;
}
.wall-cell-flip img {
  transform: scaleY(0);
  opacity: 0.3;
}

.wall-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  z-index: 2;
  text-align: center;
  background: radial-gradient(ellipse at center, rgba(0,0,0,0.55) 0%, rgba(0,0,0,0.2) 70%);
}
.wall-logo {
  height: 120px;
  width: auto;
  margin-bottom: 16px;
  filter: drop-shadow(0 4px 20px rgba(0,0,0,0.5));
}
.wall-overlay h1 {
  font-size: 2.8rem;
  font-weight: 800;
  color: #fff;
  text-shadow: 0 2px 30px rgba(0,0,0,0.7);
  letter-spacing: -0.02em;
}
.wall-overlay p {
  margin-top: 8px;
  font-size: 1rem;
  color: var(--text-dim);
  text-transform: uppercase;
  letter-spacing: 0.15em;
  text-shadow: 0 1px 10px rgba(0,0,0,0.5);
}
.wall-badge { margin-top: 20px; }

.hero-scroll-hint {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  text-align: center;
  color: var(--text-dim);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  animation: pulse 2s ease-in-out infinite;
}
.scroll-arrow {
  width: 1px;
  height: 24px;
  background: var(--text-dim);
  margin: 8px auto 0;
}
@keyframes pulse { 0%,100% { opacity: 0.4; } 50% { opacity: 1; } }

/* ── Section headings ──────────────────────────────────────────────────── */

.section-heading {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 56px 24px 28px;
  font-size: 1.6rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  display: flex;
  align-items: center;
  gap: 16px;
}
.section-heading::after {
  content: '';
  flex: 1;
  height: 1px;
  background: rgba(255,255,255,0.1);
}

/* ── Photo mosaic ──────────────────────────────────────────────────────── */

.photo-grid {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px 32px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 4px;
}

.mosaic-item {
  display: block;
  overflow: hidden;
  aspect-ratio: 1;
  border-radius: 2px;
}
.mosaic-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s, filter 0.4s;
  filter: brightness(0.85);
}
.mosaic-item:hover img {
  transform: scale(1.08);
  filter: brightness(1.1);
}

/* ── Collections grid ──────────────────────────────────────────────────── */

.collections-section {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px 64px;
}

.collections-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.collection-card {
  position: relative;
  aspect-ratio: 16/9;
  border-radius: var(--radius);
  overflow: hidden;
  background-size: cover;
  background-position: center;
  background-color: var(--bg-card);
  display: block;
  transition: transform 0.3s;
}
.collection-card:hover { transform: scale(1.02); text-decoration: none; }
.collection-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(transparent 30%, rgba(0,0,0,0.75));
}

.collection-card-inner {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 16px;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.collection-date {
  font-size: 0.95rem;
  font-weight: 700;
  color: #fff;
}
.collection-title {
  font-size: 0.8rem;
  color: var(--gold);
  font-weight: 600;
}
.collection-count {
  font-size: 0.75rem;
  color: var(--text-dim);
}

.view-all-link {
  display: inline-block;
  margin-top: 24px;
  font-weight: 700;
  font-size: 0.95rem;
}

/* ── Collection detail ─────────────────────────────────────────────────── */

.collection-hero {
  height: 40vh;
  min-height: 250px;
  background-size: cover;
  background-position: center;
  position: relative;
  display: flex;
  align-items: flex-end;
  margin-top: var(--header-height);
}
.collection-hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(transparent 30%, rgba(0,0,0,0.8));
}
.collection-hero-overlay {
  position: relative;
  z-index: 1;
  padding: 32px 24px;
  max-width: var(--max-width);
  margin: 0 auto;
  width: 100%;
}
.collection-hero-overlay h1 { font-size: 2rem; font-weight: 800; }
.collection-hero-overlay p { color: var(--text-dim); margin-top: 4px; }

.collection-photos {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 24px 24px 64px;
}

.collection-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 4px;
}
.collection-grid a {
  display: block;
  overflow: hidden;
  aspect-ratio: 1;
  cursor: zoom-in;
  border-radius: 2px;
}
.collection-grid img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s, filter 0.3s;
  filter: brightness(0.85);
}
.collection-grid a:hover img {
  transform: scale(1.06);
  filter: brightness(1.1);
}

.collection-nav {
  margin-top: 32px;
  padding-top: 16px;
  border-top: 1px solid rgba(255,255,255,0.1);
}
.collection-nav a { font-weight: 700; }

/* ── Page header ───────────────────────────────────────────────────────── */

.page-header {
  padding: 48px 24px 32px;
  margin-top: var(--header-height);
  max-width: var(--max-width);
  margin-left: auto;
  margin-right: auto;
}
.page-header h1 { font-size: 2.25rem; font-weight: 800; }
.page-header p { color: var(--text-dim); margin-top: 4px; }

/* ── Content pages ─────────────────────────────────────────────────────── */

.content-section {
  max-width: 720px;
  margin: 0 auto;
  padding: 0 24px 64px;
}
.content-text { font-size: 1.05rem; line-height: 1.8; }
.content-text h3 { font-size: 1.3rem; margin: 28px 0 12px; color: var(--gold); }
.content-text p { margin-bottom: 16px; }
.content-text a { color: var(--accent); }

.contact-map {
  margin-top: 32px;
  padding-top: 16px;
  border-top: 1px solid rgba(255,255,255,0.1);
}
.contact-map a { font-weight: 700; }

/* ── Lightbox ──────────────────────────────────────────────────────────── */

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 1000;
  background: rgba(0,0,0,0.95);
  display: flex;
  align-items: center;
  justify-content: center;
  animation: fadeIn 0.2s;
}
.lb-img-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  overflow: hidden;
  touch-action: none;
}
.lightbox img {
  max-width: 92vw;
  max-height: 92vh;
  object-fit: contain;
  border-radius: 4px;
  user-select: none;
  -webkit-user-select: none;
  will-change: transform;
}
.lb-close {
  position: absolute; top: 16px; right: 24px;
  background: none; border: none; color: #fff;
  font-size: 2.5rem; cursor: pointer;
}
.lb-prev, .lb-next {
  position: absolute; top: 50%; transform: translateY(-50%);
  background: rgba(255,255,255,0.1); border: none; color: #fff;
  font-size: 2rem; cursor: pointer; padding: 16px 12px;
  border-radius: 4px; transition: background 0.2s;
  min-width: 48px; min-height: 48px;
}
.lb-prev:hover, .lb-next:hover { background: rgba(255,255,255,0.2); }
.lb-prev { left: 16px; }
.lb-next { right: 16px; }
.lb-counter {
  position: absolute; bottom: 20px; left: 50%;
  transform: translateX(-50%);
  color: var(--text-dim); font-size: 0.85rem;
  letter-spacing: 0.1em;
}
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }

/* ── Footer ────────────────────────────────────────────────────────────── */

footer {
  background: #050505;
  color: var(--text-dim);
  font-size: 0.9rem;
  border-top: 1px solid rgba(255,255,255,0.06);
}

.footer-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 48px 24px 32px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

.footer-col h3 {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-dim);
  margin-bottom: 14px;
  padding-bottom: 8px;
  border-bottom: 2px solid var(--accent);
  display: inline-block;
}
.footer-col p { margin-bottom: 4px; }
.footer-col a { color: var(--text-dim); transition: color 0.2s; }
.footer-col a:hover { color: #fff; text-decoration: none; }
.footer-link { margin-top: 12px; }
.footer-link a { color: var(--accent); font-weight: 600; }

.footer-socials { margin-top: 12px; display: flex; gap: 16px; }
.footer-socials a {
  font-weight: 800;
  font-size: 0.85rem;
  color: #fff;
  background: rgba(255,255,255,0.08);
  padding: 6px 14px;
  border-radius: 20px;
  transition: background 0.2s;
}
.footer-socials a:hover { background: var(--accent); text-decoration: none; }

.hours { border-collapse: collapse; }
.hours td { padding: 2px 16px 2px 0; }

.footer-bottom {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 16px 24px;
  border-top: 1px solid rgba(255,255,255,0.06);
  text-align: center;
  font-size: 0.8rem;
}

/* ── Mobile ────────────────────────────────────────────────────────────── */

@media (max-width: 768px) {
  .logo span { display: none; }
  .logo img { height: 36px; }

  .wall-grid { grid-template-columns: repeat(6, 1fr); }
  .wall-logo { height: 80px; }
  .wall-overlay h1 { font-size: 1.8rem; }
  .wall-overlay p { font-size: 0.8rem; }

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

  .collection-hero { height: 30vh; }
  .collection-hero-overlay h1 { font-size: 1.5rem; }

  .footer-inner { grid-template-columns: 1fr; gap: 24px; padding: 32px 24px; }

  nav {
    position: fixed;
    top: var(--header-height);
    left: 0; right: 0;
    background: rgba(10,10,10,0.95);
    backdrop-filter: blur(12px);
    flex-direction: column;
    align-items: center;
    padding: 24px 0;
    gap: 20px;
    transform: translateY(-100%);
    opacity: 0;
    pointer-events: none;
    transition: transform 0.3s, opacity 0.3s;
  }
  .nav-open nav {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }
  .menu-toggle { display: block; }
}

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