/* Custom site styles layered on top of Tailwind CDN */
:root {
  color-scheme: light;
}

.parallax-hero {
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center 0px;
  min-height: 75vh;
}

.nav-blur {
  backdrop-filter: blur(12px);
}

.text-shadow {
  text-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
}

.section-divider {
  background: linear-gradient(90deg, rgba(11, 61, 46, 0.12), rgba(163, 247, 196, 0.4));
  height: 1px;
  width: 100%;
}

.glass-panel {
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(255, 255, 255, 0.7);
  box-shadow: 0 18px 60px rgba(11, 61, 46, 0.18);
}

.card-hover {
  transition: transform 200ms ease, box-shadow 200ms ease;
}

.card-hover:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 40px rgba(11, 61, 46, 0.16);
}

.badge {
  border: 1px solid rgba(163, 247, 196, 0.35);
  color: #d4ffe8;
  background: rgba(11, 61, 46, 0.45);
}

@media (prefers-reduced-motion: reduce) {
  .parallax-hero {
    background-attachment: scroll;
  }
}
