:root{
  --nav-offset: 96px; /* set this to your navbar height */
}

/* make anchors land below the navbar */
section[id]{
  scroll-margin-top: var(--nav-offset);
}

/* optional: if you have a fixed/sticky header, this helps consistency */
html { scroll-behavior: smooth; }

/* core/static/core/css/home.css */

.hero {
  background: radial-gradient(1200px circle at 10% 10%, rgba(13,110,253,.10), transparent 40%),
              radial-gradient(900px circle at 90% 20%, rgba(25,135,84,.10), transparent 45%);
}

.section-title {
  letter-spacing: -0.02em;
}

.card-hover {
  transition: transform .15s ease, box-shadow .15s ease;
}
.card-hover:hover {
  transform: translateY(-2px);
  box-shadow: 0 .75rem 1.5rem rgba(0,0,0,.08);
}

.soft-border {
  border-color: rgba(0,0,0,.08) !important;
}

.fb-wrap {
  max-width: 520px; /* keeps the widget from looking goofy wide */
  width: 100%;
  margin: 0 auto;
}
