/* ============================================================
   Seitenspezifische Styles für die Startseite (index.html)
   Globale Basis + Header/Footer liegen in styles.css.
   ============================================================ */

/* ---------- Stage with ambient effects ---------- */
.stage {
  position: relative;
  flex: 1;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}
.stage::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 18% 30%, rgba(242,140,40,0.20), transparent 45%),
    radial-gradient(circle at 82% 70%, rgba(242,140,40,0.14), transparent 50%);
  pointer-events: none;
}
.stage::after {
  content: '';
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
  background-size: 56px 56px;
  pointer-events: none;
  mask-image: linear-gradient(to bottom, black 25%, transparent 95%);
}

/* ---------- Decorative cards flanking the centered content ---------- */
.card-decor {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
  z-index: 1;
}
.float-card {
  position: absolute;
  width: 220px; height: 310px;
  border-radius: 14px;
  background: linear-gradient(135deg, #2a2830 0%, #1a181e 100%);
  border: 1px solid rgba(255,255,255,0.06);
  box-shadow: 0 30px 60px -20px rgba(0,0,0,0.6);
  overflow: hidden;
  display: flex; flex-direction: column;
  padding: 18px;
  opacity: 0.5;
}
.float-card .card-set {
  font-size: 10px; letter-spacing: 0.15em; font-weight: 600;
  color: var(--orange); text-transform: uppercase;
}
.float-card .card-name {
  margin-top: 8px; font-weight: 800; font-size: 20px; line-height: 1.15;
  color: rgba(255,255,255,0.85);
}
.float-card .card-art {
  flex: 1;
  margin: 16px 0;
  border-radius: 8px;
  background:
    radial-gradient(circle at 30% 30%, rgba(242,140,40,0.4), transparent 55%),
    radial-gradient(circle at 70% 70%, rgba(242,140,40,0.2), transparent 50%),
    #0e0d11;
  position: relative;
  overflow: hidden;
}
.float-card .card-art::after {
  content: '';
  position: absolute; inset: 0;
  background-image:
    repeating-linear-gradient(45deg, rgba(255,255,255,0.04) 0 2px, transparent 2px 8px);
}
.float-card .card-foot {
  display: flex; justify-content: space-between; align-items: center;
  font-size: 11px; color: rgba(255,255,255,0.5);
}
.float-card .badge {
  color: var(--orange); font-weight: 700; font-size: 10px;
  letter-spacing: 0.1em; text-transform: uppercase;
}

/* positions — flanking the center, not behind it */
.float-card.c1 { top: 8%;  left: -40px;  transform: rotate(-14deg); animation: float 7s   ease-in-out infinite; }
.float-card.c2 { top: 12%; right: -30px; transform: rotate(11deg);  animation: float 8s   ease-in-out infinite 0.5s; }
.float-card.c3 { bottom: 6%; left: 6%;   transform: rotate(-6deg);  animation: float 9s   ease-in-out infinite 1s; }
.float-card.c4 { bottom: 10%; right: 8%; transform: rotate(8deg);   animation: float 7.5s ease-in-out infinite 1.3s; }

@keyframes float {
  0%, 100% { transform: translateY(0) rotate(var(--r, 0deg)); }
  50%      { transform: translateY(-14px) rotate(var(--r, 0deg)); }
}
.float-card.c1 { --r: -14deg; }
.float-card.c2 { --r: 11deg; }
.float-card.c3 { --r: -6deg; }
.float-card.c4 { --r: 8deg; }

/* Hide bottom cards on smaller screens, push side cards further out */
@media (max-width: 1100px) {
  .float-card.c3, .float-card.c4 { display: none; }
  .float-card.c1 { left: -110px; opacity: 0.32; }
  .float-card.c2 { right: -100px; opacity: 0.32; }
}
@media (max-width: 700px) {
  .float-card { display: none; }
}

/* ---------- Main centered content ---------- */
main.hero {
  position: relative; z-index: 2;
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 80px 0 100px;
}
@media (max-width: 700px) {
  main.hero { padding: 50px 0 70px; }
}

.hero-content {
  text-align: center;
  max-width: 780px;
  margin: 0 auto;
}

.eyebrow {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--orange);
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 30px;
  justify-content: center;
}
.eyebrow::before,
.eyebrow::after {
  content: '';
  width: 26px; height: 1px;
  background: var(--orange);
}
@media (max-width: 600px) {
  .eyebrow { font-size: 10px; letter-spacing: 0.18em; gap: 8px; margin-bottom: 22px; }
  .eyebrow::before, .eyebrow::after { width: 18px; }
}

h1 {
  font-weight: 900;
  font-size: clamp(40px, 7vw, 88px);
  line-height: 0.98;
  letter-spacing: -0.025em;
  margin-bottom: 30px;
}
h1 .accent {
  color: var(--orange);
  font-style: italic;
  font-weight: 800;
}
@media (max-width: 600px) {
  h1 { margin-bottom: 22px; }
}

p.lead {
  font-size: 17px;
  line-height: 1.65;
  color: rgba(255,255,255,0.75);
  max-width: 620px;
  margin: 0 auto 44px;
}
@media (max-width: 600px) {
  p.lead { font-size: 15px; margin-bottom: 36px; }
}

/* ---------- Preview list — centered chips ---------- */
.preview-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin: 0 auto 50px;
  max-width: 720px;
}
.preview-item {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  color: rgba(255,255,255,0.8);
  padding: 10px 18px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 30px;
  transition: all .25s ease;
}
.preview-item:hover {
  border-color: rgba(242,140,40,0.5);
  background: rgba(242,140,40,0.06);
  color: var(--white);
}
.preview-item .marker {
  width: 6px; height: 6px;
  background: var(--orange);
  transform: rotate(45deg);
  flex-shrink: 0;
}
@media (max-width: 600px) {
  .preview-list { gap: 8px; margin-bottom: 40px; }
  .preview-item { font-size: 12px; padding: 8px 14px; }
}

/* ---------- Notify form ---------- */
.notify {
  max-width: 480px;
  margin: 0 auto;
}
.notify-label {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.05em;
  color: rgba(255,255,255,0.6);
  margin-bottom: 14px;
  text-align: center;
}
.notify-form {
  display: flex;
  gap: 0;
  border: 1px solid rgba(255,255,255,0.15);
  background: rgba(255,255,255,0.04);
  border-radius: 2px;
  overflow: hidden;
  transition: border-color .2s ease;
}
.notify-form:focus-within {
  border-color: var(--orange);
}
.notify-form input {
  flex: 1;
  min-width: 0;
  padding: 17px 20px;
  background: transparent;
  border: none;
  outline: none;
  color: var(--white);
  font-family: inherit;
  font-size: 14px;
  font-weight: 500;
}
.notify-form input::placeholder { color: rgba(255,255,255,0.4); }
.notify-form button {
  padding: 0 24px;
  background: var(--orange);
  border: none;
  cursor: pointer;
  font-family: inherit;
  font-weight: 700;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--black);
  transition: background .2s ease;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  white-space: nowrap;
}
.notify-form button:hover { background: var(--white); }
.notify-form button .arrow { transition: transform .2s ease; }
.notify-form button:hover .arrow { transform: translateX(3px); }
.notify-hint {
  font-size: 12px;
  color: rgba(255,255,255,0.4);
  margin-top: 14px;
  text-align: center;
  line-height: 1.5;
}
.notify-success {
  display: none;
  padding: 17px 20px;
  background: rgba(242,140,40,0.1);
  border: 1px solid rgba(242,140,40,0.4);
  border-radius: 2px;
  color: var(--orange);
  font-weight: 600;
  font-size: 14px;
  text-align: center;
}
.notify-success.show { display: block; }
.notify-form.hidden { display: none; }

/* Stack form vertically on phones */
@media (max-width: 500px) {
  .notify-form { flex-direction: column; }
  .notify-form input { padding: 15px 18px; text-align: center; }
  .notify-form button {
    padding: 15px 24px;
    border-top: 1px solid rgba(0,0,0,0.1);
    justify-content: center;
  }
}

/* ---------- Marquee (same as main site) ---------- */
.marquee {
  background: var(--orange);
  color: var(--black);
  padding: 16px 0;
  overflow: hidden;
  border-top: 1px solid var(--black);
  border-bottom: 1px solid var(--black);
  position: relative; z-index: 3;
}
.marquee-track {
  display: flex; gap: 48px;
  white-space: nowrap;
  animation: scroll 40s linear infinite;
  font-weight: 800; font-size: 14px;
  letter-spacing: 0.08em; text-transform: uppercase;
}
.marquee-track span { display: inline-flex; align-items: center; gap: 48px; }
.marquee-track .dot { width: 6px; height: 6px; background: var(--black); border-radius: 50%; }
@keyframes scroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
@media (max-width: 600px) {
  .marquee { padding: 13px 0; }
  .marquee-track { font-size: 12px; gap: 36px; }
  .marquee-track span { gap: 36px; }
}

/* ---------- Entry animation ---------- */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  animation: revealIn .8s ease forwards;
}
.reveal.d1 { animation-delay: 0.1s; }
.reveal.d2 { animation-delay: 0.25s; }
.reveal.d3 { animation-delay: 0.4s; }
.reveal.d4 { animation-delay: 0.55s; }
.reveal.d5 { animation-delay: 0.7s; }
@keyframes revealIn {
  to { opacity: 1; transform: translateY(0); }
}
