/* Bravodent – Production small CSS fixes and overrides
   Keep this file minimal; Tailwind utilities come from CDN. */

/* General */
html { scroll-behavior: smooth; }
html, body { overflow-x: hidden; }
img, video { max-width: 100%; height: auto; display: block; }

/* Fixed header offset to prevent content being hidden under navbar */
body { padding-top: 72px; }
@media (max-width: 767.98px) {
  body { padding-top: 64px; }
}

/* Improve anchor jump positions for in-page links */
section, [id] { scroll-margin-top: 96px; }

/* Navbar layering safety (dropdowns above content) */
header { z-index: 50; position: sticky; top: 0; }

/* AOS safe defaults (no-op ensures file is not empty if later purged) */
[data-aos] { will-change: transform, opacity; }

/* Utility tweaks */
.object-cover { object-fit: cover; }
.rounded-3xl { border-radius: 1.5rem; }
