html { scroll-behavior: smooth; }
body { background-color: #000000; }

::selection { background: #F2C400; color: #000000; }

/* Wordmark badge (recreation of the LICHT-BAAS pill logo) */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border: 3px solid #FFFFFF;
  border-radius: 999px;
  background: #000000;
  padding: 6px 18px;
}
.badge-icon {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: 3px solid #FFFFFF;
  background: #000000;
  display: flex;
  align-items: center;
  justify-content: center;
}
.badge-word {
  font-family: 'Archivo Black', sans-serif;
  color: #F2C400;
  letter-spacing: 0.02em;
  font-size: 1.1rem;
  line-height: 1;
}

/* Wavy divider under hero */
.wave-divider {
  position: absolute;
  left: 0; right: 0; bottom: -1px;
  line-height: 0;
}

.hero-text-shadow h1,
.hero-text-shadow p {
  text-shadow: 0 2px 12px rgba(0,0,0,0.6), 0 1px 3px rgba(0,0,0,0.8);
}

.dark-gradient {
  background:
    radial-gradient(120% 90% at 25% 0%, rgba(60,60,60,0.45), transparent 60%),
    radial-gradient(100% 80% at 90% 10%, rgba(90,90,90,0.3), transparent 55%),
    linear-gradient(180deg, #141414 0%, #0a0a0a 60%, #000000 100%);
}

#siteHeader.scrolled {
  background-color: rgba(0,0,0,0.85);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid #242424;
}

.render-card {
  background:
    radial-gradient(120% 100% at 30% 10%, rgba(80,80,80,0.5), transparent 60%),
    linear-gradient(160deg, #1c1c1c 0%, #0c0c0c 65%, #000000 100%);
}

.glow-panel {
  box-shadow: 0 0 0 1px rgba(242,196,0,0.4), 0 0 30px 4px var(--glow-color, rgba(242,196,0,0.25));
  transition: box-shadow 0.25s ease;
}

.portfolio-card { transition: transform 0.5s cubic-bezier(.2,.8,.2,1); }
.portfolio-card:hover { transform: translateY(-6px); }

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.in { opacity: 1; transform: translateY(0); }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal, .portfolio-card, .glow-panel { transition: none !important; }
}

input:focus, select:focus, textarea:focus { outline: none; box-shadow: 0 0 0 2px #F2C400; }

/* Image carousel */
#carouselTrack { will-change: transform; }
.carousel-slide img { display: block; }
#carouselDots button { padding: 0; border: none; cursor: pointer; }
#carouselPrev, #carouselNext { border: none; cursor: pointer; }
