/* ===========================
   EXKLUSIV.CSS – Pia Vinici
   Vollständig, keine global.css nötig
=========================== */

/* --- RESET --- */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  -webkit-font-smoothing: antialiased;
  -webkit-text-size-adjust: none;
  text-size-adjust: none;
  scroll-behavior: smooth;
}

img, svg { display: block; max-width: 100%; }
input, button, textarea, select { font: inherit; color: inherit; }
button { cursor: pointer; background: none; border: none; }

:focus-visible {
  outline: 2px solid #b8860b;
  outline-offset: 3px;
}

/* --- TOKENS --- */
:root {
  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body:    'Quicksand', sans-serif;
  --radius-sm:    0.375rem;
  --radius-md:    0.5rem;
  --radius-lg:    0.75rem;
  --radius-xl:    1rem;
  --radius-full:  9999px;
  --transition:   180ms cubic-bezier(0.16, 1, 0.3, 1);
  --gold:         #b8860b;
  --gold-light:   #ffd700;
  --gold-hover:   #9a6e09;
  --dark:         #111111;
  --soft:         #f7f3ef;
  --surface:      #ffffff;
  --text:         #2c2c2c;
  --text-muted:   #7a7166;
  --text-faint:   #b0a89e;
  --border:       rgba(60, 40, 20, 0.12);
  --shadow-sm:    0 1px 4px rgba(0,0,0,0.07);
  --shadow-md:    0 4px 16px rgba(0,0,0,0.10);
  --shadow-lg:    0 12px 40px rgba(0,0,0,0.14);
}

body {
  font-family: var(--font-body);
  line-height: 1.7;
  overflow-x: hidden;
  background-color: var(--soft);
  color: var(--text);
}

/* --- HEADER --- */
.header {
  position: fixed;
  inset-block-start: 0;
  inset-inline: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 12px clamp(1rem, 4vw, 2rem);
  background: rgba(8, 6, 4, 0.62);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}
.header-social { display: none; }
.header-spacer { display: none; }
.header-logo { display: flex; align-items: center; justify-content: center; }
.header-logo-img {
  height: 88px;
  width: auto;
  object-fit: contain;
  border: 2px solid rgba(255, 255, 255, 0.85);
  border-radius: 12px;
  padding: 4px;
  filter: drop-shadow(0 0 8px rgba(255,255,255,0.9))
          drop-shadow(0 0 2px #fff);
}
.hero-h1 {
  position: absolute; width: 1px; height: 1px;
  overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap;
}

/* --- BACK BUTTON --- */
.back-btn {
  position: fixed;
  top: 20px;
  left: 20px;
  z-index: 200;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-decoration: none;
  color: rgba(255,255,255,0.8);
  background: rgba(0,0,0,0.35);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: var(--radius-full);
  padding: 8px 18px;
  transition: all var(--transition);
}
.back-btn:hover {
  color: #fff;
  background: rgba(0,0,0,0.55);
}

/* --- HERO (identisch index.css) --- */
.exklusiv-page {
  position: relative;
  width: 100%;
  height: 100vh;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.ex-bg { position: absolute; inset: 0; z-index: 0; }
.ex-bg img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
  filter: blur(2px);
  transform: scale(1.04);
}
.ex-overlay {
  position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(
    to bottom,
    rgba(0,0,0,0.00) 0%,
    rgba(0,0,0,0.08) 55%,
    rgba(0,0,0,0.28) 100%
  );
}

/* --- INHALT --- */
.ex-content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  width: 100%;
  max-width: 520px;
  padding-inline: clamp(1rem, 4vw, 2rem);
}

/* LOGO */
.ex-logo { margin-bottom: 0; }
.ex-logo-img {
  height: clamp(160px, 28vw, 480px);
  width: auto;
  object-fit: contain;
  margin: 0 auto 20px;
  filter: drop-shadow(0 0 8px rgba(255,255,255,0.9))
          drop-shadow(0 0 2px #fff);
}

/* DIVIDER */
.ex-divider {
  width: 48px;
  height: 1px;
  background: rgba(255,255,255,0.55);
  margin: 0 auto 16px;
}

/* LABEL */
.ex-label {
  font-size: clamp(0.75rem, 0.7rem + 0.25vw, 0.875rem);
  font-weight: 600;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: #fff;
  opacity: 0.88;
  margin-bottom: 10px;
}

/* TITEL */
.ex-title {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 6vw, 4rem);
  font-weight: 400;
  color: #fff;
  line-height: 1.1;
  margin-bottom: 14px;
}

/* SUBTEXT */
.ex-sub {
  font-size: 0.9rem;
  line-height: 1.7;
  color: rgba(255,255,255,0.78);
  margin-bottom: 40px;
}

/* --- PLATTFORM KARTEN --- */
.ex-grid {
  display: flex;
  flex-direction: column;
  gap: 12px;
  width: 100%;
}

.ex-card {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-xl);
  padding: 20px 24px;
  text-decoration: none;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  transition: background var(--transition), border-color var(--transition),
              transform var(--transition), box-shadow var(--transition);
}
.ex-card:hover {
  background: rgba(255,255,255,0.12);
  border-color: rgba(255,215,0,0.3);
  transform: translateY(-2px) scale(1.01);
  box-shadow: 0 8px 32px rgba(0,0,0,0.35);
}
.ex-card:active {
  transform: translateY(0) scale(1);
}
.ex-card-icon {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  border-radius: 12px;
}
.ex-card-name {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 1.25rem;
  letter-spacing: 0.04em;
}
.ex-card-arrow {
  font-size: 1.3rem;
  margin-left: auto;
  transition: transform var(--transition);
}
.ex-card:hover .ex-card-arrow {
  transform: translateX(5px);
}

/* --- FOOTER NOTE --- */
.ex-footer-note {
  margin-top: 40px;
  font-size: 0.72rem;
  color: rgba(255,255,255,0.28);
  letter-spacing: 0.06em;
}
.ex-footer-note a {
  color: rgba(255,255,255,0.28);
  text-decoration: none;
}
.ex-footer-note a:hover { color: var(--gold-light); }

/* --- AGE GATE --- */
.age-overlay {
  position: fixed; inset: 0;
  background: rgba(0,0,0,0.75);
  display: none; align-items: center; justify-content: center;
  z-index: 9999; padding: 1.5rem;
}
.age-modal {
  max-width: 480px; width: 100%;
  background: #111; color: #f7f7f7;
  border-radius: 12px; padding: 2rem 1.75rem;
  box-shadow: 0 18px 50px rgba(0,0,0,0.65);
  text-align: left;
}
.age-modal h2 {
  font-family: var(--font-display);
  font-size: 1.6rem; margin-bottom: 0.75rem;
}
.age-modal p { font-size: 0.95rem; line-height: 1.6; }
.age-actions { display: flex; gap: 0.75rem; margin-top: 1.5rem; flex-wrap: wrap; }
.btn-age-confirm, .btn-age-deny {
  flex: 1 1 140px; padding: 0.7rem 1rem;
  border-radius: var(--radius-full); border: none; cursor: pointer;
  font-family: var(--font-body); font-size: 0.9rem;
  letter-spacing: 0.04em; text-transform: uppercase;
}
.btn-age-confirm { background: #c79d6a; color: #111; }
.btn-age-confirm:hover { background: #d3aa76; }
.btn-age-deny { background: transparent; color: #f7f7f7; border: 1px solid rgba(255,255,255,0.3); }
.btn-age-deny:hover { background: rgba(255,255,255,0.06); }
.age-note { margin-top: 1rem; font-size: 0.8rem; opacity: 0.8; }

/* --- COOKIE BANNER --- */
.cookie-banner {
  position: fixed; left: 0; right: 0; bottom: 0;
  z-index: 9998; padding: 0.75rem; display: none;
}
.cookie-inner {
  max-width: 960px; margin: 0 auto;
  background: rgba(10,10,10,0.96); color: #f5f5f5;
  border-radius: var(--radius-full); padding: 0.9rem 1.4rem;
  display: flex; align-items: center; gap: 1rem;
  box-shadow: 0 10px 30px rgba(0,0,0,0.65);
}
.cookie-text { font-size: 0.8rem; line-height: 1.5; flex: 1 1 auto; }
.cookie-text a { color: #ffd700; text-decoration: underline; }
.cookie-actions { display: flex; flex-shrink: 0; gap: 0.5rem; }
.btn-cookie-primary, .btn-cookie-secondary {
  padding: 0.45rem 0.9rem; border-radius: var(--radius-full);
  border: none; cursor: pointer; font-family: var(--font-body);
  font-size: 0.75rem; letter-spacing: 0.08em;
  text-transform: uppercase; white-space: nowrap;
}
.btn-cookie-primary { background: #c79d6a; color: #111; }
.btn-cookie-primary:hover { background: #d3aa76; }
.btn-cookie-secondary { background: transparent; color: #f5f5f5; border: 1px solid rgba(255,255,255,0.35); }
.btn-cookie-secondary:hover { background: rgba(255,255,255,0.08); }
.cookie-btn {
  position: fixed; bottom: 20px; left: 20px; z-index: 999;
  width: 44px; height: 44px; display: flex; align-items: center; justify-content: center;
  background: #fff; border: 1px solid rgba(0,0,0,0.1);
  border-radius: var(--radius-full);
  box-shadow: 0 4px 16px rgba(0,0,0,0.10);
  color: #7a7166; cursor: pointer;
}
.cookie-btn:hover { color: var(--gold); }

/* --- MOBILE --- */
@media (max-width: 640px) {
  .cookie-inner { flex-direction: column; align-items: flex-start; border-radius: 18px; }
  .cookie-actions { width: 100%; justify-content: flex-end; }
}
@media (max-width: 480px) {
  .exklusiv-page { padding-top: 80px; }
  .ex-card { padding: 14px 16px; gap: 12px; }
  .ex-card-name { font-size: 0.9rem; }
}