/* Shared lightweight styles (no build step required) */

:root {
  color-scheme: light;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto,
    Helvetica, Arial, "Apple Color Emoji", "Segoe UI Emoji";
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.fun-underline {
  background-image: linear-gradient(120deg, rgba(249, 115, 22, 0.45), rgba(59, 130, 246, 0.35));
  background-repeat: no-repeat;
  background-size: 100% 0.45em;
  background-position: 0 88%;
  border-radius: 0.25em;
}

.soft-ring {
  box-shadow:
    0 0 0 1px rgba(148, 163, 184, 0.35),
    0 10px 30px rgba(15, 23, 42, 0.08);
}

.shine-card {
  position: relative;
  overflow: hidden;
}
.shine-card::before {
  content: "";
  position: absolute;
  inset: -1px;
  background: radial-gradient(800px circle at var(--x, 20%) var(--y, 30%), rgba(59, 130, 246, 0.18), transparent 55%),
    radial-gradient(700px circle at 85% 40%, rgba(249, 115, 22, 0.18), transparent 55%);
  opacity: 0;
  transition: opacity 180ms ease;
  pointer-events: none;
}
.shine-card:hover::before {
  opacity: 1;
}

.nav-link {
  color: rgb(55 65 81); /* gray-700 */
  transition: color 150ms ease;
}
.nav-link:hover {
  color: rgb(37 99 235); /* blue-600 */
}
.nav-link[aria-current="page"] {
  color: rgb(37 99 235); /* blue-600 */
  font-weight: 700;
}

/* Avoid layout shift from sticky header shadow */
#site-header[data-scrolled="true"] {
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

/* Simple, tasteful placeholders when real photos aren’t present */
.photo-placeholder {
  background: radial-gradient(
      1200px circle at 20% 15%,
      rgba(59, 130, 246, 0.22),
      transparent 35%
    ),
    radial-gradient(
      900px circle at 80% 30%,
      rgba(249, 115, 22, 0.20),
      transparent 40%
    ),
    linear-gradient(180deg, rgba(15, 23, 42, 0.06), rgba(15, 23, 42, 0.02));
}

.hero-sparkles {
  background-image:
    radial-gradient(circle at 12% 18%, rgba(255, 255, 255, 0.26) 0 2px, transparent 3px),
    radial-gradient(circle at 80% 22%, rgba(255, 255, 255, 0.22) 0 2px, transparent 3px),
    radial-gradient(circle at 55% 68%, rgba(255, 255, 255, 0.18) 0 2px, transparent 3px),
    radial-gradient(circle at 25% 78%, rgba(255, 255, 255, 0.20) 0 2px, transparent 3px);
  background-size: 520px 520px;
  mix-blend-mode: overlay;
  opacity: 0.45;
}

.hero-crisp {
  text-shadow: 0 2px 18px rgba(0, 0, 0, 0.35);
}

.soon-grid {
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.05) 1px, transparent 1px);
  background-size: 44px 44px;
  mask-image: radial-gradient(ellipse at center, black 20%, transparent 78%);
  -webkit-mask-image: radial-gradient(ellipse at center, black 20%, transparent 78%);
}

.status-dot {
  box-shadow: 0 0 0 0 rgba(251, 146, 60, 0.55);
  animation: status-pulse 2s ease-out infinite;
}

@keyframes status-pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(251, 146, 60, 0.55);
  }
  70% {
    box-shadow: 0 0 0 10px rgba(251, 146, 60, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(251, 146, 60, 0);
  }
}

/* Respect reduced motion */
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  * {
    transition: none !important;
    animation: none !important;
  }
}

