/* =================================================================
Table of Contents

- Root Variables
- General
- Buttons
- Header
- Footer

================================================================= */


/* =================================================================
ROOT VARIABLES
================================================================= */

:root {
    --heading-font-family: 'GothamBold', sans-serif;
    --text-font-family: 'GothamBook', sans-serif;
    --base-font-size: 16px;
    --nav-text: #FFF;
    --body-text: #212529;
}

/* =================================================================
GENERAL
================================================================= */

html, body {
    font-size: var(--base-font-size);
    --bs-body-font-family: var(--text-font-family);
    --bs-body-line-height: 1.6;
}

body {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 100vh;
    overflow-x: hidden;
}

body > .site-content {
    flex: 1;
    margin-top: 100px;
}

h1, .h1,
h2, .h2,
h3, .h3,
h4, .h4,
h5, .h5,
h6, .h6 {
    font-family: var(--heading-font-family);
    letter-spacing: 4px;
}

h1, .h1 {
    font-size: 3rem;
    font-weight: 700;
}

h2, .h2 {
    font-size: 2.6rem;
}

h3, .h3 {
    font-size: 2rem;
    letter-spacing: 2px;
}

h4, .h4 {
    font-size: 1.4rem;
    letter-spacing: 2px;
}

h5, .h5 {
    font-size: 1.2rem;
    letter-spacing: 2px;
}

h6, .h6 {
    font-size: 0.7rem;
    margin-bottom: 0.2rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

@media (max-width: 768px) {
    h1, .h1 {
        font-size: 2rem;
    }

    h2, .h2 {
        font-size: 1.6rem;
    }

    h3, .h3 {
        font-size: 1.4rem;
    }

    h4, .h4 {
        font-size: 1.2rem;
    }

    h5, .h5 {
        font-size: 1rem;
    }

    h6, .h6 {
        font-size: 0.8rem;
    }
}

.pointer-events-none {
    pointer-events: none;
}

.user-select-none {
    user-select: none;
}
