﻿:root {
    /* Brand palette */
    --white: #ffffff;
    --grey-light: #ebebeb;
    --dusk-blue: #95a5db;
    --red: #ff3100;
    --orange: #ff6600;
    --yellow: #ffc000;
    --grey-dark: #303030;
    --black: #000000;
    /* Typography */
    --font-body: 'Arial Narrow', sans-serif;
    --font-heading: 'Arial Narrow', sans-serif;
    --font-display: 'Arial Narrow', sans-serif;
    /* Typography scale */
    --font-size-body: 18px;
    --font-size-small: 16px;
    --font-size-h1: 64px;
    --font-size-h2: 40px;
    --font-size-h3: 28px;
    /* Spacing */
    --space-side: 48px;
    --space-side-extended: 16px;
    --space-logo-y: 20px;
    --space-heading-body: 24px;
    --space-section: 64px;
    --space-section-small: 12px;
    --space-section-lg: 96px;
    /* Layout */
    --container-max: 1440px;
    interpolate-size: allow-keywords;
}

@media (max-width: 767px) {
    :root {
        --font-size-body: 16px;
        --font-size-small: 14px;
        --font-size-h1: 40px;
        --font-size-h2: 24px;
        --font-size-h3: 16px;
        --space-side: 24px;
        --space-side-extended: 16px;
        --space-logo-y: 8px;
        --space-heading-body: 20px;
        --space-section: 48px;
        --space-section-small: 12px;
        --space-section-lg: 80px;
    }
}

/******************************************************/

/* BASE SETTING */

* {
    box-sizing: border-box;
}

body {
    margin: 0;
    background-color: var(--white);
    color: var(--grey-dark);
    font-family: var(--font-body);
    font-size: var(--font-size-body);
    line-height: 1.5;
}

h1, h2, h3, h4 {
    margin: 0;
}

h1 {
    font-size: var(--font-size-h1);
}

h2 {
    font-size: var(--font-size-h2);
}

a {
    color: var(--grey-dark);
    text-decoration: underline;
}

    a:hover {
        color: var(--orange);
    }

img {
    max-width: 100%;
    display: block;
}

.container {
    width: 100%;
    max-width: var(--container-max);
    margin-inline: auto;
    padding: var(--space-side);
}

.content-box {
    width: auto;
    max-width: 600px;
    flex: 1;
}

.img-fill {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

button, .btn {
    font-family: var(--font-body);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 40px;
    border: none;
    border-radius: 8px;
    font-size: 18px;
    font-weight: 600;
    line-height: 1.2;
    text-decoration: none;
    cursor: pointer;
    transition: background-color 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

html {
    scroll-behavior: smooth;
}

/* Orange brand button */
.btn--brand {
    background: #ff791f;
    color: var(--grey-dark);
}

    .btn--brand:hover {
        background: var(--yellow);
        color: var(--grey-dark);
    }

/* Yellow accent button */
.btn--accent {
    background: var(--yellow);
    color: var(--grey-dark);
}

    .btn--accent:hover {
        background: #f0b70b;
        color: var(--grey-dark);
    }

@media (max-width: 767px) {
    .btn {
        padding: 12px 20px;
        font-size: var(--font-size-body);
    }
}
