/* DryForce Restoration — supplemental styles (Tailwind CDN handles most utility classes) */

html {
  scroll-behavior: smooth;
}

body {
  -webkit-font-smoothing: antialiased;
}

/* Basic prose spacing for blog/about content since Tailwind CDN's typography plugin isn't loaded */
.prose p {
  margin-bottom: 1.1rem;
}
.prose h2 {
  margin-top: 1.75rem;
  margin-bottom: 0.75rem;
}
.prose strong {
  color: #0f1b2d;
  font-weight: 700;
}

/* Smooth open/close for FAQ <details> arrows */
details summary::-webkit-details-marker {
  display: none;
}

/* Sticky mobile call bar spacing so content isn't hidden behind it */
@media (max-width: 639px) {
  body {
    padding-bottom: 56px;
  }
}
