:root {
  color-scheme: dark;
}

body {
  background-color: #131313;
  color: #e5e2e1;
  font-family: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

.material-symbols-outlined {
  font-variation-settings: 'FILL' 0, 'wght' 400, 'GRAD' 0, 'opsz' 24;
}

.glass-nav {
  background-color: rgba(19, 19, 19, 0.7);
  backdrop-filter: blur(20px);
}

.hero-gradient {
  background: linear-gradient(
    to bottom,
    rgba(19, 19, 19, 0.2) 0%,
    rgba(51, 0, 51, 0.4) 50%,
    rgba(19, 19, 19, 1) 100%
  );
}

.recessed-card {
  background-color: #0e0e0e;
}

.hero-fallback {
  background: linear-gradient(
    to bottom,
    rgba(19, 19, 19, 0.2) 0%,
    rgba(51, 0, 51, 0.6) 45%,
    rgba(19, 19, 19, 1) 100%
  );
}

body.modal-open {
  overflow: hidden;
}

.hero-image {
  animation: heroZoom 24s ease-in-out infinite alternate;
  transform-origin: center;
}

@keyframes heroZoom {
  0% {
    transform: scale(1);
  }
  100% {
    transform: scale(1.06);
  }
}

[data-animate] {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

[data-animate].is-visible {
  opacity: 1;
  transform: translateY(0);
}

.hero-highlight {
  color: #f7b0ec;
  background-image: linear-gradient(120deg, #f7b0ec 0%, #9fcaff 50%, #f7b0ec 100%);
  background-size: 200% 200%;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  animation: heroHighlight 8s ease-in-out infinite;
  text-shadow: 0 0 18px rgba(247, 176, 236, 0.35);
}

@keyframes heroHighlight {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

.heart-pulse {
  animation: heartPulse 2.8s ease-in-out infinite;
}

@keyframes heartPulse {
  0%, 100% {
    transform: scale(1);
    opacity: 0.85;
  }
  50% {
    transform: scale(1.18);
    opacity: 1;
  }
}
