/* ============================================
   COLOR THEME — derived from #5f321b (walnut brown)
   ============================================
   --color-primary:     #8c7020  (dark yellow-brown)
   --color-medium:      #8a5437  (medium brown)
   --color-accent:      #e8983a  (warm amber)
   --color-light:       #e6c255  (yellow-brown)
   --color-cream:       #f5dfc9  (warm cream)
   --color-off-white:   #fff5ee  (off-white)
   --color-dark:        #7a621e  (very dark yellow-brown)
   ============================================ */

::-moz-selection { 
    color: #fff5ee;
    background: #8c7020;
}

::selection {
    color: #fff5ee;
    background: #8c7020;
}


@font-face {
    font-family: "Skribble";
    src: url("../ASSETS/Skribble.ttf") format("truetype");
}

@font-face {
    font-family: "Vividly";
    src: url("../ASSETS/vividly/Vividly-Regular.ttf") format("truetype");
}

@font-face {
    font-family: "Thesead";
    src: url("../ASSETS/Thesead.ttf") format("truetype");
}

@font-face {
    font-family: "Amplitude";
    src: url("../EXTERNAL/FONTS/amplitudewide-ultra.woff");
}

@font-face {
    font-family: "BerlinSans";
    src: url("../EXTERNAL/FONTS/BRLNSR.woff");
}

html {
    margin: 0px;
    padding: 0px;
    overflow-x: hidden;
}

/* Lenis Recommended Root Styles */
html.lenis,
html.lenis body {
  height: auto;
}

.lenis.lenis-smooth {
  scroll-behavior: auto !important;
}

.lenis.lenis-smooth [data-lenis-prevent] {
  overscroll-behavior: contain;
}

.lenis.lenis-stopped {
  overflow: hidden;
}

.lenis.lenis-scrolling iframe {
  pointer-events: none;
}

body {
    font-family: "Vividly", BerlinSans, sans-serif;

    margin: 0px;
    padding: 0px;

    width: 100%;
    overflow-x: hidden;

    font-size: 16px;

    min-height: 100vh;

    background-color: #fff5ee;
}

h1 {
    font-family: "Thesead", Amplitude, sans-serif;
    font-size: 3rem;

    position: relative;
}

a, button {
    transition: transform 100ms;
    font-family: Amplitude;
}



@media (hover: hover) {
    a:hover, button:hover {
        transform: rotate(-3deg);
        transition: transform 100ms;
    }
}


/* * * * * *
    HEADER incl. NAV
*/

#header-wrapper {
    max-width: 100%;
    width: 100%;
    background-color: #f5dfc9;
    padding: 20px 30px;
    box-sizing: border-box;

    overflow-x: hidden;
    display: flex;
    justify-content: space-evenly;
    align-items: center;

    flex-wrap: wrap;

    row-gap: 25px;
}

#header_john {
    padding: 0px 30px;
}

#header {
    box-sizing: border-box;
    display: flex;
    align-items: flex-end;
    flex-direction: column;

    width: 100%;
    max-width: fit-content;

    row-gap: 15px;
}

#header a {
    display: flex;
    align-items: center;
    color: black;
}

#social-row {
    display: flex;
    justify-content: flex-end;
    
    width: 100%;
    gap: 20px;

    width: 95%;
    max-width: 900px;
} #social-row a img {
    height: 20px;

} #social-row a {
    text-decoration: none;
    color: black;
    background-color: #e8c4a0;
    font-family: Amplitude;

    padding: 10px;

    border-radius: 12px;

    border-left: solid 5px black;
    border-bottom: solid 5px black;
    border-right: solid 2px black;
    border-top: solid 2px black;

    text-align: center;
    display: flex;
    justify-content: center;
}

#navbar {
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 1.3rem;

    gap: 10px;
    
    display: flex;
    justify-content: flex-end;
    
    width: 100%;
    max-width: fit-content;

} #navbar a {
    text-decoration: none;
    color: black;
    background-color: #e8c4a0;
    font-family: Amplitude;

    padding: 10px;

    border-radius: 15px;

    border-left: solid 5px black;
    border-bottom: solid 5px black;
    border-right: solid 2px black;
    border-top: solid 2px black;

    text-align: center;
    display: flex;
    justify-content: center;
}


#navbar .disabled {
    pointer-events: none;
    opacity: 0.4;
}

#header-left {
    display: flex;
    width: 100%;

    row-gap: 30px;
}

@media only screen and (max-width: 650px) {

    #header {
        align-items: center;
    }
    #social-row { 
        justify-content: center;
    }

    #navbar {
        flex-wrap: wrap;
    } #navbar a {
        flex-grow: 1;
    }
}

@media only screen and (max-width: 450px) { 
    #social-row {
        width: 100%;
        margin-top: 15px;
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        justify-content: center;
        flex-wrap: wrap;
        gap: 10px
    } 
}

/* * * * * */


/* COPYRIGHT DISCLAIMER */
#copy {
    opacity: 0.4;
}
/* * * * * */


/* * * * * *
    FOOTER
*/
