/* =====================================================
   W20 KULTISTEN — Öffentliche Homepage
   Gleicher Stil wie der interne Bereich
   ===================================================== */

@import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@400;600;700&family=Inter:wght@400;500;600&display=swap');

:root {
  --bg:      #0d0d10;
  --surface: #16161c;
  --s2:      #1e1e27;
  --border:  #2e2e3e;
  --gold:    #c9a84c;
  --gold-h:  #e0be6a;
  --gold-d:  #8a6f2e;
  --crimson: #8b1a1a;
  --teal:    #2a6b6b;
  --text:    #ddd8cc;
  --text-h:  #f5f0e8;
  --muted:   #7a7a96;
}

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

body {
  font-family: 'Inter', sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.65;
}

a { color: var(--gold); text-decoration: none; }
a:hover { color: var(--gold-h); }

h1, h2, h3, h4 {
  font-family: 'Cinzel', serif;
  color: var(--text-h);
  line-height: 1.2;
}

.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ═══════════════════════════════════
   NAVIGATION
═══════════════════════════════════ */
.main-nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: 68px;
  background: rgba(10,10,14,0.96);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border);
  z-index: 1000;
}

.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 28px;
  height: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.nav-logo {
  font-family: 'Cinzel', serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--gold);
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}
.nav-logo:hover { color: var(--gold-h); }
.nav-logo-icon { font-size: 1.4rem; }

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

.nav-links a {
  color: var(--muted);
  font-size: 0.88rem;
  font-weight: 500;
  padding: 8px 14px;
  border-radius: 8px;
  transition: color .15s, background .15s;
  text-decoration: none;
}
.nav-links a:hover { color: var(--text-h); background: var(--s2); }
.nav-links a.active { color: var(--gold); }

.nav-btn {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 9px 18px;
  border-radius: 8px;
  background: var(--gold);
  color: #0d0d10 !important;
  font-weight: 700;
  font-size: 0.88rem;
  transition: background .15s;
}
.nav-btn:hover { background: var(--gold-h) !important; }

/* Burger (mobile) */
.nav-burger { display: none; cursor: pointer; background: none; border: none; padding: 8px; }
.nav-burger span { display: block; width: 22px; height: 2px; background: var(--text); margin: 5px 0; border-radius: 2px; transition: all .25s; }

/* ═══════════════════════════════════
   HERO
═══════════════════════════════════ */
.hero {
  padding-top: 68px;
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}

/* Hintergrund: Raster-Muster mit Radial-Glow */
.hero::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 50% -10%, rgba(139,26,26,0.18) 0%, transparent 60%),
    radial-gradient(ellipse 60% 40% at 80% 80%, rgba(42,107,107,0.1) 0%, transparent 50%),
    url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%232e2e3e' fill-opacity='0.4'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  pointer-events: none;
}

.hero-inner {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 80px 24px;
  max-width: 800px;
  margin: 0 auto;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(201,168,76,.1);
  border: 1px solid rgba(201,168,76,.3);
  color: var(--gold);
  padding: 6px 16px;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: .5px;
  margin-bottom: 28px;
  font-family: 'Cinzel', serif;
}

.hero h1 {
  font-size: clamp(2.2rem, 6vw, 3.8rem);
  color: var(--text-h);
  margin-bottom: 8px;
  text-shadow: 0 0 40px rgba(201,168,76,0.15);
}

.hero-sub {
  font-family: 'Cinzel', serif;
  font-size: clamp(1rem, 2vw, 1.4rem);
  color: var(--gold);
  margin-bottom: 24px;
  letter-spacing: 1px;
}

.hero-desc {
  font-size: 1.05rem;
  color: var(--muted);
  max-width: 580px;
  margin: 0 auto 40px;
  line-height: 1.75;
}

.hero-actions {
  display: flex;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
}

.btn-gold {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 28px;
  border-radius: 10px;
  background: var(--gold);
  color: #0d0d10;
  font-weight: 700;
  font-size: 0.95rem;
  font-family: 'Inter', sans-serif;
  transition: background .15s, transform .1s;
  text-decoration: none;
}
.btn-gold:hover { background: var(--gold-h); color: #0d0d10; transform: translateY(-1px); }

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 28px;
  border-radius: 10px;
  background: transparent;
  color: var(--text);
  font-weight: 600;
  font-size: 0.95rem;
  font-family: 'Inter', sans-serif;
  border: 1px solid var(--border);
  transition: border-color .15s, color .15s, transform .1s;
  text-decoration: none;
}
.btn-outline:hover { border-color: var(--gold-d); color: var(--gold); transform: translateY(-1px); }

/* Scroll-Indicator */
.hero-scroll {
  margin-top: 60px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: var(--muted);
  font-size: 0.78rem;
  letter-spacing: .5px;
  text-transform: uppercase;
  animation: bounce 2s infinite;
}
.hero-scroll::before { content: '↓'; font-size: 1.2rem; color: var(--gold); }

@keyframes bounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(6px); }
}

/* ═══════════════════════════════════
   STATS-LEISTE
═══════════════════════════════════ */
.stats-bar {
  background: var(--surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 32px 0;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}

.stat-item {
  text-align: center;
  padding: 16px 20px;
  border-right: 1px solid var(--border);
}
.stat-item:last-child { border-right: none; }

.stat-num {
  font-family: 'Cinzel', serif;
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--gold);
  display: block;
}
.stat-label {
  font-size: 0.75rem;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: .5px;
  margin-top: 4px;
}

/* ═══════════════════════════════════
   SEKTION: Über uns
═══════════════════════════════════ */
.section { padding: 90px 0; }
.section-sm { padding: 60px 0; }

.section-label {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--gold);
  font-size: 0.78rem;
  font-family: 'Cinzel', serif;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.section-label::before, .section-label::after {
  content: '';
  height: 1px;
  width: 30px;
  background: var(--gold-d);
  opacity: .7;
}

.section-title {
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  color: var(--text-h);
  margin-bottom: 16px;
}

.section-text {
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.8;
  max-width: 620px;
}

/* Zweispaltig: Text + Kacheln */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.about-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-top: 32px;
}

.feature-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 20px;
  transition: border-color .2s, transform .15s;
}
.feature-card:hover { border-color: var(--gold-d); transform: translateY(-2px); }
.feature-card .icon { font-size: 1.5rem; margin-bottom: 10px; display: block; }
.feature-card h4 { font-size: 0.9rem; color: var(--text-h); margin-bottom: 6px; }
.feature-card p { font-size: 0.83rem; color: var(--muted); line-height: 1.5; }

/* Brettspiel-SVG Illustration */
.about-visual {
  display: flex;
  justify-content: center;
  align-items: center;
}

.board-illustration {
  width: 100%;
  max-width: 420px;
  aspect-ratio: 1;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.board-illustration::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(circle at 50% 50%, rgba(201,168,76,.06) 0%, transparent 70%);
}

.board-emoji-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  padding: 30px;
  position: relative;
  z-index: 1;
}

.board-emoji {
  font-size: 2rem;
  text-align: center;
  line-height: 1;
  filter: drop-shadow(0 2px 8px rgba(0,0,0,.3));
  transition: transform .2s;
}
.board-emoji:hover { transform: scale(1.2) rotate(-5deg); }

/* ═══════════════════════════════════
   SEKTION: Spielabende
═══════════════════════════════════ */
.events-bg {
  background: var(--surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.events-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 50px;
}

.event-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-left: 4px solid var(--gold);
  border-radius: 12px;
  padding: 24px;
  transition: border-color .2s, transform .15s;
}
.event-card:hover { border-color: var(--gold-d); transform: translateY(-2px); }
.event-card .ec-icon { font-size: 2rem; margin-bottom: 14px; display: block; }
.event-card h3 { font-size: 1rem; color: var(--text-h); margin-bottom: 10px; }
.event-card p { font-size: 0.87rem; color: var(--muted); line-height: 1.65; }

/* ═══════════════════════════════════
   CTA: Mitgliederbereich
═══════════════════════════════════ */
.cta-section {
  padding: 90px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 80% 50% at 50% 50%, rgba(139,26,26,.12) 0%, transparent 70%);
  pointer-events: none;
}

.cta-box {
  position: relative;
  z-index: 1;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 60px 48px;
  max-width: 700px;
  margin: 0 auto;
}

.cta-box::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--crimson), var(--gold), var(--teal));
  border-radius: 20px 20px 0 0;
}

.cta-icon { font-size: 3rem; display: block; margin-bottom: 20px; }
.cta-box h2 { font-size: 1.9rem; margin-bottom: 14px; }
.cta-box p { color: var(--muted); font-size: 1rem; max-width: 500px; margin: 0 auto 32px; }

/* ═══════════════════════════════════
   KONTAKT
═══════════════════════════════════ */
.kontakt-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: start;
  margin-top: 50px;
}

.contact-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 28px;
}
.contact-card h3 {
  font-size: 0.88rem;
  color: var(--gold);
  letter-spacing: .5px;
  margin-bottom: 16px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--border);
}
.contact-row {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  padding: 10px 0;
  border-bottom: 1px solid var(--border);
  font-size: 0.9rem;
}
.contact-row:last-child { border-bottom: none; }
.contact-row .icon { color: var(--gold); flex-shrink: 0; font-size: 1rem; margin-top: 1px; }
.contact-row .label { color: var(--muted); font-size: 0.75rem; display: block; margin-bottom: 2px; }
.contact-row .value { color: var(--text); }
.contact-row .value a { color: var(--gold); }
.contact-row .value a:hover { color: var(--gold-h); }

/* ═══════════════════════════════════
   FOOTER
═══════════════════════════════════ */
.site-footer {
  background: var(--surface);
  border-top: 1px solid var(--border);
  padding: 28px 0;
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 28px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 0.85rem;
  color: var(--muted);
}

.footer-inner a { color: var(--muted); }
.footer-inner a:hover { color: var(--gold); }

/* ═══════════════════════════════════
   IMPRESSUM PAGE
═══════════════════════════════════ */
.page-wrap {
  padding-top: 68px;
  min-height: 100vh;
}

.page-hero {
  background: var(--surface);
  border-bottom: 1px solid var(--border);
  padding: 48px 0 40px;
}

.page-hero h1 {
  font-size: 2rem;
  color: var(--gold);
}

.page-hero p { color: var(--muted); margin-top: 8px; }

.impressum-body {
  padding: 60px 0 80px;
}

.impressum-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 14px;
  overflow: hidden;
  margin-bottom: 20px;
}

.impressum-card-head {
  background: #1e1e27;
  border-bottom: 1px solid var(--border);
  padding: 14px 24px;
  font-family: 'Cinzel', serif;
  font-size: 0.85rem;
  color: var(--gold);
  letter-spacing: .5px;
}

.impressum-card-body {
  padding: 24px;
  font-size: 0.92rem;
  color: var(--text);
  line-height: 1.8;
}

.impressum-card-body p { margin-bottom: 12px; }
.impressum-card-body p:last-child { margin-bottom: 0; }
.impressum-card-body h3 {
  font-family: 'Cinzel', serif;
  font-size: 0.85rem;
  color: var(--text-h);
  margin: 16px 0 8px;
}

/* ═══════════════════════════════════
   RESPONSIVE
═══════════════════════════════════ */
@media (max-width: 900px) {
  .about-grid { grid-template-columns: 1fr; gap: 40px; }
  .about-visual { order: -1; }
  .events-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .stat-item:nth-child(2) { border-right: none; }
  .kontakt-grid { grid-template-columns: 1fr; }
}

@media (max-width: 640px) {
  .nav-links { display: none; }
  .nav-burger { display: block; }
  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 68px; left: 0; right: 0;
    background: rgba(10,10,14,0.98);
    border-bottom: 1px solid var(--border);
    padding: 16px 24px;
    gap: 4px;
  }
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .about-features { grid-template-columns: 1fr; }
  .cta-box { padding: 40px 24px; }
  .hero-actions { flex-direction: column; align-items: center; }
}
