/* STYLESHEET: Typography */
/* Font definitions and text styles */

/* ===== FONT IMPORTS ===== */
@import url('https://fonts.googleapis.com/css2?family=Bowlby+One&family=Carlito:ital,wght@0,400;0,700;1,400&display=swap');

/* ===== FONT FAMILIES ===== */
:root {
    --font-display: 'Bowlby One', cursive;
    --font-body: 'Carlito', sans-serif;
    --font-system: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

/* ===== BASE TYPOGRAPHY ===== */
body {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.5;
    color: #333333;
}

/* ===== HEADINGS ===== */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-display);
    font-weight: 400;
    line-height: 1.2;
    margin: 0;
}

h1 {
    font-size: 48px;
}

h2 {
    font-size: 40px;
}

h3 {
    font-size: 32px;
}

h4 {
    font-size: 28px;
}

h5 {
    font-size: 24px;
}

h6 {
    font-size: 20px;
}

/* ===== PARAGRAPHS ===== */
p {
    margin: 0 0 1em;
}

p:last-child {
    margin-bottom: 0;
}

/* ===== LINKS ===== */
a {
    color: inherit;
    text-decoration: none;
    transition: color 150ms ease;
}

/* ===== SCREEN READER ONLY ===== */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* ===== TEXT UTILITIES ===== */
.text-uppercase {
    text-transform: uppercase;
}

.text-center {
    text-align: center;
}

.text-left {
    text-align: left;
}

.text-right {
    text-align: right;
}

/* ===== FONT WEIGHTS ===== */
.font-normal {
    font-weight: 400;
}

.font-bold {
    font-weight: 700;
}
