/* ════════════════════════════════════════════════
   CannaMonster — GLOBAL BASE CSS
   Einmal definiert. Gilt für ALLE Seiten.
   Nav + Footer + Basis-Reset + CSS-Vars
════════════════════════════════════════════════ */
@import url('https://fonts.googleapis.com/css2?family=Inter:ital,wght@0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,300&display=swap');

:root {
  --bg:    #080808;
  --white: #f0efea;
  --muted: rgba(240,239,234,0.4);
  --line:  rgba(240,239,234,0.07);
  --green: #4ade80;
}

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

body {
  font-family: 'Inter', system-ui, sans-serif;
  background: var(--bg);
  color: var(--white);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

a { color: var(--green); text-decoration: none; }
img { max-width: 100%; display: block; }

/* ── NAV ────────────────────────────────────── */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 200;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 48px;
  background: rgba(8,8,8,0.65);
  backdrop-filter: blur(20px) saturate(180%);
  border-bottom: 1px solid var(--line);
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--white);
  text-decoration: none;
}
.nav-logo img { width: 28px; height: 28px; object-fit: contain; }
.nav-logo b { color: #4ade80; font-weight: 900; }
.nav-links { display: flex; gap: 32px; }
.nav-links a {
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--muted);
  text-decoration: none;
  letter-spacing: 0.3px;
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--white); }
.nav-links a.active { color: var(--white); }

/* ── FOOTER ─────────────────────────────────── */
footer {
  border-top: 1px solid var(--line);
  padding: 28px 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.foot-brand {
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--muted);
}
.foot-links { display: flex; gap: 24px; }
.foot-links a {
  font-size: 0.73rem;
  color: var(--muted);
  text-decoration: none;
  transition: color 0.2s;
}
.foot-links a:hover { color: var(--white); }
.sig { opacity: 0.12; }

/* ── RESPONSIVE ─────────────────────────────── */
@media (max-width: 1024px) {
  .nav { padding: 0 24px; }
}
@media (max-width: 800px) {
  .nav-links { display: none; }
  footer { padding: 24px; flex-direction: column; gap: 16px; text-align: center; }
  .foot-links { justify-content: center; }
}
