/* ============================================================
   ComfacDNS — Custom Styles
   Tailwind CSS handles the majority of styling via CDN.
   This file provides minimal custom overrides.
   ============================================================ */

/* Smooth scroll */
html {
  scroll-behavior: smooth;
}

/* Fix nav offset for anchor links */
section[id] {
  scroll-margin-top: 5rem;
}

/* Prose-like content for legal/FAQ pages */
.prose h2 {
  margin-top: 2rem;
  margin-bottom: 0.5rem;
}

.prose p {
  margin-bottom: 1rem;
  line-height: 1.75;
  color: #4b5563;
}

/* Mobile menu animation */
#mobile-menu {
  transition: opacity 0.2s ease, max-height 0.3s ease;
}

#mobile-menu:not(.hidden) {
  opacity: 1;
  max-height: 500px;
}

/* Selection color */
::selection {
  background-color: #1a73e8;
  color: white;
}

/* Focus ring */
a:focus-visible,
button:focus-visible {
  outline: 2px solid #1a73e8;
  outline-offset: 2px;
  border-radius: 4px;
}

/* Print */
@media print {
  nav, footer {
    display: none;
  }
}
