/* ========================= */
/* ======= STYLE.CSS ======= */
/* ========================= */

/* ==== RESET & BASIS ==== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    font-size: 100%;
    scroll-behavior: smooth;
    scroll-padding-top: 40px;
}

/* main.scroll-container {
    position: relative;
    padding-top: 0;
} */

body {
    position: relative;
    font-family: var(--body-font);
    line-height: 1.5;
    font-weight: 400;
    background-color: var(--bs-primary);
    color: var(--bs-light);
    overflow-x: hidden;
}


h1,
h2 {
    font-family: var(--heading);
    letter-spacing: 0.03em;
    text-transform: uppercase;
}

h1 {
    font-size: clamp(3rem, 8vw, 8rem);
    line-height: 1;
}

h2 {
    font-size: clamp(3rem, 5vw, 5rem);
    line-height: 1.1;
    color: var(--accent-primary);
}

h3 {
    font-family: var(--font-accent);
    font-size: clamp(1.1rem, 1.5vw, 1.4rem);
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding-top: 1rem;
}

a {
    color: var(--accent-secondary);
}

a:hover {
    color: var(--accent-primary);
}

/* LAYOUT */
section {
    position: relative;
}

.panel {
    min-height: 100vh;
}

/* .subtitle {
    font-family: var(--font-accent);
    font-size: 2rem;
} */

::selection {
    background-color: var(--bs-warning);
    color: var(--bs-primary);
}