/* Custom CSS for Schwarzes Barett Landing Page */

/* Force dark background */
html, body {
  background: linear-gradient(135deg, #0f172a 0%, #111827 50%, #000000 100%) !important;
  min-height: 100vh;
}

:root {
  /* Cinematic Color Scheme */
  --bg-primary: #0B0F0E;          /* Deep black-green */
  --bg-surface: #12161C;          /* Dark surface */
  --text-primary: #D4D4D4;        /* Body text */
  --text-contrast: #FFFFFF;       /* White for headlines */
  --text-secondary: #9DA4AE;

  --color-olive: #3B4B3E;         /* Smoky olive */
  --color-copper: #B35C2E;        /* Copper highlight */
  --color-moon: #A9B9C9;          /* Moonlight blue */

  --button-bg: var(--color-copper);
  --gradient-moon: rgba(169, 185, 201, 0.12);
  --gradient-copper: rgba(179, 92, 46, 0.12);
  --gradient-olive: rgba(59, 75, 62, 0.14);

  /* Typography */
  --font-display: 'BebasNeue', sans-serif; /* Approx. Orbitron/Exo2 */
  --font-script: 'Allura', cursive;        /* Script for titles */
  --font-body: 'Inter', sans-serif;        /* Body, close to Open Sans */
}

/* Custom background with gradients and image */
.hero-bg {
  background:
    radial-gradient(ellipse at 30% 40%, var(--gradient-moon) 0%, transparent 50%),
    radial-gradient(ellipse at 70% 60%, var(--gradient-copper) 0%, transparent 50%),
    var(--bg-primary);
}

.hero-bg::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: url('../images/bigbild.png'); /* Parallax-ready hero image */
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0.2;
  z-index: 1;
  transform: scale(1.05);
  transition: transform 0.3s ease;
}

.hero-bg:hover::before {
  transform: scale(1.02);
}

/* Typography classes */
.font-display {
  font-family: var(--font-display);
}

.font-script {
  font-family: var(--font-script);
}

.font-body {
  font-family: var(--font-body);
}

/* Custom colors */
.text-primary {
  color: var(--text-primary);
}

.text-secondary {
  color: var(--text-secondary);
}

.bg-primary {
  background-color: var(--bg-primary);
}

.bg-surface {
  background-color: var(--bg-surface);
}

.bg-button {
  background-color: var(--button-bg);
}

.text-accent-cyan {
  color: var(--accent-cyan);
}

.text-accent-lava {
  color: var(--accent-lava);
}

.bg-accent-cyan {
  background-color: var(--accent-cyan);
}

.border-accent-cyan {
  border-color: var(--accent-cyan);
}

.border-accent-lava {
  border-color: var(--accent-lava);
}

/* Custom animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.animate-fade-in-up {
  animation: fadeInUp 1s ease forwards;
}

.animate-delay-200 {
  animation-delay: 0.2s;
}

.animate-delay-400 {
  animation-delay: 0.4s;
}

.animate-delay-600 {
  animation-delay: 0.6s;
}

.animate-delay-800 {
  animation-delay: 0.8s;
}

.animate-delay-1000 {
  animation-delay: 1s;
}

/* Button hover effects - Copper CTA with moon glow */
.btn-primary {
  background: var(--color-copper);
  color: var(--text-contrast);
  border: 2px solid transparent;
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
}

.btn-primary::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.10), transparent);
  transition: left 0.5s ease;
}

.btn-primary:hover::before { left: 100%; }

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(169, 185, 201, 0.28);
}

.btn-primary:focus {
  outline: 3px solid rgba(169, 185, 201, 0.6);
  outline-offset: 3px;
}

/* Platform icon hover effects (olive base, moon glow) */
.platform-icon {
  background: rgba(59, 75, 62, 0.18);
  border: 1px solid rgba(59, 75, 62, 0.45);
  transition: all 0.3s ease;
  -webkit-backdrop-filter: blur(2px);
  backdrop-filter: blur(2px);
}

.platform-icon:hover {
  background: rgba(59, 75, 62, 0.28);
  transform: translateY(-4px);
  box-shadow: 0 10px 28px rgba(169, 185, 201, 0.25);
}

.platform-icon:focus {
  outline: 2px solid rgba(169, 185, 201, 0.6);
  outline-offset: 2px;
}

.platform-icon img { filter: brightness(0.92); transition: filter 0.3s ease; }
.platform-icon:hover img { filter: brightness(1.1); }

/* Responsive utilities */
@media (prefers-reduced-motion: reduce) {
  .hero-bg::before {
    transition: none;
  }

  .btn-primary,
  .platform-icon {
    transition: none;
  }

  .animate-fade-in-up {
    animation: none;
    opacity: 1;
  }
}

@media (prefers-contrast: high) {
  :root {
    --bg-primary: #000000;
    --text-primary: #FFFFFF;
    --accent-cyan: #00FFFF;
  }
}

/* Headline subtle glow */
.headline-glow {
  text-shadow: 0 0 10px rgba(169, 185, 201, 0.25), 0 0 24px rgba(169, 185, 201, 0.15);
}

/* Hide elements initially for animation */
.opacity-0-initial {
  opacity: 0;
}


/* CTA drop shadow */
.cta-shadow {
  box-shadow: 0 12px 30px rgba(179, 92, 46, 0.35);
}

/* Section scaffolding (Über, Player, Tour, Kontakt) */
.section-panel { background: rgba(59, 75, 62, 0.18); border: 1px solid rgba(59, 75, 62, 0.4); }
.section-heading { color: var(--text-contrast); }
.section-subtext { color: var(--text-primary); }


/* Player panel gradient & border */
.player-panel {
  background: linear-gradient(180deg, rgba(179, 92, 46, 0.08), rgba(59, 75, 62, 0.12));
  border: 1px solid rgba(179, 92, 46, 0.35);
}
