/* Fish & Fries Amsterdam — Generated Stylesheet */

/* ── Fonts ────────────────────────────────────────────────────────── */
@font-face {
  font-family: 'Playfair Display';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url(/assets/fonts/playfair-regular.woff2) format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: 'Playfair Display';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url(/assets/fonts/playfair-regular-ext.woff2) format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
@font-face {
  font-family: 'Playfair Display';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url(/assets/fonts/playfair-bold.woff2) format('woff2');
}
@font-face {
  font-family: 'Playfair Display';
  font-style: italic;
  font-weight: 400;
  font-display: swap;
  src: url(/assets/fonts/playfair-italic.woff2) format('woff2');
}

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

:root {
  --blue: #BDD4E0;
  --blue-light: #d6e6ef;
  --blue-dark: #94b8ca;
  --navy: #1C2B39;
  --navy-light: #2a3f52;
  --cream: #F2EDE4;
  --cream-dark: #e5ded3;
  --white: #FFFFFF;
  --gold: #C8A96E;
  --text: #1C2B39;
  --text-light: #5a6d7c;
  --body-font: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
  --heading-font: 'Playfair Display', Georgia, 'Times New Roman', serif;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--body-font);
  color: var(--text);
  background: var(--cream);
  line-height: 1.65;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--navy); }

/* ── Typography ───────────────────────────────────────────────────── */
h1, h2, h3 {
  font-family: var(--heading-font);
  font-weight: 400;
  line-height: 1.2;
  color: var(--navy);
}

h1 { font-size: clamp(2rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.6rem, 4vw, 2.5rem); margin-bottom: 0.6em; }
h3 { font-size: clamp(1.2rem, 3vw, 1.6rem); margin-bottom: 0.5em; }

p { margin-bottom: 1em; }
p:last-child { margin-bottom: 0; }

/* ── Header / Nav ─────────────────────────────────────────────────── */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(28, 43, 57, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(189, 212, 224, 0.15);
  transition: background 0.3s;
}

.site-header nav {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0.75rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  height: 36px;
  width: auto;
}

.nav-links {
  display: flex;
  gap: 0.5rem;
  align-items: center;
  list-style: none;
}

.nav-links li:not(:last-child)::after {
  content: '\00b7';
  color: rgba(242, 237, 228, 0.3);
  margin-left: 0.5rem;
}

.nav-links a {
  color: var(--cream);
  text-decoration: none;
  font-size: 0.9rem;
  letter-spacing: 0.03em;
  opacity: 0.85;
  transition: opacity 0.2s;
}

.nav-links a:hover { opacity: 1; }

.nav-lang {
  background: rgba(189, 212, 224, 0.2);
  padding: 0.25rem 0.65rem;
  border-radius: 3px;
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  font-weight: 600;
}

/* ── Hero (Homepage) ──────────────────────────────────────────────── */
.hero {
  position: relative;
  height: 100vh;
  min-height: 500px;
  overflow: hidden;
  background: var(--navy);
}

.hero video {
  position: absolute;
  top: 50%; left: 50%;
  min-width: 100%; min-height: 100%;
  width: auto; height: auto;
  transform: translate(-50%, -50%);
  object-fit: cover;
  opacity: 0.7;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 2rem;
  background: linear-gradient(
    to bottom,
    rgba(28, 43, 57, 0.3) 0%,
    rgba(28, 43, 57, 0.1) 40%,
    rgba(28, 43, 57, 0.1) 60%,
    rgba(28, 43, 57, 0.5) 100%
  );
}

.hero-logo {
  width: min(70vw, 420px);
  margin-bottom: 1.5rem;
}

.hero-tagline {
  font-family: var(--heading-font);
  font-style: italic;
  color: var(--cream);
  font-size: clamp(1rem, 2.5vw, 1.4rem);
  opacity: 0.9;
  max-width: 500px;
  text-wrap: balance;
}

.hero-scroll {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  color: var(--cream);
  opacity: 0.6;
  font-size: 0.8rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  animation: pulse 2s ease-in-out infinite;
}

.hero-scroll::after {
  content: '';
  display: block;
  width: 1px;
  height: 30px;
  background: var(--cream);
  margin: 0.5rem auto 0;
  opacity: 0.4;
}

@keyframes pulse {
  0%, 100% { opacity: 0.6; }
  50% { opacity: 0.3; }
}

/* ── Photo Wall (Homepage) ────────────────────────────────────────── */
.photo-wall {
  background: var(--navy);
  padding: 3px;
}

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

.wall-cell {
  overflow: hidden;
  aspect-ratio: 1;
}

.wall-cell {
  cursor: pointer;
  perspective: 400px;
}

.wall-cell img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.85) saturate(1.1);
  transition: transform 0.35s ease, filter 0.4s ease, opacity 0.35s ease;
  transform-origin: center center;
}

.wall-cell:hover img {
  filter: brightness(1) saturate(1.2);
}

.wall-cell.flipping img {
  transform: scaleY(0);
  opacity: 0.3;
}

/* ── Lightbox ─────────────────────────────────────────────────────── */
.lightbox-overlay {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 200;
  background: rgba(28, 43, 57, 0.92);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  align-items: center;
  justify-content: center;
  flex-direction: column;
  padding: 2rem;
  cursor: pointer;
}

.lightbox-overlay.active { display: flex; }

.lightbox-img {
  max-width: min(90vw, 1000px);
  max-height: 75vh;
  object-fit: contain;
  border-radius: 3px;
  box-shadow: 0 12px 50px rgba(0,0,0,0.4);
  cursor: default;
}

.lightbox-caption {
  color: var(--cream);
  font-family: var(--heading-font);
  font-style: italic;
  font-size: clamp(0.9rem, 2vw, 1.1rem);
  margin-top: 1.2rem;
  text-align: center;
  max-width: 600px;
  opacity: 0.85;
}

.lightbox-close {
  position: absolute;
  top: 1.2rem;
  right: 1.5rem;
  color: var(--cream);
  font-size: 1.8rem;
  opacity: 0.6;
  cursor: pointer;
  line-height: 1;
  transition: opacity 0.2s;
}

.lightbox-close:hover { opacity: 1; }

/* ── Ornamental Frame ─────────────────────────────────────────────── */
.ornate-frame {
  position: relative;
  border: 1px solid var(--blue-dark);
  padding: 3rem 2.5rem;
}

.ornate-frame::before,
.ornate-frame::after {
  content: '';
  position: absolute;
  width: 20px;
  height: 20px;
  border-color: var(--navy);
  border-style: solid;
}

.ornate-frame::before {
  top: 6px; left: 6px;
  border-width: 2px 0 0 2px;
}

.ornate-frame::after {
  top: 6px; right: 6px;
  border-width: 2px 2px 0 0;
}

.ornate-frame-bottom::before,
.ornate-frame-bottom::after {
  content: '';
  position: absolute;
  width: 20px;
  height: 20px;
  border-color: var(--navy);
  border-style: solid;
}

.ornate-frame-bottom::before {
  bottom: 6px; left: 6px;
  border-width: 0 0 2px 2px;
}

.ornate-frame-bottom::after {
  bottom: 6px; right: 6px;
  border-width: 0 2px 2px 0;
}

/* Decorative dot separator */
.ornate-dots {
  text-align: center;
  padding: 1.5rem 0;
  letter-spacing: 0.6em;
  color: var(--blue-dark);
  font-size: 0.7rem;
}

/* ── Intro Section (Homepage) ─────────────────────────────────────── */
.intro-section {
  max-width: 720px;
  margin: 0 auto;
  padding: 5rem 1.5rem;
  text-align: center;
}

.intro-frame {
  position: relative;
  border: 1px solid var(--cream-dark);
  padding: 3rem 2.5rem;
  background: var(--white);
}

.intro-frame::before,
.intro-frame::after {
  content: '';
  position: absolute;
  width: 24px;
  height: 24px;
  border-color: var(--blue-dark);
  border-style: solid;
}

.intro-frame::before {
  top: 8px; left: 8px;
  border-width: 2px 0 0 2px;
}

.intro-frame::after {
  top: 8px; right: 8px;
  border-width: 2px 2px 0 0;
}

.intro-corners-bottom {
  position: absolute;
  bottom: 0; left: 0; right: 0; top: 0;
  pointer-events: none;
}

.intro-corners-bottom::before,
.intro-corners-bottom::after {
  content: '';
  position: absolute;
  width: 24px;
  height: 24px;
  border-color: var(--blue-dark);
  border-style: solid;
}

.intro-corners-bottom::before {
  bottom: 8px; left: 8px;
  border-width: 0 0 2px 2px;
}

.intro-corners-bottom::after {
  bottom: 8px; right: 8px;
  border-width: 0 2px 2px 0;
}

.intro-section h2 {
  position: relative;
  padding-bottom: 1rem;
  margin-bottom: 1.5rem;
}

.intro-section h2::after {
  content: '\00b7\2002\00b7\2002\00b7';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  font-size: 1.2rem;
  color: var(--blue-dark);
  letter-spacing: 0.3em;
}

.intro-section p {
  font-size: 1.1rem;
  color: var(--text-light);
  line-height: 1.8;
}

.cta-button {
  display: inline-block;
  margin-top: 2rem;
  padding: 0.85rem 2.5rem;
  background: var(--navy);
  color: var(--cream);
  text-decoration: none;
  font-family: var(--heading-font);
  font-size: 1rem;
  letter-spacing: 0.05em;
  border-radius: 2px;
  transition: background 0.3s, transform 0.2s;
}

.cta-button:hover {
  background: var(--navy-light);
  transform: translateY(-1px);
}

/* ── Story Page ───────────────────────────────────────────────────── */
.page-hero {
  height: 40vh;
  min-height: 280px;
  background: var(--navy);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 5rem 1.5rem 2rem;
}

.page-hero h1 {
  color: var(--cream);
  font-weight: 400;
}

.page-hero-frame {
  position: relative;
  padding: 2rem 3rem;
  border: 1px solid rgba(189, 212, 224, 0.2);
}

.page-hero-frame::before,
.page-hero-frame::after {
  content: '';
  position: absolute;
  width: 18px;
  height: 18px;
  border-color: rgba(189, 212, 224, 0.35);
  border-style: solid;
}

.page-hero-frame::before {
  top: 5px; left: 5px;
  border-width: 1px 0 0 1px;
}

.page-hero-frame::after {
  bottom: 5px; right: 5px;
  border-width: 0 1px 1px 0;
}

.story-section {
  max-width: 1000px;
  margin: 0 auto;
  padding: 4rem 1.5rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.story-section:nth-child(even) .story-image { order: -1; }

.story-text h2 { color: var(--navy); }

.story-text p {
  color: var(--text-light);
  line-height: 1.8;
}

.story-text .cta-button {
  margin-top: 1.5rem;
}

.story-image img {
  border-radius: 3px;
  box-shadow: 0 8px 30px rgba(28, 43, 57, 0.12);
}

.story-divider {
  max-width: 1000px;
  margin: 0 auto;
  border: none;
  border-top: 1px solid var(--cream-dark);
}

/* ── Landing Page ─────────────────────────────────────────────────── */
.landing-hero {
  position: relative;
  height: 50vh;
  min-height: 320px;
  overflow: hidden;
  background: var(--navy);
}

.landing-hero img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.5;
}

.landing-hero-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 5rem 1.5rem 2rem;
}

.landing-hero h1 { color: var(--cream); }
.landing-hero p {
  color: var(--blue-light);
  font-family: var(--heading-font);
  font-style: italic;
  font-size: 1.15rem;
  margin-top: 0.5rem;
  max-width: 600px;
}

.landing-content {
  max-width: 720px;
  margin: 0 auto;
  padding: 4rem 1.5rem;
}

.landing-content p {
  color: var(--text-light);
  font-size: 1.05rem;
  line-height: 1.8;
}

/* ── Footer ───────────────────────────────────────────────────────── */
.site-footer {
  background: var(--navy);
  color: var(--cream);
  padding: 3.5rem 1.5rem 2rem;
}

.footer-inner {
  max-width: 1000px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 2.5rem;
}

.footer-col-title {
  color: var(--blue);
  font-size: 0.85rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 1rem;
  font-family: var(--body-font);
  font-weight: 600;
}

.footer-col p,
.footer-col a {
  color: rgba(242, 237, 228, 0.75);
  font-size: 0.9rem;
  line-height: 1.8;
  text-decoration: none;
}

.footer-col a:hover { color: var(--cream); }

.footer-hours {
  list-style: none;
  font-size: 0.85rem;
}

.footer-hours li {
  display: flex;
  justify-content: space-between;
  padding: 0.2rem 0;
  color: rgba(242, 237, 228, 0.7);
}

.footer-hours li span:first-child { color: rgba(242, 237, 228, 0.78); }

/* Footer icons */
.fi {
  display: inline-block;
  width: 16px;
  height: 16px;
  vertical-align: -2px;
  margin-right: 0.5rem;
  flex-shrink: 0;
}

.fi svg {
  width: 16px;
  height: 16px;
  fill: var(--blue-dark);
  opacity: 0.55;
}

.footer-contact-item {
  display: flex;
  align-items: center;
  padding: 0.3rem 0;
}

.footer-contact-item a,
.footer-contact-item span {
  color: rgba(242, 237, 228, 0.75);
  font-size: 0.9rem;
  text-decoration: none;
  transition: color 0.2s;
}

.footer-contact-item a:hover { color: var(--cream); }

.footer-social {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.footer-social a {
  display: flex;
  align-items: center;
  padding: 0.3rem 0;
  color: rgba(242, 237, 228, 0.75);
  font-size: 0.9rem;
  text-decoration: none;
  transition: color 0.2s;
}

.footer-social a:hover { color: var(--cream); }

.footer-social .fi svg {
  fill: var(--blue);
  opacity: 0.8;
}

/* Vleminckx badge */
.footer-vleminckx {
  margin-top: 1.2rem;
  padding-top: 1.2rem;
  border-top: 1px solid rgba(189, 212, 224, 0.15);
}

.footer-vleminckx-label {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: rgba(242, 237, 228, 0.65);
  margin-bottom: 0.25rem;
}

.footer-vleminckx-name a {
  display: inline-block;
  color: var(--cream);
  font-family: var(--heading-font);
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  text-decoration: none;
  transition: color 0.2s;
}

.footer-vleminckx-name a:hover { color: var(--blue); }

.footer-vleminckx-sub {
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: rgba(242, 237, 228, 0.6);
  margin-top: 0.1rem;
}

.footer-bottom {
  max-width: 1000px;
  margin: 2.5rem auto 0;
  padding: 1.8rem 2rem;
  position: relative;
  border: 1px solid rgba(189, 212, 224, 0.12);
  text-align: center;
  font-size: 0.7rem;
  font-family: var(--heading-font);
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: rgba(242, 237, 228, 0.5);
}

.footer-bottom::before,
.footer-bottom::after {
  content: '';
  position: absolute;
  width: 16px;
  height: 16px;
  border-color: rgba(189, 212, 224, 0.25);
  border-style: solid;
}

.footer-bottom::before {
  top: 5px; left: 5px;
  border-width: 1px 0 0 1px;
}

.footer-bottom::after {
  top: 5px; right: 5px;
  border-width: 1px 1px 0 0;
}

.footer-bottom-corners {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.footer-bottom-corners::before,
.footer-bottom-corners::after {
  content: '';
  position: absolute;
  width: 16px;
  height: 16px;
  border-color: rgba(189, 212, 224, 0.25);
  border-style: solid;
}

.footer-bottom-corners::before {
  bottom: 5px; left: 5px;
  border-width: 0 0 1px 1px;
}

.footer-bottom-corners::after {
  bottom: 5px; right: 5px;
  border-width: 0 1px 1px 0;
}

/* ── Responsive ───────────────────────────────────────────────────── */
@media (max-width: 768px) {
  .wall-grid { grid-template-columns: repeat(3, 1fr); }

  .story-section {
    grid-template-columns: 1fr;
    padding: 2.5rem 1.5rem;
    gap: 1.5rem;
  }

  .story-section:nth-child(even) .story-image { order: 0; }

  .footer-inner {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .nav-links { gap: 1rem; }

  .intro-section { padding: 3rem 1.5rem; }
}

@media (max-width: 480px) {
  .wall-grid { grid-template-columns: repeat(3, 1fr); }
  .hero-logo { width: 60vw; }
}
