/* La Cuisine Caribic — Kochschule & Catering */

@import url('fonts/fonts.css');

:root {
  --cream: #fbf6ee;
  --cream-alt: #f2e8d8;
  --paper: #fffdf9;
  --ink: #2b241f;
  --ink-soft: #59493d;
  --terracotta: #c1622d;
  --terracotta-dark: #9c4a1e;
  --wine: #8a3345;
  --wine-dark: #431521;
  --line: rgba(43, 36, 31, 0.12);
  --shadow: 0 20px 50px rgba(43, 36, 31, 0.14);
  --radius: 18px;
  --font-heading: 'Fraunces', Georgia, 'Times New Roman', serif;
  --font-body: 'Inter', 'Helvetica Neue', Arial, sans-serif;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  background: var(--cream);
  color: var(--ink);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

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

h1, h2, h3, h4 {
  font-family: var(--font-heading);
  font-weight: 500;
  line-height: 1.15;
  color: var(--ink);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--terracotta-dark);
  font-weight: 600;
  margin-bottom: 18px;
}
.eyebrow::before {
  content: "";
  width: 28px;
  height: 1px;
  background: var(--terracotta);
}

.section-head {
  max-width: 640px;
  margin-bottom: 48px;
}
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }
.section-head h2 { font-size: clamp(1.9rem, 3.4vw, 2.6rem); margin-bottom: 14px; }
.section-head p { color: var(--ink-soft); font-size: 1.05rem; }

section { padding: 96px 0; position: relative; }
.alt-bg { background: var(--cream-alt); }

.wrap {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 32px;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 15px 30px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.95rem;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease, color 0.25s ease;
  white-space: nowrap;
}
.btn-primary {
  background: var(--terracotta);
  color: #fff;
  box-shadow: 0 12px 26px rgba(193, 98, 45, 0.35);
}
.btn-primary:hover { background: var(--terracotta-dark); transform: translateY(-2px); }
.btn-ghost {
  background: transparent;
  border-color: rgba(251, 246, 238, 0.5);
  color: inherit;
}
.btn-ghost:hover { background: rgba(255,255,255,0.12); transform: translateY(-2px); }
.btn-outline {
  background: transparent;
  border-color: var(--terracotta);
  color: var(--terracotta-dark);
}
.btn-outline:hover { background: var(--terracotta); color: #fff; transform: translateY(-2px); }

/* ---------- NAV ---------- */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 500;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 32px;
  background: rgba(251, 246, 238, 0.96);
  backdrop-filter: blur(10px);
  box-shadow: 0 2px 14px rgba(43,36,31,0.06);
  transition: padding 0.35s ease, box-shadow 0.35s ease;
}
.nav.scrolled {
  padding: 12px 32px;
  box-shadow: 0 6px 24px rgba(43,36,31,0.1);
}
.nav-logo img {
  height: 40px;
  width: auto;
}
.nav-logo { display: flex; align-items: center; gap: 10px; }
.nav-links {
  display: flex;
  align-items: center;
  gap: 30px;
  list-style: none;
}
.nav-links a {
  font-size: 0.88rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  color: var(--ink);
  position: relative;
  padding: 4px 0;
  transition: color 0.25s ease;
}
.nav-links a::after {
  content: "";
  position: absolute;
  left: 0; bottom: -2px;
  width: 0; height: 2px;
  background: var(--terracotta);
  transition: width 0.25s ease;
}
.nav-links a:hover::after,
.nav-links a.active::after { width: 100%; }
.nav-links a.active { color: var(--terracotta-dark); }
.nav-cta {
  display: none;
}
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  z-index: 600;
  padding: 6px;
}
.nav-toggle span {
  width: 24px;
  height: 2px;
  background: var(--ink);
  transition: all 0.3s ease;
}

/* ---------- HERO ---------- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--paper);
  overflow: hidden;
}
.hero-media {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 78% 25%;
}
.hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(60% 55% at 50% 48%, rgba(18,14,11,0.72) 0%, rgba(18,14,11,0.42) 55%, rgba(18,14,11,0.12) 100%),
    linear-gradient(180deg, rgba(20,16,13,0.55) 0%, rgba(20,16,13,0.05) 18%, rgba(20,16,13,0.1) 60%, rgba(20,16,13,0.75) 100%);
}
.hero-content {
  position: relative;
  z-index: 1;
  padding: 46px 48px;
  max-width: 720px;
  margin: 0 32px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  background: rgba(18, 14, 11, 0.32);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 26px;
}
.hero-content .eyebrow { color: #f0c9a8; }
.hero-content .eyebrow::before { background: #f0c9a8; }
.hero h1 {
  font-size: clamp(2.2rem, 5.4vw, 4rem);
  color: #fff;
  margin-bottom: 20px;
}
.hero h1 em {
  font-style: italic;
  color: #f0c9a8;
}
.hero-content p {
  font-size: 1.12rem;
  max-width: 560px;
  color: rgba(255,255,255,0.9);
  margin: 0 auto 34px;
}
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; justify-content: center; }
.scroll-cue {
  position: absolute;
  right: 40px;
  bottom: 40px;
  z-index: 1;
  writing-mode: vertical-rl;
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
  display: flex;
  align-items: center;
  gap: 12px;
}
.scroll-cue::after {
  content: "";
  width: 1px;
  height: 50px;
  background: rgba(255,255,255,0.5);
}

/* ---------- SPLIT / SERVICE SECTIONS ---------- */
.split {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 70px;
  align-items: center;
}
.split.reverse .split-media { order: 2; }
.split.reverse .split-text { order: 1; }
.split-media {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}
.split-media img { width: 100%; height: 100%; object-fit: cover; aspect-ratio: 4/5; }
.split-text h3 { font-size: clamp(1.6rem, 2.6vw, 2.1rem); margin-bottom: 16px; }
.split-text p { color: var(--ink-soft); margin-bottom: 18px; }
.split-text p:last-of-type { margin-bottom: 26px; }

.tag-row { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 26px; }
.tag {
  font-size: 0.8rem;
  font-weight: 600;
  padding: 7px 16px;
  border-radius: 999px;
  background: rgba(138, 51, 69, 0.09);
  color: var(--wine-dark);
}

.fact-row {
  display: flex;
  gap: 34px;
  margin-bottom: 28px;
  flex-wrap: wrap;
}
.fact-row .fact { min-width: 110px; }
.fact strong {
  display: block;
  font-family: var(--font-heading);
  font-size: 1.6rem;
  color: var(--terracotta-dark);
}
.fact span { font-size: 0.85rem; color: var(--ink-soft); }

/* ---------- LOCATION CARDS (Dresden Ateliers) ---------- */
.loc-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  margin-top: 20px;
}
.loc-card {
  background: var(--paper);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid var(--line);
  transition: transform 0.3s ease;
}
.loc-card:hover { transform: translateY(-6px); }
.loc-card-media { aspect-ratio: 16/10; overflow: hidden; }
.loc-card-media img { width: 100%; height: 100%; object-fit: cover; }
.loc-card-body { padding: 28px; }
.loc-card-body h4 { font-size: 1.25rem; margin-bottom: 6px; }
.loc-card-body .loc-address { color: var(--terracotta-dark); font-size: 0.9rem; font-weight: 600; margin-bottom: 12px; }
.loc-card-body p { color: var(--ink-soft); font-size: 0.95rem; margin-bottom: 16px; }
.loc-meta { display: flex; gap: 20px; font-size: 0.85rem; color: var(--ink-soft); flex-wrap: wrap; }
.loc-meta b { color: var(--ink); }

/* ---------- CATERING GRID ---------- */
.catering-layout {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 70px;
  align-items: center;
}
.mini-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}
.mini-grid img {
  border-radius: 12px;
  aspect-ratio: 1;
  object-fit: cover;
  box-shadow: 0 10px 24px rgba(43,36,31,0.14);
}
.mini-grid a:nth-child(2) { margin-top: 26px; }
.mini-grid a:nth-child(3) { margin-top: -12px; }

.info-list { list-style: none; margin-bottom: 26px; }
.info-list li {
  display: flex;
  gap: 12px;
  padding: 10px 0;
  border-bottom: 1px dashed var(--line);
  color: var(--ink-soft);
  font-size: 0.98rem;
}
.info-list li:last-child { border-bottom: none; }
.info-list b { color: var(--ink); min-width: 150px; }

/* ---------- SHOWKOCHEN ---------- */
.showkochen {
  background: var(--wine-dark);
  color: var(--paper);
}
.showkochen h2 { color: #fff; }
.showkochen .section-head p { color: rgba(255,255,255,0.75); }
.showkochen .eyebrow { color: #f0c9a8; }
.showkochen .eyebrow::before { background: #f0c9a8; }
.show-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.video-frame {
  display: block;
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 30px 60px rgba(0,0,0,0.4);
  aspect-ratio: 16/9;
  background: #000;
}
.video-frame iframe { width: 100%; height: 100%; border: 0; }
.video-thumb { width: 100%; height: 100%; object-fit: cover; filter: brightness(0.75); }
.video-play {
  position: absolute;
  inset: 0;
  width: 100%;
  border: none;
  background: transparent;
  color: #fff;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 14px;
  cursor: pointer;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.95rem;
}
.video-play-icon {
  width: 78px;
  height: 78px;
  border-radius: 50%;
  background: var(--terracotta);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  box-shadow: 0 16px 34px rgba(0,0,0,0.45);
  transition: transform 0.25s ease, background 0.25s ease;
}
.video-play:hover .video-play-icon { transform: scale(1.08); background: var(--terracotta-dark); }
.show-text p { color: rgba(255,255,255,0.82); margin-bottom: 18px; }
.show-text .btn-primary { margin-top: 6px; }

/* ---------- GALERIE ---------- */
.gallery-grid {
  columns: 4 220px;
  column-gap: 18px;
}
.gallery-grid a {
  display: block;
  margin-bottom: 18px;
  break-inside: avoid;
  border-radius: 10px;
  overflow: hidden;
  position: relative;
  cursor: zoom-in;
}
.gallery-grid img {
  width: 100%;
  display: block;
  transition: transform 0.5s ease, filter 0.4s ease;
}
.gallery-grid a:hover img { transform: scale(1.06) rotate(-0.4deg); }
.gallery-grid a::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(0deg, rgba(31,92,88,0.35), transparent 40%);
  opacity: 0;
  transition: opacity 0.3s ease;
}
.gallery-grid a:hover::after { opacity: 1; }

.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(20,16,13,0.92);
  z-index: 1000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 40px;
}
.lightbox.open { display: flex; }
.lightbox img {
  max-width: 90vw;
  max-height: 85vh;
  border-radius: 8px;
  box-shadow: 0 30px 80px rgba(0,0,0,0.5);
}
.lightbox-close, .lightbox-prev, .lightbox-next {
  position: absolute;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.25);
  color: #fff;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 1.2rem;
  transition: background 0.25s ease;
}
.lightbox-close:hover, .lightbox-prev:hover, .lightbox-next:hover { background: rgba(255,255,255,0.2); }
.lightbox-close { top: 28px; right: 28px; }
.lightbox-prev { left: 28px; top: 50%; transform: translateY(-50%); }
.lightbox-next { right: 28px; top: 50%; transform: translateY(-50%); }

/* ---------- ÜBER MICH ---------- */
.about-layout {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 70px;
  align-items: start;
}
.about-media { position: sticky; top: 110px; }
.about-media img {
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  aspect-ratio: 3/4;
  object-fit: cover;
}
.about-quote {
  margin-top: 24px;
  padding: 22px 24px;
  background: var(--paper);
  border-left: 3px solid var(--terracotta);
  border-radius: 0 12px 12px 0;
  font-family: var(--font-heading);
  font-style: italic;
  font-size: 1.05rem;
  color: var(--ink-soft);
  box-shadow: var(--shadow);
}
.timeline { list-style: none; margin-top: 10px; }
.timeline li {
  position: relative;
  padding: 0 0 30px 34px;
  border-left: 2px solid var(--line);
}
.timeline li:last-child { border-color: transparent; padding-bottom: 0; }
.timeline li::before {
  content: "";
  position: absolute;
  left: -7px; top: 2px;
  width: 12px; height: 12px;
  border-radius: 50%;
  background: var(--terracotta);
  border: 3px solid var(--cream);
  box-shadow: 0 0 0 1px var(--terracotta);
}
.timeline b { display: block; color: var(--terracotta-dark); font-size: 0.85rem; letter-spacing: 0.04em; text-transform: uppercase; margin-bottom: 4px; }
.timeline span { color: var(--ink-soft); font-size: 0.98rem; }
.golf-note {
  margin-top: 34px;
  padding: 26px 28px;
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(193,98,45,0.12), rgba(138,51,69,0.1));
  border: 1px solid rgba(193,98,45,0.25);
  box-shadow: 0 14px 32px rgba(43,36,31,0.08);
  display: flex;
  align-items: flex-start;
  gap: 18px;
}
.golf-note-photo {
  flex-shrink: 0;
  width: 84px;
  height: 84px;
  border-radius: 50%;
  overflow: hidden;
  border: 3px solid #fff;
  box-shadow: 0 8px 20px rgba(43,36,31,0.25);
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
}
.golf-note-photo img { width: 68%; height: 68%; object-fit: contain; }
.golf-note-body strong {
  display: block;
  font-family: var(--font-heading);
  font-size: 1.1rem;
  color: var(--ink);
  margin-bottom: 6px;
}
.golf-note-body p {
  font-size: 0.94rem;
  color: var(--ink-soft);
  margin-bottom: 14px;
}
.golf-note-body p strong { display: inline; font-family: inherit; font-size: inherit; color: var(--terracotta-dark); }
.golf-note-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 700;
  font-size: 0.9rem;
  color: #fff;
  background: var(--terracotta);
  padding: 10px 18px;
  border-radius: 999px;
  transition: background 0.25s ease, transform 0.25s ease;
}
.golf-note-link:hover { background: var(--terracotta-dark); transform: translateY(-2px); }

/* ---------- KONTAKT ---------- */
.contact {
  background: var(--wine-dark);
  color: var(--paper);
}
.contact-layout {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 60px;
}
.contact-info h2 { color: #fff; font-size: clamp(1.9rem, 3.4vw, 2.5rem); margin-bottom: 16px; }
.contact-info > p { color: rgba(255,255,255,0.75); margin-bottom: 30px; max-width: 420px; }
.contact-channels { list-style: none; margin-bottom: 30px; }
.contact-channels li {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 0;
  border-bottom: 1px solid rgba(255,255,255,0.12);
}
.contact-channels li:first-child { border-top: 1px solid rgba(255,255,255,0.12); }
.contact-channels .ico {
  width: 38px; height: 38px;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  color: #f0c9a8;
}
.contact-channels .ico svg { width: 18px; height: 18px; }
.contact-channels a, .contact-channels span.label { font-weight: 600; }
.contact-channels small { display: block; color: rgba(255,255,255,0.6); font-weight: 400; }
.social-row { display: flex; gap: 12px; }
.social-row a {
  width: 42px; height: 42px;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  color: #fff;
  display: flex; align-items: center; justify-content: center;
  transition: background 0.25s ease, transform 0.25s ease;
}
.social-row a svg { width: 20px; height: 20px; }
.social-row a:hover { background: var(--terracotta); transform: translateY(-3px); }

.contact-form {
  background: var(--paper);
  border-radius: var(--radius);
  padding: 38px;
  color: var(--ink);
  box-shadow: var(--shadow);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; margin-bottom: 18px; }
.field { display: flex; flex-direction: column; gap: 6px; }
.field.full { grid-column: 1 / -1; }
.field label { font-size: 0.82rem; font-weight: 600; color: var(--ink-soft); }
.field input, .field select, .field textarea {
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 12px 14px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  background: var(--cream);
  color: var(--ink);
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: 2px solid var(--terracotta);
  outline-offset: 1px;
}
.field textarea { resize: vertical; min-height: 90px; }
.form-note { font-size: 0.82rem; color: var(--ink-soft); margin-top: 14px; }
.form-note.is-success { color: #2e7d4f; font-weight: 600; }
.form-note.is-error { color: #b0323a; font-weight: 600; }
.hp-field { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }
.btn.is-loading { opacity: 0.7; pointer-events: none; }

/* ---------- FOOTER ---------- */
footer {
  background: #2a1116;
  color: rgba(255,255,255,0.55);
  padding: 34px 0;
  font-size: 0.85rem;
}
.footer-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 14px;
}
.footer-row a:hover { color: #fff; }
.footer-links { display: flex; gap: 22px; }

/* ---------- COOKIE BANNER ---------- */
.cookie-banner {
  position: fixed;
  left: 24px; right: 24px; bottom: 24px;
  max-width: 780px;
  margin: 0 auto;
  background: var(--paper);
  color: var(--ink);
  border-radius: 16px;
  box-shadow: 0 24px 60px rgba(0,0,0,0.28);
  padding: 24px 26px;
  z-index: 900;
  display: none;
  gap: 18px;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  border: 1px solid var(--line);
}
.cookie-banner.show { display: flex; }
.cookie-banner-text { flex: 1 1 380px; font-size: 0.88rem; color: var(--ink-soft); }
.cookie-banner-text strong { display: block; color: var(--ink); font-size: 0.95rem; margin-bottom: 4px; }
.cookie-banner-text a { color: var(--terracotta-dark); font-weight: 600; }
.cookie-banner-actions { display: flex; gap: 12px; flex-wrap: wrap; }
.cookie-banner-actions .btn { padding: 12px 22px; font-size: 0.88rem; }

@media (max-width: 620px) {
  .cookie-banner { left: 14px; right: 14px; bottom: 14px; padding: 20px; }
  .cookie-banner-actions { width: 100%; }
  .cookie-banner-actions .btn { flex: 1; justify-content: center; }
}

/* ---------- RESPONSIVE ---------- */
@media (max-width: 980px) {
  .split, .catering-layout, .about-layout, .contact-layout, .show-layout {
    grid-template-columns: 1fr;
  }
  .split.reverse .split-media, .split.reverse .split-text { order: unset; }
  .about-media { position: static; }
  .split-media img { aspect-ratio: 16/10; }
  .loc-grid { grid-template-columns: 1fr; }
  .nav-links {
    position: fixed;
    top: 0; right: -100%;
    height: 100vh;
    width: min(320px, 80vw);
    background: var(--cream);
    flex-direction: column;
    justify-content: center;
    gap: 26px;
    transition: right 0.35s ease;
    box-shadow: -20px 0 40px rgba(0,0,0,0.15);
  }
  .nav-links.open { right: 0; }
  .nav-links a { color: var(--ink) !important; font-size: 1.1rem; }
  .nav-toggle { display: flex; }
  .gallery-grid { columns: 2 160px; }
}

@media (max-width: 620px) {
  section { padding: 64px 0; }
  .wrap { padding: 0 20px; }
  .hero-content {
    margin: 0 16px;
    padding: 30px 22px;
    border-radius: 20px;
  }
  .hero-content p { font-size: 1rem; margin-bottom: 26px; }
  .hero-actions { flex-direction: column; width: 100%; }
  .hero-actions .btn { width: 100%; justify-content: center; }
  .form-row { grid-template-columns: 1fr; }
  .scroll-cue { display: none; }
  .mini-grid { grid-template-columns: repeat(2, 1fr); }
  .mini-grid a:nth-child(2), .mini-grid a:nth-child(3) { margin-top: 0; }
  .contact-form { padding: 26px; }
  .gallery-grid { columns: 2 130px; column-gap: 10px; }
  .gallery-grid a { margin-bottom: 10px; }
  .loc-meta { gap: 12px; }
  .footer-row { flex-direction: column; text-align: center; }
  .footer-links { gap: 16px; flex-wrap: wrap; justify-content: center; }
}

@media (max-width: 400px) {
  .hero-content { padding: 24px 16px; }
  .hero h1 { font-size: 1.9rem; }
}
