/* main.css – your site’s global styles */
body {
  font-family: sans-serif;
  margin: 0;
  padding: 0;
  background: #fdfdfd;
}

/* ---- Landing hero ---- */
.hero {
  background: radial-gradient(110% 70% at top center, #faf8f6 0%, #ebe3dd 100%);
  padding: 6rem 1rem 4rem;
  position: relative;
  text-align: center;
}

.hero h1 {
  font-family: 'Lora', serif;
  font-size: clamp(2.5rem, 6vw, 4rem);
  margin-bottom: .5rem;
  color: #352314;             /* deep brown */
}
.hero p.lead {
  font-size: 1.2rem;
  max-width: 42rem;
  margin: 0 auto 2.5rem;
}

.broom {
  font-size: 4rem;
  position: fixed;
  bottom: 1.5rem;
  left: 0;
  animation: sweep 16s ease-in-out infinite;
  pointer-events: none;
}
@keyframes sweep {
  0%   { transform: translateX(-15vw)   rotate(-6deg); opacity:.15; }
  50%  { transform: translateX(50vw) rotate(8deg); opacity:1; }
  100% { transform: translateX(calc(115vw)) rotate(-6deg); opacity:.15; }
}

/* ---- Section cards ---- */
.features .card {
  border: 0;
  border-radius: .5rem;
  box-shadow: 0 2px 6px rgba(0,0,0,.06);
  transition: transform .2s;
}
.features .card:hover { transform: translateY(-3px); }
.features .icon {
  font-size: 2rem;
  color: #6d4c41;
}
