/* public/styles.css */

/* Global font */
body {
    font-family: 'Inter', sans-serif;
}

/* Hide scrollbars across browsers */
::-webkit-scrollbar {
    display: none;
}

html,
body {
    -ms-overflow-style: none; /* IE and Edge */
    scrollbar-width: none;    /* Firefox */
}

/* Optional: hide scrollbar for the small mobile nav scroller */
.no-scrollbar::-webkit-scrollbar { display: none; }
.no-scrollbar { -ms-overflow-style: none; scrollbar-width: none; }

/* Editor helper styles */
.highlighted-section {
    outline: 2px solid #3F20FB;
    background-color: rgba(63, 32, 251, 0.1);
}

.edit-button {
  position: absolute;
  z-index: 1000;
}

/* Smooth scrolling for in-page anchors */
html {
  scroll-behavior: smooth;
}

/* Anchor offset so fixed header doesn't cover section titles */
.scroll-offset {
  scroll-margin-top: 112px; /* header ~80-96px; leave a bit more room */
}
