/* 1. FONT DEFAULTS 
--------------------------------------------- */
body, h1, h2, h3, h4, h5, h6, p, a, li, button, input, textarea, select {
    /* Sets a modern, readable sans-serif font across the site */
    font-family: 'Inter', sans-serif;
}

h1, h2, h3, h4, h5, h6 {
    /* Sets a bolder, more distinct font for all headings */
    font-family: 'Poppins', sans-serif;
    font-weight: 700; /* Bolder weight for headings */
}

/* 2. CORE BODY & TYPOGRAPHY
--------------------------------------------- */
body {
    background-color: #ffffff; /* Clean white background */
    color: #111827; /* High-contrast dark gray for text (text-dark) */
    overflow-x: hidden;
    line-height: 1.6;
    font-size: 16px;
}

h1 {
    font-size: 2.5rem; /* 40px */
    color: #111827; /* Dark text for major headlines */
}

h2 {
    font-size: 2rem; /* 32px */
    color: #1f2937; /* Slightly softer dark gray for section titles */
}

h3 {
    font-size: 1.5rem; /* 24px */
    color: #1f2937;
}

p {
    color: #4b5563; /* Medium gray for paragraph text for readability */
    margin-bottom: 1rem;
}

a {
    color: #1d4ed8; /* Primary blue for links (primary-blue) */
    text-decoration: none;
    transition: color 0.2s ease;
}

a:hover {
    color: #3b82f6; /* Lighter accent blue on hover (accent-blue) */
    text-decoration: underline;
}

/* 3. BUTTON & FORM STYLES
--------------------------------------------- */
.button-primary,
button,
input[type="submit"] {
    background-color: #1d4ed8; /* Primary blue background */
    color: #ffffff;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    padding: 12px 28px;
    border-radius: 8px;
    border: none;
    cursor: pointer;
    transition: background-color 0.2s ease, transform 0.2s ease;
    display: inline-block;
    text-align: center;
}

.button-primary:hover,
button:hover,
input[type="submit"]:hover {
    background-color: #3b82f6; /* Accent blue on hover */
    transform: translateY(-2px);
}
