/* Non-Tailwind styles for the GoProSite Nigeria marketing page */

html { scroll-behavior: smooth; }
body { font-family: "Inter", ui-sans-serif, system-ui, sans-serif; }

/* Showcase cards — gradient "placeholder thumbnails" using two CSS vars (--g1, --g2). */
.showcase-card {
  display: block;
  border-radius: 1rem;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(26, 26, 26, 0.7);
  transition: border-color 200ms, transform 200ms;
}
.showcase-card:hover {
  border-color: rgba(249, 115, 22, 0.4);
  transform: translateY(-2px);
}
.showcase-frame {
  position: relative;
  aspect-ratio: 16 / 10;
  background: linear-gradient(135deg, var(--g1, #f97316) 0%, var(--g2, #7c2d12) 100%);
  display: grid;
  place-items: end start;
  padding: 1rem;
}
.showcase-frame::after {
  /* Soft noise + vignette overlay to make the placeholder feel textured */
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 30% 20%, rgba(255, 255, 255, 0.15), transparent 50%),
    radial-gradient(circle at 70% 80%, rgba(0, 0, 0, 0.35), transparent 50%);
  pointer-events: none;
}
.showcase-tag {
  position: relative;
  z-index: 1;
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 700;
  color: white;
  background: rgba(0, 0, 0, 0.35);
  backdrop-filter: blur(4px);
  padding: 0.3rem 0.6rem;
  border-radius: 0.4rem;
}
.showcase-meta {
  padding: 0.85rem 1rem 1rem;
}

/* Reduced motion: kill all transforms/animations */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .showcase-card:hover { transform: none; }
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
}
