/* === TALOS LICHTSYSTEM: Magische Effekte für alle Seiten === */

/* ===== TALOS LICHTSTIL GLOBAL ===== */

/* Sanftes Leuchten der Überschriften */
h1, h2, h3 {
  color: #f8f9ff;
  text-shadow: 0 0 10px rgba(255, 230, 150, 0.6),
               0 0 20px rgba(0, 220, 255, 0.3);
  letter-spacing: 0.03em;
}

/* Leuchtende Container (gold/türkis Rahmen) */
.glow-box {
  border: 1px solid rgba(255, 215, 140, 0.5);
  background: rgba(0, 30, 40, 0.5);
  border-radius: 20px;
  box-shadow: 0 0 15px rgba(0, 255, 255, 0.2),
              0 0 30px rgba(255, 200, 100, 0.1) inset;
  padding: 2rem;
  transition: all 0.4s ease;
}
.glow-box:hover {
  box-shadow: 0 0 25px rgba(255, 255, 180, 0.5),
              0 0 40px rgba(0, 255, 255, 0.4) inset;
  transform: translateY(-3px);
}

/* Schwebende Karten / Buttons */
.card-light {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 16px;
  padding: 1.5rem;
  box-shadow: 0 0 10px rgba(255, 240, 150, 0.3);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.card-light:hover {
  transform: translateY(-8px);
  box-shadow: 0 0 25px rgba(255, 255, 200, 0.6);
}

/* Gold-Türkiser Button */
.btn-lightfriend {
  background: linear-gradient(90deg, #00d8ff, #ffd700);
  color: #000;
  font-weight: bold;
  padding: 12px 28px;
  border-radius: 50px;
  box-shadow: 0 0 10px rgba(255, 255, 150, 0.4);
  border: none;
  transition: all 0.3s ease;
}
.btn-lightfriend:hover {
  background: linear-gradient(90deg, #ffd700, #00d8ff);
  box-shadow: 0 0 25px rgba(255, 255, 200, 0.8);
  transform: scale(1.05);
}

/* Globaler magischer Hintergrund */
body {
  background-image: url("URL-ZU-DEINEM-SCREENSHOT-BILD.jpg");
  background-size: cover;
  background-repeat: no-repeat;
  background-attachment: fixed;
  background-position: center center;
  background-color: #00131f; /* fallback */
}

/* Halbtransparentes Overlay auf allen Seiten */
body::before {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 15, 30, 0.6);
  z-index: -1;
}
/* === 🌅 SANFTER ÜBERGANG BEIM SEITENLADEN === */
body {
  opacity: 0;
  animation: fadeInPage 2.5s ease forwards;
}
@keyframes fadeInPage {
  to { opacity: 1; }
}

/* === 🌫️ NEBEL / LICHTSCHLEIER-HINTERGRUND (korrigiert) === */
body::after {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 50% 30%, rgba(255,255,200,0.05), rgba(0,0,20,0.3));
  backdrop-filter: blur(6px);
  mix-blend-mode: screen;
  z-index: -3; /* tiefer gelegt! */
  pointer-events: none; /* verhindert blockieren von Klicks */
  animation: mistMove 20s ease-in-out infinite alternate;
}

/* === ✨ HEADER-GLOW BEIM SCROLLEN === */
header.site-header, .elementor-location-header {
  position: sticky;
  top: 0;
  z-index: 99;
  transition: all 0.5s ease;
}
header.site-header.scrolled, .elementor-location-header.scrolled {
  background: rgba(0, 20, 40, 0.75);
  box-shadow: 0 0 25px rgba(255, 215, 120, 0.5);
}
header.site-header.scrolled img, 
.elementor-location-header.scrolled img {
  filter: drop-shadow(0 0 6px rgba(255,255,180,0.8));
  transition: filter 0.4s ease;
}

/* === 🌟 WEICHER SCROLL-GLOW FÜR TEXTE === */
h1, h2, h3 {
  transition: text-shadow 1s
.particles {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: -2;
}
/* === FIX: Mehr Abstand zwischen den Download-Buttons === */
.atelier-downloads {
  display: grid !important;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)) !important;
  gap: 4rem !important;              /* Abstand zwischen den Karten */
  margin-top: 4rem !important;       /* Abstand nach oben */
}

.download-card {
  background: rgba(255,255,255,0.06);
  border-radius: 20px;
  padding: 2rem 1.5rem 3rem 1.5rem !important; /* unten mehr Platz */
  box-shadow: 0 0 15px rgba(255,255,180,0.2);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  min-height: 460px !important;      /* Kartenhöhe etwas größer */
}

.download-card img {
  width: 100%;
  border-radius: 12px;
  margin-bottom: 2rem !important;    /* Abstand Bild–Button */
}

.download-card .btn-lightfriend {
  margin-top: 2.5rem !important;     /* Abstand Button–Inhalt */
}

@media (max-width: 768px) {
  .atelier-downloads {
    gap: 2.5rem !important;
  }
  .download-card {
    min-height: auto !important;
    padding: 1.5rem !important;
  }
}