/* --------------------------------------------------- definitions */

:root {
    /* palette */
    --byte-black: #1a1a22;
    --galaxy-grey: #64676a;
    --star-grey: #e1d9d4;
    --smooth-purple: #c36788;
    --faded-purple: #cfa5ab;
    --bright-white: #f6f6f6;
    --paper-yellow: #f8f2dc;
    --sunflower-yellow: #edbd4a;
}

@font-face {
    font-family: 'FatAlbert';
    src: url('/fonts/FatAlbert/FatAlbertBTW01Regular.ttf') format('truetype');
    font-display: swap;
}

@font-face {
    font-family: 'FatAlbert Outline';
    src: url('/fonts/FatAlbert/FatAlbertBTW01Outline.ttf') format('truetype');
    font-display: swap;
}

@font-face {
    font-family: 'FatAlbert Shadow';
    src: url('/fonts/FatAlbert/FatAlbertBTW01Shadow.ttf') format('truetype');
    font-display: swap;
}

/* ---------------------------------------------------page defaults */

body {
    font-family: 'FatAlbert', 'Courier New';
    background-color: var(--smooth-purple);
    background-image: url('/img/textures/exclusive-paper.png');
    background-size: auto;
    /*background-attachment: fixed;*/
    margin: 0;
    padding: 0;
    color: var(--byte-black);
    letter-spacing: 0.05rem;
    background-blend-mode: multiply;
}

h1 {
    font-family: 'FatAlbert Shadow', 'Courier New';
    background-color: var(--bright-white);
    color: var(--byte-black);
    padding: 0.01rem 0.2rem;
    margin: 0;
    display: inline-block;
    border-radius: 0.1px; /* slight softness for edges */
    letter-spacing: 0rem;
}

h2, h3 {
    font-family: 'FatAlbert Outline', 'Courier New';
}

a {

}

a:hover {

}

p {

}

/* scrollbar stuff */
    ::-webkit-scrollbar {
        width: 14px; 
        height: 14px; 
    }

    ::-webkit-scrollbar-track {
        background: var(--star-grey); 
    }

    ::-webkit-scrollbar-thumb {
        background: var(--smooth-purple);
        border: 2px solid var(--star-grey);
    }

    ::-webkit-scrollbar-thumb:hover {
        background: var(--byte-black);
    }

    ::-webkit-scrollbar-thumb:active {
        background: var(--galaxy-grey);
    }

    /* firefox */
    * {
        scrollbar-width: auto;
        scrollbar-color: var(--smooth-purple) var(--star-grey);
    }

    /* mobile */
    @media screen and (max-width: 500px) {
        ::-webkit-scrollbar {
            width: 20px;
            height: 20px;
        }
        
        ::-webkit-scrollbar-thumb {
            min-height: 60px;
            background: var(--smooth-purple);
            border: 3px solid var(--star-grey);
        }
        
        body {
            -webkit-overflow-scrolling: touch;
            overflow-y: scroll;
        }
    }

/* --------------------------------------------------- classes */
.container {

}

.content {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: 100%;
    height: 100%;
    top: -4.5rem;
    align-items: center;
}

/* --------------------------------------------------- navigation */

.navbar {
    position: relative;
    height: 12rem;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.navbar-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('/img/nav/tvforestbandwshort.jpg');
    background-size: cover;
    background-attachment: fixed;
    background-position: center;
    z-index: 1;
    filter: brightness(0.8);
}

.navbar-title {
    position: absolute;
    margin: 1rem 2rem 0 0;
    font-size: 2rem;
    text-align: right;
    right: 0;
    font-family: 'FatAlbert Shadow', 'Courier New';
    background-color: var(--bright-white);
    color: var(--byte-black);
    padding: 0.01rem 0.2rem;
    margin: 0;
    margin-top: 0.7rem;
    display: inline-block;
    border-radius: 0.1px;
    letter-spacing: 0rem;
    z-index: 2;
}

.nav-links {
    position: absolute;
    /* margin-left: 10rem; */
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    margin-top: 4.5rem;
    row-gap: 1rem;
    column-gap: 4rem;
    font-family: 'FatAlbert', 'Courier New';
    z-index: 2;
    justify-content: center;
    width: 100%;
}

.nav-link {
    text-decoration: none;
    font-size: 1.5rem;
    transition: color 0.3s ease;
    background-color: var(--byte-black);
    color: var(--bright-white);
    padding: 0.01rem 0.2rem;
    margin: 0;
    display: inline-block;
    border-radius: 0.1px;
}

.nav-link:hover {
    color: var(--sunflower-yellow);
}

input {
    background-color: var(--bright-white);
    color: var(--byte-black);
    padding: 0.5rem;
    margin: 0.25rem;
    font-family: 'FatAlbert', 'Courier New';
}

button {
    background-color: var(--faded-purple);
    color: var(--byte-black);
    padding: 0.5rem;
    margin: 0.25rem;
    font-family: 'FatAlbert', 'Courier New';
}

button:hover {
    background-color: var(--byte-black);
    color: var(--paper-yellow);
}

select {
    background-color: var(--bright-white);
    color: var(--byte-black);
    font-family: 'FatAlbert', 'Courier New';
}

@media screen and (max-width: 500px) {
    .nav-links {
        margin-top: 8rem;
        column-gap: 1.5rem; 
        row-gap: 0.5rem; 
        padding-bottom: 1rem;
    }

    .navbar {
        margin-bottom: 2rem; 
        height: 14rem; 
    }

    .nav-link {
        
    }

    .navbar-title {
        
    }
}