@font-face {
    font-family: 'iam-font';
    src: url('../fonts/CreatoDisplay-Regular.otf');
}

@font-face {
    font-family: 'iam-font-bold';
    src: url('../fonts/CreatoDisplay-Bold.otf');
}

@font-face {
    font-family: 'iam-font-extra-bold';
    src: url('../fonts/CreatoDisplay-ExtraBold.otf');
}

:root {
    /* ===== BRAND COLORS ===== */
    --color-primary: #e53935;
    /* main brand color */
    --color-primary-light: #ef5350;
    --color-primary-dark: #991b1b;

    --color-secondary: #f44336;
    /* accent color */
    --color-secondary-light: #e57373;
    --color-secondary-dark: #771515;
    --color-accent: #ffc371;

    /* ===== BACKGROUND COLORS ===== */
    --bg-main: #fcfcfc;
    --bg-light: #eeeeee;
    --bg-dark: #1c2126;
    --bg-darker: #141414;

    /* ===== TEXT COLORS ===== */
    --text-main: #222222;
    --text-light: #555;
    --text-lighter: #979797;
    --text-invert: #ffffff;

    /* ===== NEUTRALS ===== */
    --neutral-100: #f8f9fa;
    --neutral-200: #e9ecef;
    --neutral-300: #dee2e6;
    --neutral-400: #ced4da;
    --neutral-500: #adb5bd;
    --neutral-600: #6c757d;
    --neutral-700: #495057;
    --neutral-800: #343a40;
    --neutral-900: #212529;

    /* ===== BORDERS & SHADOWS ===== */
    --border-color: #e0e0e0;
    --shadow-soft: rgba(0, 0, 0, 0.08);
    --shadow-medium: rgba(0, 0, 0, 0.15);
    --shadow-strong: rgba(0, 0, 0, 0.25);

    /* ===== STATUS COLORS ===== */
    --success: #28a745;
    --warning: #ffc107;
    --danger: #dc3545;
    --info: #17a2b8;

    /* ===== FONT FAMILIES ===== */
    --font-primary: iam-font, sans-serif;
    --font-secondary: iam-font, sans-serif;
    --font-mono: iam-font, sans-serif;
    --font-bold: iam-font-bold, sans-serif;
    --font-extra-bold: iam-font-extra-bold, sans-serif;

    /* ===== FONT SIZES (scale) ===== */
    --fs-xs: 0.75rem;
    /* 12px */
    --fs-sm: 0.875rem;
    /* 14px */
    --fs-md: 1rem;
    /* 16px */
    --fs-lg: 1.25rem;
    /* 20px */
    --fs-xl: 1.5rem;
    /* 24px */
    --fs-xxl: 2rem;
    /* 32px */

    /* ===== FONT WEIGHTS ===== */
    --fw-light: 300;
    --fw-normal: 400;
    --fw-medium: 500;
    --fw-semibold: 600;
    --fw-bold: 700;

    /* ===== LINE HEIGHT ===== */
    --lh-tight: 1.1;
    --lh-normal: 1.4;
    --lh-loose: 1.7;
}

* {
    box-sizing: border-box;
    font-family: iam-font, sans-serif;
}

/* --- Basic Page Reset --- */
body {
    margin: 0;
    font-family: iam-font, sans-serif;
    overflow-x: hidden;
}

html {
    scroll-behavior: smooth;
}

#content-1 {
    height: auto;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 120px 15% 15% 15%;
}

@media (max-width: 768px) {

    #content-1 {
        padding: 120px 10% 10% 10%;
    }

    #content-1 h1 {
        font-size: 2.5rem;
    }

}

#content-1 h2 {
    color: var(--color-secondary)
}

#content-1 h1 {
    font-size: 3rem;
    font-style: var(--font-extra-bold);
    margin: 0;
    padding: 0;
}

#content-1 .category-date {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 20px;
}

#content-1 .category {
    background-color: var(--danger);
    padding: 5px;
    font-size: 0.85rem;
    border-radius: 5px;
    color: var(--text-invert);
}

#content-1 .date {
    position: relative;
    padding-left: 14px;
    font-size: 1rem;
    color: var(--text-lighter);
}

#content-1 .date::before {
    content: "";
    width: 8px;
    height: 8px;
    background: red;
    border-radius: 50%;
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
}

#content-1 .headline .sub-headline,
#content-1 .news-content .content {
    font-size: 1.25rem;
    line-height: 1.6;
    color: var(--text-light);
}

#content-1 img {
    width: 100%;
    padding: 20px 0;
}

.quote-block {
    position: relative;
    padding: 20px 20px 20px 36px;
    border-left: 4px solid #e10600;
    /* red line */
    background: #eee;
    margin: 20px 0;
}

.quote-block::before {
    content: "“";
    position: absolute;
    top: -8px;
    left: 10px;
    font-size: 58px;
    color: #f2b6b6;
    font-family: serif;
}

.quote-main {
    margin: 0;
    font-style: italic;
    font-size: 1.25rem;
    line-height: 1.6;
    color: var(--text-light);
}

.quote-sub {
    margin-top: 40px;
    padding: 40px;
    font-size: 1.25rem;
    font-weight: bold;
    color: var(--text-invert);
    background-color: var(--bg-dark);

}

.gradient-divider {
    height: 5px;
    width: 170px;
    margin-top: 8px;
    border-radius: 3px;
    background: linear-gradient(90deg, var(--color-primary), var(--color-accent));
}