/* ============================================
   WienerWalk München – Stylesheet
   Farbwelt: Salbeigrün · Karamell · Creme
   Warm, einladend, hochwertig.
   ============================================ */

/* Schriften lokal eingebunden (kein Google-Server, DSGVO-sicher) */
@font-face {
  font-family: 'Fraunces';
  font-style: normal;
  font-weight: 600 700;
  font-display: swap;
  src: url('fonts/fraunces.woff2') format('woff2');
}
@font-face {
  font-family: 'Outfit';
  font-style: normal;
  font-weight: 400 700;
  font-display: swap;
  src: url('fonts/outfit.woff2') format('woff2');
}

:root {
  /* Grüntöne */
  --sage-900: #2b3524;
  --sage-800: #384730;
  --sage-700: #4c5e3f;
  --sage: #6e7f5b;
  --sage-300: #b7c2a3;
  --sage-100: #e4e8d8;

  /* Karamell-Akzent */
  --caramel: #b47a43;
  --caramel-dark: #8f5f31;
  --caramel-soft: #e9d8c2;

  /* Neutrale (warm getönt) */
  --cream: #f6f1e8;
  --cream-2: #efe7d8;
  --white: #fffdf9;
  --ink: #2c281f;
  --ink-soft: #6d6455;

  --radius: 20px;
  --radius-sm: 12px;
  --shadow: 0 18px 50px rgba(43, 53, 36, 0.14);
  --shadow-soft: 0 8px 26px rgba(43, 53, 36, 0.09);
  --maxw: 1160px;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'Outfit', 'Segoe UI', system-ui, sans-serif;
  background: var(--cream);
  color: var(--ink);
  line-height: 1.7;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3 {
  font-family: 'Fraunces', Georgia, serif;
  line-height: 1.12;
  text-wrap: balance;
  letter-spacing: -0.01em;
}

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

a { color: var(--caramel-dark); }

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

.kicker {
  color: var(--caramel);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2.5px;
  font-size: 0.8rem;
  margin-bottom: 14px;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--caramel);
  color: #fff;
  font-weight: 600;
  font-size: 1.02rem;
  text-decoration: none;
  padding: 15px 34px;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.2s ease, background 0.2s ease;
  box-shadow: 0 10px 24px rgba(180, 122, 67, 0.32);
}
.btn:hover { transform: translateY(-2px); background: var(--caramel-dark); box-shadow: 0 14px 30px rgba(143, 95, 49, 0.38); }

.btn-ghost {
  background: transparent;
  color: #fff;
  border: 1.5px solid rgba(255, 255, 255, 0.55);
  box-shadow: none;
}
.btn-ghost:hover { background: rgba(255, 255, 255, 0.12); border-color: #fff; }

.btn-outline {
  background: transparent;
  color: var(--sage-800);
  border: 1.5px solid var(--sage-300);
  box-shadow: none;
}
.btn-outline:hover { background: var(--sage-100); border-color: var(--sage); }

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 60;
  background: rgba(246, 241, 232, 0.85);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(43, 53, 36, 0.07);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 14px 0;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: var(--sage-900);
  font-weight: 600;
  font-size: 1.18rem;
  font-family: 'Fraunces', Georgia, serif;
}
.brand img { height: 46px; width: 46px; object-fit: cover; border-radius: 50%; border: 2px solid var(--sage-100); }

.main-nav { display: flex; flex-wrap: wrap; gap: 4px; align-items: center; }
.main-nav a {
  text-decoration: none;
  color: var(--sage-800);
  font-weight: 500;
  padding: 9px 15px;
  border-radius: 999px;
  transition: background 0.2s, color 0.2s;
  font-size: 0.96rem;
}
.main-nav a:hover { background: var(--sage-100); }
.main-nav a.nav-cta { background: var(--sage-800); color: #fff; }
.main-nav a.nav-cta:hover { background: var(--sage-900); }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(120% 120% at 85% 0%, rgba(180, 122, 67, 0.22), transparent 55%),
    linear-gradient(160deg, var(--sage-800), var(--sage-900));
  color: #fff;
  padding: 84px 0 92px;
}
.hero::after {
  /* dezente Pfoten-Textur */
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle at 12% 30%, rgba(255,255,255,0.04) 0 2px, transparent 3px),
                    radial-gradient(circle at 78% 70%, rgba(255,255,255,0.035) 0 2px, transparent 3px);
  background-size: 220px 220px, 180px 180px;
  pointer-events: none;
}

.hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 54px;
  align-items: center;
}

.hero .eyebrow {
  display: inline-block;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 999px;
  padding: 7px 18px;
  font-size: 0.9rem;
  letter-spacing: 0.4px;
  margin-bottom: 22px;
}

.hero h1 {
  font-size: clamp(2.6rem, 5.5vw, 4rem);
  font-weight: 700;
  margin-bottom: 16px;
}
.hero h1 .accent { color: var(--caramel-soft); font-style: italic; }

.hero .subline {
  max-width: 540px;
  margin-bottom: 30px;
  font-size: 1.12rem;
  color: rgba(255, 255, 255, 0.9);
}

.date-pill {
  display: inline-flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px 16px;
  background: var(--caramel);
  color: #fff;
  font-weight: 600;
  font-size: 1.08rem;
  padding: 12px 24px;
  border-radius: 999px;
  box-shadow: 0 10px 26px rgba(180, 122, 67, 0.4);
  margin-bottom: 12px;
}

.hero .location-note {
  font-size: 0.98rem;
  color: rgba(255, 255, 255, 0.82);
  margin-bottom: 28px;
}

/* Countdown */
.countdown { display: flex; gap: 12px; margin-bottom: 32px; flex-wrap: wrap; }
.countdown .unit {
  background: rgba(255, 255, 255, 0.09);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius-sm);
  padding: 14px 12px;
  min-width: 78px;
  text-align: center;
  backdrop-filter: blur(4px);
}
.countdown .num {
  font-size: 2rem;
  font-weight: 700;
  font-family: 'Fraunces', Georgia, serif;
  font-variant-numeric: tabular-nums;
}
.countdown .label {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: rgba(255, 255, 255, 0.75);
}

.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; }

/* Plakat */
.hero-poster { position: relative; }
.poster-frame {
  position: relative;
  background: var(--white);
  padding: 14px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  transform: rotate(1.4deg);
  transition: transform 0.3s ease;
}
.poster-frame:hover { transform: rotate(0deg); }
.poster-frame img {
  width: 100%;
  border-radius: 10px;
  aspect-ratio: 3 / 4;
  object-fit: cover;
}
.poster-tag {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--sage-800);
  color: #fff;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 999px;
  white-space: nowrap;
  box-shadow: var(--shadow-soft);
}

/* ---------- Sections ---------- */
section { padding: 90px 0; }

.section-head { text-align: center; max-width: 680px; margin: 0 auto 54px; }
.section-head h2 { font-size: clamp(1.9rem, 4vw, 2.7rem); margin-bottom: 14px; }
.section-head p { color: var(--ink-soft); font-size: 1.05rem; }

/* About */
.about { background: var(--white); }
.about-grid { display: grid; grid-template-columns: 1.05fr 1fr; gap: 56px; align-items: center; }
.about-text h2 { font-size: clamp(1.8rem, 3.6vw, 2.5rem); margin-bottom: 20px; }
.about-text p { margin-bottom: 16px; color: var(--ink-soft); }
.about-text strong { color: var(--ink); }

.about-img {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  aspect-ratio: 4 / 5;
  background: linear-gradient(160deg, var(--sage-300), var(--cream-2));
}
.about-img img { width: 100%; height: 100%; object-fit: cover; }

.fact-badges { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 24px; }
.fact-badges span {
  background: var(--sage-100);
  border: 1px solid var(--sage-300);
  border-radius: 999px;
  padding: 8px 16px;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--sage-800);
}

/* Regeln */
.rules { background: var(--cream); }
.rules-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(290px, 1fr)); gap: 22px; }
.rule-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 30px 28px;
  box-shadow: var(--shadow-soft);
  border: 1px solid rgba(43, 53, 36, 0.06);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.rule-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.rule-card .ic {
  width: 48px; height: 48px;
  display: grid; place-items: center;
  background: var(--sage-100);
  border-radius: 14px;
  font-size: 1.5rem;
  margin-bottom: 16px;
}
.rule-card h3 { font-size: 1.18rem; margin-bottom: 8px; color: var(--sage-900); }
.rule-card p { color: var(--ink-soft); font-size: 0.97rem; }
.rules-note { text-align: center; color: var(--ink-soft); font-size: 0.9rem; margin-top: 34px; }

/* Galerie */
.gallery { background: var(--white); }
.gallery-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(230px, 1fr)); gap: 16px; }
.gallery-grid img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-soft);
  transition: transform 0.25s ease;
}
.gallery-grid img:hover { transform: scale(1.03); }

/* Instagram */
.insta { background: var(--sage-100); }
.insta-embed {
  max-width: 940px;
  margin: 0 auto;
  min-height: 260px;
}
.insta-consent {
  background: var(--white);
  border: 1px dashed var(--sage-300);
  border-radius: var(--radius);
  padding: 44px 30px;
  text-align: center;
  box-shadow: var(--shadow-soft);
}
.insta-consent .ic { font-size: 2.4rem; margin-bottom: 14px; }
.insta-consent p { color: var(--ink-soft); max-width: 520px; margin: 0 auto 22px; font-size: 0.97rem; }
.insta-consent .btn { margin: 6px; }
.insta-fallback-link { display: inline-block; margin-top: 8px; font-weight: 600; }

/* FAQ */
.faq { background: var(--cream); }
.faq-list { max-width: 780px; margin: 0 auto; display: flex; flex-direction: column; gap: 14px; }
.faq-item {
  background: var(--white);
  border-radius: var(--radius-sm);
  border: 1px solid rgba(43, 53, 36, 0.07);
  box-shadow: var(--shadow-soft);
  overflow: hidden;
}
.faq-item summary {
  cursor: pointer;
  list-style: none;
  padding: 20px 24px;
  font-weight: 600;
  font-size: 1.05rem;
  color: var(--sage-900);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+";
  font-size: 1.5rem;
  color: var(--caramel);
  transition: transform 0.2s ease;
  line-height: 1;
}
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-item .faq-body { padding: 0 24px 22px; color: var(--ink-soft); }

/* Anmeldung */
.signup { background: var(--white); }
.signup-wrap { display: grid; grid-template-columns: 1fr 1.1fr; gap: 54px; align-items: start; }
.signup-info h2 { font-size: clamp(1.8rem, 3.6vw, 2.5rem); margin-bottom: 18px; }
.signup-info p { color: var(--ink-soft); margin-bottom: 16px; }
.signup-perks { list-style: none; margin-top: 12px; }
.signup-perks li { padding-left: 32px; position: relative; margin-bottom: 12px; color: var(--ink); }
.signup-perks li::before { content: "🐾"; position: absolute; left: 0; }

.signup-form {
  background: var(--cream);
  border-radius: var(--radius);
  padding: 38px 34px;
  box-shadow: var(--shadow);
  border: 1px solid var(--sage-100);
}
.form-field { margin-bottom: 20px; }
.form-field label { display: block; font-weight: 600; margin-bottom: 7px; font-size: 0.95rem; }
.form-field input[type="text"],
.form-field input[type="email"],
.form-field select,
.form-field textarea {
  width: 100%;
  padding: 13px 16px;
  border: 1.5px solid var(--cream-2);
  border-radius: var(--radius-sm);
  font-family: inherit;
  font-size: 1rem;
  background: var(--white);
  color: var(--ink);
  transition: border-color 0.2s, box-shadow 0.2s;
}
.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  outline: none;
  border-color: var(--sage);
  box-shadow: 0 0 0 3px rgba(110, 127, 91, 0.15);
}
.form-check { display: flex; gap: 10px; align-items: flex-start; margin-bottom: 20px; font-size: 0.85rem; color: var(--ink-soft); }
.form-check input { margin-top: 4px; flex-shrink: 0; }
.required-note { font-size: 0.8rem; color: var(--ink-soft); margin-bottom: 18px; }
.signup-form .btn { width: 100%; justify-content: center; }

/* Honeypot – für Menschen unsichtbar */
.hp-field { position: absolute; left: -9999px; opacity: 0; height: 0; overflow: hidden; }

/* ---------- Footer ---------- */
.site-footer {
  background: var(--sage-900);
  color: rgba(255, 255, 255, 0.82);
  padding: 56px 0 32px;
  text-align: center;
}
.site-footer .footer-brand { font-family: 'Fraunces', Georgia, serif; font-size: 1.4rem; color: #fff; margin-bottom: 14px; }
.site-footer a { color: #fff; }
.footer-links { display: flex; justify-content: center; flex-wrap: wrap; gap: 20px; margin: 18px 0; font-size: 0.95rem; }
.footer-links a { text-decoration: none; opacity: 0.82; }
.footer-links a:hover { opacity: 1; text-decoration: underline; }
.insta-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 999px;
  padding: 10px 22px;
  text-decoration: none;
  margin-bottom: 10px;
  transition: background 0.2s;
}
.insta-link:hover { background: rgba(255, 255, 255, 0.2); }
.copyright { font-size: 0.82rem; opacity: 0.6; margin-top: 16px; }

/* ---------- Rechtsseiten & Danke-Seite ---------- */
.legal-page { padding: 60px 0 80px; max-width: 800px; margin: 0 auto; }
.legal-page h1 { font-size: 2.3rem; margin-bottom: 30px; color: var(--sage-900); }
.legal-page h2 { font-size: 1.4rem; margin: 36px 0 12px; color: var(--sage-800); }
.legal-page h3 { font-size: 1.1rem; margin: 22px 0 8px; }
.legal-page p, .legal-page li { color: var(--ink-soft); margin-bottom: 12px; }
.legal-page ul { padding-left: 22px; }
.back-link { display: inline-block; margin-bottom: 30px; text-decoration: none; font-weight: 600; }

.thanks-hero {
  min-height: 72vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 60px 22px;
}
.thanks-hero .big-emoji { font-size: 4rem; margin-bottom: 20px; }
.thanks-hero h1 { font-size: clamp(2rem, 5vw, 3rem); margin-bottom: 16px; color: var(--sage-900); }
.thanks-hero p { color: var(--ink-soft); max-width: 540px; margin-bottom: 20px; }

/* ---------- Scroll-Reveal ---------- */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal.in { opacity: 1; transform: none; }

/* ---------- Responsive ---------- */
@media (max-width: 900px) {
  .hero-inner { grid-template-columns: 1fr; gap: 40px; }
  .hero-poster { max-width: 360px; margin: 0 auto; }
  .about-grid, .signup-wrap { grid-template-columns: 1fr; }
  .about-img { aspect-ratio: 16 / 10; order: -1; }
  section { padding: 66px 0; }
  .hero { padding: 60px 0 70px; }
}

@media (max-width: 560px) {
  body { font-size: 16px; }
  .header-inner { flex-direction: column; gap: 8px; padding-bottom: 10px; }
  .main-nav { justify-content: center; }
  .countdown .unit { min-width: 66px; padding: 12px 8px; }
  .countdown .num { font-size: 1.7rem; }
  .signup-form { padding: 28px 22px; }
}

@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; transition: none !important; }
  .reveal { opacity: 1; transform: none; }
  html { scroll-behavior: auto; }
}
