/* ===========================
   INDEX.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;
  --teal:         #2a9d8f;
  --dark:         #111111;
  --soft:         #f7f3ef;
  --surface:      #ffffff;
  --text:         #2c2c2c;
  --text-muted:   #7a7166;
  --text-faint:   #b0a89e;
  --border:       rgba(60, 40, 20, 0.12);
  --divider:      #ddd8d0;
  --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;
}

/* --- HERO --- */
.hero {
  position: relative;
  width: 100%;
  height: 100vh;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.hero-bg { position: absolute; inset: 0; z-index: 0; }
.hero-bg img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
  filter: blur(2px);        /* war: blur(4px) */
  transform: scale(1.04);
}
.hero-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%,    /* war: 0.18 */
    rgba(0,0,0,0.28) 100%    /* war: 0.45 */
  );
}
.hero-text {
  position: relative; z-index: 2;
  text-align: center;
  margin-bottom: 80px;
}
.hero-logo {
  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);
}
.hero-divider {
  width: 48px; height: 1px;
  background: rgba(255,255,255,0.55);
  margin: 0 auto 16px;
}
.hero-sub {
  color: #fff;
  font-family: var(--font-body);
  font-size: clamp(0.75rem, 0.7rem + 0.25vw, 0.875rem);
  font-weight: 600;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  opacity: 0.88;
}
.hero-18-hint {
  margin-top: 10px;
  font-size: 0.75rem;
  color: rgba(255,255,255,0.78);
  max-width: 46ch;
  margin-inline: auto;
}

/* --- HERO CTA --- */
.hero-cta-wrap {
  position: absolute;
  bottom: clamp(40px, 8vh, 72px);
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  text-align: center;
  width: 100%;
  pointer-events: none;
}
.hero-cta-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  pointer-events: all;
}

/* EXKLUSIV BUTTON */
.btn-exklusiv {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  background: linear-gradient(135deg, #b8860b 0%, #ffd700 50%, #b8860b 100%);
  background-size: 200% 100%;
  color: #111;
  font-family: var(--font-body); font-weight: 700;
  font-size: clamp(0.75rem, 0.7rem + 0.25vw, 0.875rem);
  letter-spacing: 0.22em; text-transform: uppercase; text-decoration: none;
  padding: 16px 48px; border-radius: var(--radius-full); min-width: 180px;
  box-shadow: 0 6px 32px rgba(184,134,11,0.5), 0 2px 8px rgba(0,0,0,0.28);
  animation: pulse-gold 2.4s ease-in-out infinite;
}
.btn-exklusiv:hover {
  background-position: 100% 0;
  box-shadow: 0 10px 44px rgba(255,215,0,0.65), 0 4px 12px rgba(0,0,0,0.3);
  animation: none;
}
@keyframes pulse-gold {
  0%, 100% { box-shadow: 0 6px 32px rgba(184,134,11,0.5), 0 2px 8px rgba(0,0,0,0.28); transform: scale(1); }
  50%       { box-shadow: 0 10px 44px rgba(255,215,0,0.7), 0 4px 12px rgba(0,0,0,0.3); transform: scale(1.04); }
}

/* UMFRAGE BUTTON */
.btn-umfrage {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  font-family: var(--font-body); font-weight: 700;
  font-size: clamp(0.75rem, 0.7rem + 0.25vw, 0.875rem);
  letter-spacing: 0.22em; text-transform: uppercase; text-decoration: none;
  padding: 16px 36px; border-radius: var(--radius-full); min-width: 160px;
  border: 1px solid rgba(255,255,255,0.5); color: #fff;
  background: rgba(255,255,255,0.08);
  backdrop-filter: blur(6px); -webkit-backdrop-filter: blur(6px);
  box-shadow: 0 4px 16px rgba(0,0,0,0.25);
}
.btn-umfrage:hover { background: rgba(255,255,255,0.18); border-color: #fff; }

/* SHOP BUTTON */
.btn-shop {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  font-family: var(--font-body); font-weight: 700;
  font-size: clamp(0.75rem, 0.7rem + 0.25vw, 0.875rem);
  letter-spacing: 0.22em; text-transform: uppercase; text-decoration: none;
  padding: 16px 36px; border-radius: var(--radius-full); min-width: 160px;
  border: 1px solid rgba(255,255,255,0.5); color: #fff;
  background: rgba(255,255,255,0.08);
  backdrop-filter: blur(6px); -webkit-backdrop-filter: blur(6px);
  box-shadow: 0 4px 16px rgba(0,0,0,0.25);
}
.btn-shop:hover { background: rgba(255,255,255,0.18); border-color: #fff; }

/* WISHLIST BUTTON */
.btn-wishlist {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  font-family: var(--font-body); font-weight: 700;
  font-size: clamp(0.75rem, 0.7rem + 0.25vw, 0.875rem);
  letter-spacing: 0.22em; text-transform: uppercase; text-decoration: none;
  padding: 16px 36px; border-radius: var(--radius-full); min-width: 160px;
  border: 1px solid rgba(184,134,11,0.6); color: var(--gold-light);
  background: rgba(184,134,11,0.10);
  backdrop-filter: blur(6px); -webkit-backdrop-filter: blur(6px);
  box-shadow: 0 4px 16px rgba(0,0,0,0.25);
}
.btn-wishlist:hover { background: rgba(184,134,11,0.22); border-color: var(--gold-light); }

/* --- INTRO SECTION --- */
.intro-section {
  padding-block: clamp(4rem, 8vw, 7rem);
  text-align: center;
  background: var(--soft);
}
.container {
  max-width: 780px;
  margin-inline: auto;
  padding-inline: clamp(1rem, 4vw, 2rem);
}
.section-label {
  display: block;
  font-size: clamp(0.75rem, 0.7rem + 0.25vw, 0.875rem);
  font-weight: 600; letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 10px;
}
.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 1.2rem + 2.5vw, 3.2rem);
  font-weight: 400; color: var(--dark);
  line-height: 1.15; margin-bottom: 18px;
}
.section-body {
  font-size: clamp(1rem, 0.95rem + 0.25vw, 1.125rem);
  line-height: 1.8; color: var(--text-muted);
  max-width: 58ch; margin-inline: auto;
}

/* --- CONTACT SECTION --- */
.contact-section {
  padding-block: clamp(3.5rem, 7vw, 6rem);
  background: var(--surface);
}
.contact-form { display: flex; flex-direction: column; gap: 20px; margin-top: 32px; }
.form-group { display: flex; flex-direction: column; gap: 7px; }
.form-group label {
  font-size: clamp(0.75rem, 0.7rem + 0.25vw, 0.875rem);
  font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--text-muted);
}
.form-group input,
.form-group textarea {
  background: var(--soft); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 12px 16px;
  font-size: clamp(1rem, 0.95rem + 0.25vw, 1.125rem);
  color: var(--text); outline: none;
}
.form-group input:focus, .form-group textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(184,134,11,0.14);
}
.form-group textarea { min-height: 140px; resize: vertical; line-height: 1.6; }
.check-row { display: flex; gap: 12px; align-items: flex-start; }
.check-row input[type="checkbox"] {
  flex-shrink: 0; margin-top: 3px;
  width: 16px; height: 16px; accent-color: var(--gold); cursor: pointer;
}
.check-row label {
  font-size: clamp(0.75rem, 0.7rem + 0.25vw, 0.875rem);
  color: var(--text-muted); line-height: 1.6; cursor: pointer;
}
.form-note { font-size: clamp(0.75rem, 0.7rem + 0.25vw, 0.875rem); color: var(--text-faint); }
.btn-send {
  align-self: flex-start;
  background: var(--dark); color: #fff;
  font-family: var(--font-body); font-weight: 700;
  font-size: clamp(0.75rem, 0.7rem + 0.25vw, 0.875rem);
  letter-spacing: 0.16em; text-transform: uppercase;
  padding: 14px 44px; border-radius: var(--radius-full);
  border: none; box-shadow: var(--shadow-sm); cursor: pointer;
}
.btn-send:hover:not(:disabled) {
  background: var(--gold); color: #111;
  box-shadow: var(--shadow-md); transform: translateY(-2px);
}
.btn-send:disabled { opacity: 0.8; cursor: default; }

/* --- FOOTER --- */
.site-footer {
  background: #0c0a08; color: rgba(255,255,255,0.38);
  text-align: center; padding: 36px clamp(1rem, 4vw, 2rem);
  font-size: clamp(0.75rem, 0.7rem + 0.25vw, 0.875rem);
}
.footer-links { display: flex; justify-content: center; gap: 28px; margin-top: 10px; }
.footer-links a {
  color: rgba(255,255,255,0.38); text-decoration: none;
  font-size: clamp(0.75rem, 0.7rem + 0.25vw, 0.875rem); letter-spacing: 0.06em;
}
.footer-links a:hover { color: var(--gold-light); }

/* --- COOKIE BTN --- */
.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: var(--shadow-md);
  color: var(--text-muted); cursor: pointer;
}
.cookie-btn:hover { color: var(--gold); box-shadow: var(--shadow-lg); }

/* --- 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); }

/* --- 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) {
  .hero-cta-buttons { flex-direction: column; align-items: center; }
  .btn-exklusiv, .btn-umfrage, .btn-shop, .btn-wishlist { padding: 14px 32px; min-width: 200px; }
  .btn-send { align-self: stretch; text-align: center; }
  .hero-18-hint { padding-inline: 1rem; }
}