/* Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Apply default system fonts */
body,
button,
input,
textarea,
select,
a,
p,
h1,
h2,
h3,
h4,
h5,
h6,
span,
label {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu,
        Cantarell, "Open Sans", "Helvetica Neue", sans-serif !important;
}

/* Global Styles */
body {
    line-height: 1.6;
    color: #333333;
    overflow-x: hidden;
    font-weight: 500;
    /* Default to lighter weight */
}

h1,
h2,
h3,
h4,
h5,
h6,
strong,
b {
    font-weight: 500;
    /* Use heavy weight for headings and bold text */
}

html {
    scroll-behavior: smooth;
}

/* Top Banner */
body::before {
    content: 'A reader today, a leader tomorrow';
    display: block;
    background-color: #FDB913;
    color: #000000;
    text-align: center;
    padding: 0.7rem 1rem;
    font-size: 0.95rem;
    font-weight: 700;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1001;
}

.main-header {
    top: 42px;
}

.hero-section {
    padding-top: calc(8rem + 42px);
}

@media (max-width: 768px) {
    body::before {
        font-size: 0.85rem;
        padding: 0.6rem 1rem;
    }
}

header {
    transition: transform 0.3s ease;
}

.hide-nav {
    transform: translateY(-100%);
}

