/* ===========================================================
   DENDEN — site styles
   Palette derived from brand logo (black/white) + the
   rust-red / cream stripe reference photo.
   =========================================================== */

/* Self-hosted fonts: no third-party request blocking first render.
   latin-ext is what carries the Turkish glyphs (ş ğ İ ı). */
@font-face{
  font-family: 'Anton';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('/assets/fonts/anton-latin-ext.woff2') format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, 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: 'Anton';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('/assets/fonts/anton-latin.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face{
  font-family: 'Inter';
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
  src: url('/assets/fonts/inter-latin-ext.woff2') format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, 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: 'Inter';
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
  src: url('/assets/fonts/inter-latin.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

:root{
  --bg:        #120e0c;
  --bg-alt:    #1a1512;
  --bg-alt-2:  #221a15;

  --cream:     #f5ead9;
  --cream-2:   #eddcc2;

  --ink:       #1c1410;
  --ink-muted: #6e5c4b;

  --rust:        #c2442c;
  --rust-dark:   #8f2f1e;
  --rust-light:  #e2764f;

  --text:        #f7efe2;
  --text-muted:  #cabaa4;

  --font-display: 'Anton', sans-serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  --container: 1180px;
}

*, *::before, *::after{ box-sizing: border-box; }
html{ scroll-behavior: smooth; }

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

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

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

.container{
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

/* subtle grain to keep flat colour sections from feeling too clean */
.noise-overlay{
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 999;
  opacity: 0.035;
  mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='120'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* ---------- buttons ---------- */
.btn{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 15px 30px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.02em;
  border: 1.5px solid transparent;
  cursor: pointer;
  transition: transform 0.2s ease, background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}
.btn:hover{ transform: translateY(-2px); }

.btn-primary{
  background: var(--rust);
  color: #fff;
}
.btn-primary:hover{ background: var(--rust-light); }

.btn-ghost{
  background: transparent;
  border-color: rgba(247,239,226,0.5);
  color: var(--text);
}
.btn-ghost:hover{ border-color: var(--text); background: rgba(247,239,226,0.08); }

/* ---------- header ---------- */
.site-header{
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 18px 0;
  background: transparent;
  transition: background 0.3s ease, padding 0.3s ease, box-shadow 0.3s ease;
}
.site-header.is-scrolled{
  background: rgba(18, 14, 12, 0.88);
  backdrop-filter: blur(10px);
  padding: 12px 0;
  box-shadow: 0 6px 24px rgba(0,0,0,0.25);
}

.header-inner{
  display: flex;
  align-items: center;
  gap: 28px;
}

.brand{
  display: flex;
  align-items: center;
  gap: 10px;
  margin-right: auto;
}
.brand-logo{
  width: 34px;
  height: 34px;
  object-fit: contain;
  filter: brightness(0) invert(1); /* black logo -> white, for dark backgrounds */
}
.brand-word{
  font-family: var(--font-display);
  font-size: 1.3rem;
  letter-spacing: 0.06em;
  color: var(--text);
  white-space: nowrap; /* stops the wordmark breaking to two lines on phones */
}

.main-nav{
  display: flex;
  align-items: center;
  gap: 30px;
}
.main-nav a{
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--text-muted);
  transition: color 0.2s ease;
}
.main-nav a:hover{ color: var(--text); }
.main-nav a.nav-cta{
  color: var(--text);
  background: var(--rust);
  padding: 10px 20px;
  border-radius: 999px;
  font-weight: 600;
}
.main-nav a.nav-cta:hover{ background: var(--rust-light); }
.nav-social{
  display: flex;
  align-items: center;
  gap: 14px;
}
.nav-social a{
  display: flex;
  color: var(--text-muted);
  transition: color 0.2s ease;
}
.nav-social a:hover{ color: var(--rust-light); }
.nav-social svg{ width: 18px; height: 18px; }

.lang-switch{
  display: flex;
  gap: 4px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 999px;
  padding: 3px;
}
/* real links to /, /nl/ and /tr/ — one indexable URL per language */
.lang-pill{
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  padding: 5px 11px;
  border-radius: 999px;
  border: none;
  background: transparent;
  color: var(--text-muted);
  text-decoration: none;
  cursor: pointer;
  transition: color 0.2s ease, background 0.2s ease;
}
.lang-pill:hover{ color: var(--text); }
.lang-pill.is-active{
  background: var(--cream);
  color: var(--ink);
  cursor: default;
}
.lang-pill.is-active:hover{ color: var(--ink); }

.nav-toggle{
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 34px;
  height: 34px;
  background: transparent;
  border: none;
  cursor: pointer;
}
.nav-toggle span{
  display: block;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
}

/* ---------- hero ---------- */
.hero{
  position: relative;
  height: 100vh;
  min-height: 640px;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero-bg{
  position: absolute;
  inset: 0;
  display: block;
}
.hero-bg img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
}
.hero-scrim{
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(18,14,12,0.55) 0%, rgba(18,14,12,0.35) 35%, rgba(18,14,12,0.85) 100%),
    linear-gradient(90deg, rgba(18,14,12,0.75) 0%, rgba(18,14,12,0.15) 55%);
}
.hero-content{
  position: relative;
  z-index: 2;
  max-width: 640px;
  padding-top: 70px;
}
.eyebrow{
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--rust-light);
  margin: 0 0 18px;
}
.hero-title{
  font-family: var(--font-display);
  font-size: clamp(4rem, 13vw, 8.5rem);
  line-height: 0.9;
  margin: 0 0 20px;
  letter-spacing: 0.01em;
}
/* keyword-bearing second line of the H1, kept small so the wordmark still leads */
.hero-title-sub{
  display: block;
  font-family: var(--font-body);
  font-size: clamp(1rem, 2.4vw, 1.35rem);
  font-weight: 600;
  line-height: 1.4;
  letter-spacing: 0.01em;
  color: var(--text);
  margin-top: 14px;
}
.hero-tagline{
  font-size: 1.15rem;
  color: var(--text-muted);
  max-width: 480px;
  margin: 0 0 34px;
}
.hero-actions{
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.scroll-cue{
  position: absolute;
  bottom: 34px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  width: 26px;
  height: 42px;
  border: 2px solid rgba(247,239,226,0.5);
  border-radius: 20px;
}
.scroll-cue span{
  position: absolute;
  top: 8px; left: 50%;
  width: 4px; height: 8px;
  margin-left: -2px;
  background: var(--text);
  border-radius: 2px;
  animation: scrollcue 1.6s ease infinite;
}
@keyframes scrollcue{
  0%{ opacity: 1; transform: translateY(0); }
  70%{ opacity: 0; transform: translateY(14px); }
  100%{ opacity: 0; transform: translateY(14px); }
}

/* ---------- section shared ---------- */
section{ padding: 120px 0; }
.section-eyebrow{
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--rust);
  margin: 0 0 12px;
}
.section-eyebrow.light{ color: var(--rust-light); }
.section-title{
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 5vw, 3.4rem);
  line-height: 1.02;
  margin: 0 0 24px;
  color: var(--ink);
}
.section-title.light{ color: var(--text); }
.body-text{
  font-size: 1.05rem;
  color: var(--ink-muted);
  max-width: 46ch;
}
.about-question{
  font-weight: 700;
  color: var(--rust);
  margin: 0 0 10px;
  font-size: 1.05rem;
}

/* ---------- about ---------- */
.about{ background: var(--cream); color: var(--ink); }
.about-grid{
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 70px;
  align-items: center;
}
.about-media picture{ display: block; }
.about-media img{
  width: 100%;
  height: auto;
  border-radius: 18px;
  box-shadow: 0 30px 60px -20px rgba(0,0,0,0.4);
}
.stat-row{
  display: flex;
  gap: 40px;
  margin-top: 40px;
  padding-top: 32px;
  border-top: 1px solid rgba(28,20,16,0.15);
}
.stat{ display: flex; flex-direction: column; }
.stat-num{
  font-family: var(--font-display);
  font-size: 2rem;
  color: var(--rust);
}
.stat-label{
  font-size: 0.82rem;
  color: var(--ink-muted);
  max-width: 14ch;
}

/* ---------- events ---------- */
.events{ background: var(--bg-alt); }
.events-widget{
  margin-top: 50px;
  min-height: 240px; /* reserve space: the widget script loads on scroll */
}

/* ---------- gallery ---------- */
.gallery{ background: var(--bg); padding-bottom: 130px; }
.gallery .container{ padding-bottom: 50px; }
.gallery-grid{
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  grid-auto-rows: 220px;
  gap: 6px;
}
.gallery-item{
  border: none;
  padding: 0;
  margin: 0;
  overflow: hidden;
  cursor: pointer;
  background: var(--bg-alt);
}
/* explicit placement so all 6 columns are always filled, no dangling gaps */
.gallery-item:nth-child(1){ grid-column: 1 / 5; grid-row: 1 / 3; }
.gallery-item:nth-child(2){ grid-column: 5 / 7; grid-row: 1; }
.gallery-item:nth-child(3){ grid-column: 5 / 7; grid-row: 2; }
.gallery-item:nth-child(4){ grid-column: 1 / 3; grid-row: 3; }
.gallery-item:nth-child(5){ grid-column: 3 / 5; grid-row: 3; }
.gallery-item:nth-child(6){ grid-column: 5 / 7; grid-row: 3; }
.gallery-item picture{ display: block; width: 100%; height: 100%; }
.gallery-item img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease, filter 0.4s ease;
  filter: grayscale(0.15);
}
.gallery-item:hover img{ transform: scale(1.06); filter: grayscale(0); }

.video-eyebrow{ margin-top: 60px; }
.video-title{
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: normal;
  margin: 6px 0 0;
}
.video-grid{
  max-width: var(--container);
  margin: 34px auto 0;
  padding: 0 24px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  justify-items: center;
}
.video-grid iframe{ max-width: 100%; }
/* reserve height so the lazily injected Instagram embeds don't shift the page */
.video-embed{
  width: 100%;
  min-height: 620px;
  display: flex;
  justify-content: center;
}
.video-embed .instagram-media{ margin: 0 auto; }

/* ---------- booking ---------- */
.booking{ background: var(--cream); color: var(--ink); }
.booking-solo{
  max-width: 560px;
}
.contact-list{
  list-style: none;
  padding: 0;
  margin: 36px 0 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.contact-list li{
  display: flex;
  gap: 14px;
  align-items: baseline;
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(28,20,16,0.12);
  font-size: 0.98rem;
}
.contact-list li span{
  min-width: 90px;
  color: var(--ink-muted);
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.contact-list li a{ font-weight: 600; }
.contact-list li a:hover{ color: var(--rust); }

/* ---------- footer ---------- */
.site-footer{ background: var(--bg); padding: 50px 0; border-top: 1px solid rgba(247,239,226,0.08); }
.footer-inner{
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}
.brand-footer{ margin-right: auto; }
.footer-social{ display: flex; gap: 22px; }
.footer-social a{
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.9rem;
  color: var(--text-muted);
  transition: color 0.2s ease;
}
.footer-social a:hover{ color: var(--text); }
.footer-social svg{ width: 16px; height: 16px; flex-shrink: 0; }
.footer-copy{
  width: 100%;
  margin: 24px 0 0;
  font-size: 0.8rem;
  color: var(--text-muted);
  opacity: 0.6;
}

/* ---------- lightbox ---------- */
.lightbox{
  position: fixed;
  inset: 0;
  z-index: 200;
  background: rgba(10,8,7,0.94);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 40px;
}
.lightbox.is-open{ display: flex; }
.lightbox img{
  max-width: 100%;
  max-height: 100%;
  border-radius: 8px;
}
.lightbox-close{
  position: absolute;
  top: 26px; right: 30px;
  background: none;
  border: none;
  color: var(--text);
  font-size: 2.2rem;
  line-height: 1;
  cursor: pointer;
}

/* ---------- reveal on scroll ----------
   Scoped to html.js (set by an inline script in <head>): if JS is blocked,
   slow, or errors out, the content is simply visible instead of stuck at
   opacity 0. Matters for crawlers and for the above-the-fold copy. */
.js .reveal{
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.js .reveal.is-visible{ opacity: 1; transform: translateY(0); }

@media (prefers-reduced-motion: reduce){
  .js .reveal{ opacity: 1; transform: none; transition: none; }
  .scroll-cue span{ animation: none; }
}

/* ---------- responsive ---------- */
@media (max-width: 980px){
  .about-grid, .booking-grid{ grid-template-columns: 1fr; gap: 40px; }
  .about-media{ order: -1; }
  .video-grid{ grid-template-columns: 1fr; max-width: 400px; }
  section{ padding: 90px 0; }
}

@media (max-width: 800px){
  .main-nav{
    position: fixed;
    top: 0; right: 0;
    height: 100vh;
    width: 78%;
    max-width: 320px;
    background: var(--bg-alt);
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 26px;
    padding: 40px;
    transform: translateX(100%);
    transition: transform 0.3s ease;
    box-shadow: -20px 0 40px rgba(0,0,0,0.3);
  }
  .main-nav.is-open{ transform: translateX(0); }
  .nav-toggle{ display: flex; order: 3; }
  .lang-switch{ order: 2; }
  .gallery-grid{ grid-template-columns: repeat(2, 1fr); grid-auto-rows: 180px; }
  .gallery-item,
  .gallery-item:nth-child(1),
  .gallery-item:nth-child(2),
  .gallery-item:nth-child(3),
  .gallery-item:nth-child(4),
  .gallery-item:nth-child(5),
  .gallery-item:nth-child(6){ grid-column: span 1; grid-row: auto; }
}

@media (max-width: 560px){
  .stat-row{ flex-wrap: wrap; gap: 24px; }
  .hero-actions{ flex-direction: column; align-items: flex-start; }
}
