/* CannaMonster Hauptseite — Page-specific CSS */

/* Anchor offset for fixed nav */
.feature { scroll-margin-top: 60px; }

/* ── HERO ──────────────────────────────────── */
.hero {
  position: relative;
  height: 100svh; min-height: 640px;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center; overflow: hidden;
}
.hero-vid {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; object-position: center 25%;
  filter: brightness(0.45) saturate(0.8); z-index: 0;
}
.hero::after {
  content: ''; position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(to bottom,rgba(8,8,8,0.2) 0%,transparent 30%,transparent 60%,rgba(8,8,8,1) 100%);
}
.hero-content { position: relative; z-index: 2; text-align: center; padding: 0 24px; }
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 0.65rem; font-weight: 700; letter-spacing: 3px;
  text-transform: uppercase; color: #4ade80; margin-bottom: 28px;
}
.hero-eyebrow::before, .hero-eyebrow::after {
  content: ''; display: block; width: 32px; height: 1px;
  background: #4ade80; opacity: 0.5;
}
.hero-h1 {
  font-size: clamp(3.8rem,9vw,8rem); font-weight: 900;
  letter-spacing: -0.04em; line-height: 0.9; margin-bottom: 24px;
}
.hero-h1 span {
  display: block;
  background: linear-gradient(120deg,#4ade80 0%,#86efac 50%,#22c55e 100%);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.hero-sub {
  font-size: 0.95rem; font-weight: 300; font-style: italic;
  color: var(--muted); letter-spacing: 0.3px;
  max-width: 360px; margin: 0 auto 44px; line-height: 1.8;
}
.hero-scroll {
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  font-size: 0.62rem; letter-spacing: 2px; text-transform: uppercase; color: var(--muted);
}
.hero-scroll::after {
  content: ''; display: block; width: 1px; height: 40px;
  background: linear-gradient(to bottom,var(--muted),transparent);
}
.hero-tags {
  display: flex; flex-wrap: wrap; justify-content: center;
  gap: 8px; margin-bottom: 40px;
  max-width: 560px; margin-left: auto; margin-right: auto;
}
.hero-tag {
  font-size: 0.65rem; font-weight: 600; letter-spacing: 0.3px;
  color: rgba(240,239,234,0.55); background: rgba(240,239,234,0.06);
  border: 1px solid rgba(240,239,234,0.1); padding: 5px 12px;
  border-radius: 20px; text-decoration: none;
  transition: color 0.2s, background 0.2s, border-color 0.2s; white-space: nowrap;
}
.hero-tag:hover { color: #4ade80; background: rgba(74,222,128,0.08); border-color: rgba(74,222,128,0.25); }

/* ── FEATURE SECTIONS ───────────────────────── */
.feature { display: grid; grid-template-columns: 1fr 1fr; min-height: 620px; }
.feature.rev { direction: rtl; }
.feature.rev > * { direction: ltr; }
.feat-img { position: relative; overflow: hidden; }
.feat-img-inner {
  position: absolute; inset: 0; background-size: cover; background-position: center;
  transition: transform 0.8s cubic-bezier(0.25,0.46,0.45,0.94);
}
.feature:hover .feat-img-inner { transform: scale(1.04); }
.feat-vid { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: center; }
.feat-img-overlay { position: absolute; inset: 0; z-index: 1; }
.feat-text { display: flex; flex-direction: column; justify-content: center; padding: 80px 72px; position: relative; }
.feat-label {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 0.62rem; font-weight: 700; letter-spacing: 2.5px;
  text-transform: uppercase; margin-bottom: 20px;
}
.feat-label::before { content: ''; display: block; width: 20px; height: 2px; border-radius: 1px; }
.feat-h2 { font-size: clamp(2rem,3.5vw,3rem); font-weight: 900; letter-spacing: -0.03em; line-height: 1.0; margin-bottom: 20px; color: var(--white); }
.feat-p { font-size: 0.9rem; font-weight: 300; color: var(--muted); line-height: 1.85; max-width: 380px; margin-bottom: 36px; }
.feat-stats { display: flex; gap: 32px; margin-bottom: 40px; }
.feat-stat-n { font-size: 1.4rem; font-weight: 800; letter-spacing: -0.03em; color: var(--white); }
.feat-stat-l { font-size: 0.6rem; font-weight: 600; letter-spacing: 1.5px; text-transform: uppercase; color: var(--muted); margin-top: 2px; }
.feat-cta {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 0.78rem; font-weight: 700; letter-spacing: 0.2px; text-decoration: none;
  padding: 13px 28px; border-radius: 3px; align-self: flex-start;
  transition: opacity 0.2s, transform 0.2s;
}
.feat-cta:hover { opacity: 0.85; transform: translateX(3px); }
.feat-cta-arrow { font-size: 1rem; transition: transform 0.2s; }
.feat-cta:hover .feat-cta-arrow { transform: translateX(4px); }

/* Section color themes */
.s-cannazen .feat-text { background: #06100a; }
.s-cannazen .feat-label { color: #4ade80; }
.s-cannazen .feat-label::before { background: #4ade80; }
.s-cannazen .feat-stat-n { color: #4ade80; }
.s-cannazen .feat-cta { background: #16a34a; color: #fff; }
.s-cannazen .feat-img-overlay { background: linear-gradient(to right,transparent 60%,#06100a 100%); }

.s-doku .feat-text { background: #0e0808; }
.s-doku .feat-label { color: #f87171; }
.s-doku .feat-label::before { background: #f87171; }
.s-doku .feat-stat-n { color: #fca5a5; }
.s-doku .feat-cta { background: transparent; color: #f87171; border: 1px solid #f8717140; }
.s-doku .feat-img-overlay { background: linear-gradient(to left,transparent 60%,#0e0808 100%); }
.s-doku .feat-channels { display: flex; flex-wrap: wrap; gap: 6px; margin-bottom: 36px; }
.feat-channel-tag { font-size: 0.65rem; font-weight: 600; letter-spacing: 0.5px; color: rgba(248,113,113,0.7); background: rgba(248,113,113,0.07); border: 1px solid rgba(248,113,113,0.12); padding: 4px 10px; border-radius: 2px; }

.s-messe .feat-text { background: #0f0b04; }
.s-messe .feat-label { color: #fbbf24; }
.s-messe .feat-label::before { background: #fbbf24; }
.s-messe .feat-stat-n { color: #fcd34d; }
.s-messe .feat-cta { background: #d97706; color: #fff; }
.s-messe .feat-img-overlay { background: linear-gradient(to right,transparent 60%,#0f0b04 100%); }

.s-csc .feat-text { background: #0a0810; }
.s-csc .feat-label { color: #c4b5fd; }
.s-csc .feat-label::before { background: #c4b5fd; }
.s-csc .feat-stat-n { color: #c4b5fd; }
.s-csc .feat-cta { background: transparent; color: #c4b5fd; border: 1px solid rgba(196,181,253,0.3); }
.s-csc .feat-img-overlay { background: linear-gradient(to left,transparent 60%,#0a0810 100%); }

.s-koch .feat-text { background: #0f0902; }
.s-koch .feat-label { color: #fb923c; }
.s-koch .feat-label::before { background: #fb923c; }
.s-koch .feat-stat-n { color: #fdba74; }
.s-koch .feat-cta { background: #ea580c; color: #fff; }
.s-koch .feat-img-overlay { background: linear-gradient(to right,transparent 60%,#0f0902 100%); }

.s-cannah .feat-text { background: #030d10; }
.s-cannah .feat-label { color: #22d3ee; }
.s-cannah .feat-label::before { background: #22d3ee; }
.s-cannah .feat-stat-n { color: #67e8f9; }
.s-cannah .feat-cta { background: #0891b2; color: #fff; }
.s-cannah .feat-img-overlay { background: linear-gradient(to left,transparent 60%,#030d10 100%); }

.s-vape .feat-text { background: #040d08; }
.s-vape .feat-label { color: #34d399; }
.s-vape .feat-label::before { background: #34d399; }
.s-vape .feat-stat-n { color: #6ee7b7; }
.s-vape .feat-cta { background: #059669; color: #fff; }
.s-vape .feat-img-overlay { background: linear-gradient(to left,transparent 50%,#040d08 100%); }

.s-vergleich .feat-text { background: #030a10; }
.s-vergleich .feat-label { color: #60a5fa; }
.s-vergleich .feat-label::before { background: #60a5fa; }
.s-vergleich .feat-stat-n { color: #93c5fd; }
.s-vergleich .feat-cta { background: #1d4ed8; color: #fff; }
.s-vergleich .feat-img-overlay { background: linear-gradient(to left,transparent 60%,#030a10 100%); }

.s-preis .feat-text { background: #030f0e; }
.s-preis .feat-label { color: #2dd4bf; }
.s-preis .feat-label::before { background: #2dd4bf; }
.s-preis .feat-stat-n { color: #5eead4; }
.s-preis .feat-cta { background: #0f766e; color: #fff; }
.s-preis .feat-img-overlay { background: linear-gradient(to right,transparent 60%,#030f0e 100%); }

.s-spiel .feat-text { background: #0c040f; }
.s-spiel .feat-label { color: #e879f9; }
.s-spiel .feat-label::before { background: #e879f9; }
.s-spiel .feat-stat-n { color: #f0abfc; }
.s-spiel .feat-cta { background: transparent; color: #e879f9; border: 1px solid rgba(232,121,249,0.3); }
.s-spiel .feat-img-overlay { background: linear-gradient(to right,transparent 60%,#0c040f 100%); }

.s-check .feat-text { background: #05030f; }
.s-check .feat-label { color: #818cf8; }
.s-check .feat-label::before { background: #818cf8; }
.s-check .feat-stat-n { color: #a5b4fc; }
.s-check .feat-cta { background: #4338ca; color: #fff; }
.s-check .feat-img-overlay { background: linear-gradient(to right,transparent 60%,#05030f 100%); }

.s-news .feat-text { background: #040407; }
.s-news .feat-label { color: #cbd5e1; }
.s-news .feat-label::before { background: #cbd5e1; }
.s-news .feat-stat-n { color: #e2e8f0; }
.s-news .feat-cta { background: transparent; color: #cbd5e1; border: 1px solid rgba(203,213,225,0.3); }
.s-news .feat-img-overlay { background: linear-gradient(to left,transparent 60%,#040407 100%); }

.s-rabatt .feat-text { background: #060f02; }
.s-rabatt .feat-label { color: #bef264; }
.s-rabatt .feat-label::before { background: #bef264; }
.s-rabatt .feat-stat-n { color: #d9f99d; }
.s-rabatt .feat-cta { background: #65a30d; color: #fff; }
.s-rabatt .feat-img-overlay { background: linear-gradient(to right,transparent 60%,#060f02 100%); }

.s-comedy .feat-text { background: #0f0308; }
.s-comedy .feat-label { color: #fb7185; }
.s-comedy .feat-label::before { background: #fb7185; }
.s-comedy .feat-stat-n { color: #fda4af; }
.s-comedy .feat-cta { background: #be185d; color: #fff; }
.s-comedy .feat-img-overlay { background: linear-gradient(to left,transparent 60%,#0f0308 100%); }

/* ── DIVIDER ─────────────────────────────────── */
.divider { height: 1px; background: var(--line); margin: 0; }

/* ── SPOTLIGHT ───────────────────────────────── */
.spotlight { display: flex; align-items: center; gap: 32px; padding: 28px 48px; background: #050e08; border-top: 1px solid rgba(74,222,128,0.12); border-bottom: 1px solid rgba(74,222,128,0.12); text-decoration: none; color: var(--white); transition: background 0.2s; }
.spotlight:hover { background: #071509; }
.spotlight-img { width: 96px; height: 72px; object-fit: cover; border-radius: 4px; flex-shrink: 0; }
.spotlight-badge { font-size: 0.58rem; font-weight: 800; letter-spacing: 2px; text-transform: uppercase; color: #4ade80; background: rgba(74,222,128,0.1); border: 1px solid rgba(74,222,128,0.25); padding: 3px 10px; border-radius: 2px; margin-bottom: 8px; display: inline-block; }
.spotlight-title { font-size: 1rem; font-weight: 800; letter-spacing: -0.02em; margin-bottom: 4px; }
.spotlight-desc { font-size: 0.78rem; color: var(--muted); font-weight: 300; }
.spotlight-arrow { margin-left: auto; font-size: 1.2rem; color: #4ade80; flex-shrink: 0; }

/* ── CREATOR PREVIEW ─────────────────────────── */
.creator-section { padding: 80px 48px; background: #050e08; border-top: 1px solid rgba(74,222,128,0.1); }
.creator-section-inner { max-width: 1200px; margin: 0 auto; }
.creator-section-head { display: flex; align-items: flex-end; justify-content: space-between; margin-bottom: 40px; flex-wrap: wrap; gap: 16px; }
.creator-section-head h2 { font-size: clamp(1.8rem,4vw,2.8rem); font-weight: 800; letter-spacing: -0.03em; line-height: 1.1; }
.creator-section-head h2 span { color: #4ade80; }
.creator-section-head p { color: rgba(240,239,234,0.5); font-size: 0.9rem; margin-top: 8px; max-width: 400px; }
.creator-all-link { display: inline-flex; align-items: center; gap: 8px; padding: 10px 20px; border: 1px solid rgba(74,222,128,0.3); border-radius: 6px; color: #4ade80; font-size: 0.85rem; font-weight: 600; text-decoration: none; transition: all 0.2s; white-space: nowrap; }
.creator-all-link:hover { background: rgba(74,222,128,0.1); border-color: #4ade80; }
.creator-grid-preview { display: grid; grid-template-columns: repeat(auto-fill,minmax(260px,1fr)); gap: 16px; }
.creator-card-mini { background: rgba(240,239,234,0.03); border: 1px solid rgba(240,239,234,0.07); border-radius: 12px; padding: 20px; text-decoration: none; color: var(--white); display: flex; flex-direction: column; gap: 12px; transition: all 0.2s; }
.creator-card-mini:hover { border-color: rgba(74,222,128,0.3); background: rgba(74,222,128,0.04); }
.ccm-header { display: flex; align-items: center; gap: 12px; }
.ccm-avatar { width: 44px; height: 44px; border-radius: 50%; background: #1a2a1a; display: flex; align-items: center; justify-content: center; font-weight: 800; font-size: 16px; color: #4ade80; flex-shrink: 0; }
.ccm-name { font-weight: 700; font-size: 0.95rem; }
.ccm-region { font-size: 0.65rem; font-weight: 800; letter-spacing: .08em; padding: 2px 6px; border-radius: 3px; text-transform: uppercase; }
.ccm-region-de { background: rgba(74,222,128,.15); color: #4ade80; }
.ccm-region-us { background: rgba(96,165,250,.15); color: #60a5fa; }
.ccm-region-uk { background: rgba(251,146,60,.15); color: #fb923c; }
.ccm-bio { font-size: 0.78rem; color: rgba(240,239,234,0.5); line-height: 1.5; }
.ccm-stat { font-size: 0.75rem; color: rgba(240,239,234,0.35); }
.ccm-stat strong { color: #4ade80; font-size: 1rem; font-weight: 800; margin-right: 4px; }

/* ── RESPONSIVE ─────────────────────────────── */
@media (max-width: 1024px) { .feat-text { padding: 60px 48px; } }
@media (max-width: 800px) {
  .feature, .feature.rev { grid-template-columns: 1fr; direction: ltr; min-height: auto; }
  .feat-img { height: 320px; }
  .feat-img-overlay { display: none; }
  .feat-text { padding: 48px 32px; }
  .mini-grid { grid-template-columns: 1fr; }
  .mini-wrap { padding: 48px 24px 60px; }
  .spotlight { padding: 20px 24px; }
  .spotlight-img { width: 72px; height: 54px; }
  .creator-section { padding: 60px 24px; }
  .creator-grid-preview { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 540px) { .feat-text { padding: 40px 24px; } .feat-stats { gap: 20px; } }
@media (max-width: 480px) { .creator-grid-preview { grid-template-columns: 1fr; } }
