/* ------------------------------ COLOR PALETTE ----------------------------- */

:root {
    --primary-col: #222222;
    --light-primary-col: #4b4b4b;
    --lighter-primary-col: #838383;
    --white: #ffffff;
    --secondary-col: #64792a;
    --light-col: #fff;
    --lighter-col: #A8C15C;
    --accent-col: #a26243;
    --header-layer: rgba(0, 0, 0, .6);
    --transparent: rgba(0, 0, 0, 0);
    --default-bg: #000;
    --header-text-col: #fff;
}

@font-face {
    font-family: CinzelDecorative;
    src: url("../fonts/CinzelDecorative/CinzelDecorative-Regular.ttf") format("truetype");
    font-weight: regular;
}

@font-face {
    font-family: Cinzel;
    src: url(../fonts/Cinzel/Cinzel-VariableFont_wght.ttf) format("truetype");
}

/* https://coolors.co/222222-ffffff-64792a-708830-A8C15C-a26243 */

/* --------------------------------- GENERAL -------------------------------- */

body, html {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
    font-size: 1em;
    font-weight: 400;
    line-height: 1.5;
    color: #fff;
    text-align: justify;
    position: relative;
    background-blend-mode: color;
    background-color: #000;
    width: 100%;
    height: 100%;
    background: #fff;
    -webkit-hyphens: auto;
    -moz-hyphens: auto;
    -ms-hyphens: auto;
    hyphens: auto;
    text-align: justify;
}

.primary-text {
    color: var(--primary-col);
    margin-bottom: 22px;
}

.secondary-text {
    color: var(--secondary-col);
    margin-bottom: 18px;
}

.light-text{
    color: var(--light-col);
    margin-bottom: 12px;
}

.light-link {
    color: var(--lighter-primary-col);
    margin-bottom: 12px;
    width: fit-content;
}

.light-link:hover,
.light-link:active {
    color: var(--light-primary-col);
    text-decoration: none;
}

.accent-text {
    color: var(--accent-col)
}

.primary-btn {
    color: var(--light-primary-col);
    background: var(--lighter-col);
    border: 2px none var(--lighter-primary-col);
    border-radius: 25px;
    padding: 7.5px;
    box-shadow: 2px 3px 2px var(--light-col);
    margin-top: 20px;
    width: 100%;
    transition: all .3s ease-out;
    font-family: 'Comfortaa', cursive;
}

.primary-btn:hover {
    box-shadow: 2.5px 3.5px 2px var(--light-col);

}

.primary-btn:focus {
    outline: none;

}

.primary-btn:active {
    box-shadow: .5px 1px 2px var(--light-col);
    box-shadow: inset 1px 2px 2px var(--light-col);
    outline: none;

}


.brand-name {
    font-family: 'Cinzel';
}


.blur {
    -webkit-filter: blur(5px);
    -moz-filter: blur(5px);
    -o-filter: blur(5px);
    -ms-filter: blur(5px);
    filter: blur(5px);
    transition: all .3s ease-out;
}

#focusNavDiv {
    background: rgba(0, 0, 0, .6);
    height: 100%;
    width: 100%;
    transition: visibility 0.2s, opacity 0.3s linear;
    visibility: hidden;
}


/* ---------------------------------- GRIDS --------------------------------- */


.main-grid {
    display: grid;
    grid-template-columns: 
        [left-puffer] 5% 
        [content] auto 
        [right-puffer] 5% 
        [end];
    grid-template-rows:
        [top-puffer] 4em 
        [content1] auto 
        [puffer] 4em 
        [content2] auto 
        [bottom-puffer] 4em
        [last-line];
}


.grid-frame {
    padding: 5px;
}


.sectionTitle,
.graphic {
    position: relative;
    display: table;
    width: 100%;
    display: grid;
    margin: auto;
    grid-column: content / right-puffer;
    grid-row: content1 / puffer;
}

.graphic-a {
}

.graphic-b {
}

.sectionContent,
.description {
    position: relative;
    display: table;
    width: 100%;
    display: grid;
    margin: auto;
    grid-column: content / right-puffer;
    grid-row: content2 / bottom-puffer;
}

.description-a {
}

.description-b {
}



@media (min-width: 992px) {
    .main-grid {
        display: grid;
        grid-template-columns: 
            [left-puffer] 0% 
            [content1] 32%
            [puffer] 20%
            [content2] 48% 
            [right-puffer] 0% 
            [end];
        grid-template-rows:
            [top-puffer] 1em 
            [content] 45em 
            [bottom-puffer] 1em
            [last-line];
        flex-direction: column;
        justify-content: center;
    }

    .section-b .main-grid {
        grid-template-columns: 
            [left-puffer] 0% 
            [content1] 48%
            [puffer] 20%
            [content2] 32% 
            [right-puffer] 0% 
            [end];
        
    }

    .graphic .header-img {
        width: 100%;
        margin: none !important;
    }

    .section-b .description,
    .section-a .graphic,
    .section-b .sectionTitle {
        grid-column: content1 / puffer;
        grid-row: content / bottom-puffer;
        /* background-color: #f0f; */
    }
    .section-a .description,
    .section-b .graphic
    .section-b .sectionContent {
        grid-column: content2 / right-puffer;
        grid-row: content / bottom-puffer;
    }
    
    .primary-btn {
        padding: 10px 25px;
        width: auto;
    }

}




/* --------------------------------- NAVBAR --------------------------------- */


#navbar {
    background: transparent;
    transition: all .25s ease-in;
}

#navbar a,
#navbar span,
#navbar li a {
    color: var(--ligth-col);
}

.navbar-toggler {
    outline: none !important;
    color: var(--primary-col);
}

.navbar-shadow {
    box-shadow: 0 0 5px rgba(0, 0, 0, .4);
}

.transitionslow {
    transition: all .2s ease-out;
}



/* --------------------------------- HEADER --------------------------------- */

#bgVideo {
    position: fixed;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

#intro {
    background: var(--header-layer);
    min-height: 100%;
    position: relative;
}


#intro div.container {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translateX(-50%) translateY(-50%);
    text-align: center;
}



#intro .brand-name {
    color: var(--light-col) !important;
}

/*TODO adjust if text or font changes*/

#intro h1.brand-name  {
    font-size: 2.8em;
}
#intro h5.brand-name  {
    font-size: 1.5em;
}

@media (min-width: 320px) {
    #intro h1.brand-name  {
        font-size: 3.3em;
    }
    #intro h5.brand-name  {
        font-size: 1.4em;
    }
}

@media (min-width: 576px) {
    #intro h1.brand-name  {
        font-size: 3.5em;
    }
    #intro h5.brand-name  {
        font-size: 1.8em;
    }
}

@media (min-width: 768px) {
    #intro h1.brand-name  {
        font-size: 3.9em;
    }
    #intro h5.brand-name  {
        font-size: 1.5em;
    }
    @media (min-height: 768px){
        #intro h1.brand-name  {
            font-size: 6em;
        }
        #intro h5.brand-name  {
            font-size: 2.2em;
        }
    }
}

@media (min-width: 992px) {
    #intro h1.brand-name  {
        font-size: 5.5em;
    }
    #intro h5.brand-name  {
        font-size: 1.8em;
    }
}
@media (min-width: 1200px) { 
    #intro h1.brand-name  {
        font-size: 5.9em;
    }
    #intro h5.brand-name  {
        font-size: 2em;
    }
}


/* -------------------------------- SECTIONS -------------------------------- */

section {
    height: auto;
    position: relative;
}

.section-a {
    background: #fff;
}

.section-b {
    background: #f0f0f0;
    transition: top 0.3s;
    box-shadow: inset 0 0 5px rgba(0, 0, 0, .4);
}


.product-img {
    width: 100% !important;
}

/* --------------------------------- CONTACT -------------------------------- */


.contactFormInput {
    width: 100%;
    margin: 5px 0;
}


.contactFormMessage { /* TODO automatically increase height when more lines of text are entered */
    height: auto;
    min-height: 6em;
}

#contactFormSubmit {
    display: none;
}

#g-recaptcha-field {
    text-align: center;
}

.g-recaptcha {
    display: inline-block;
}

/* --------------------------------- FOOTER --------------------------------- */

footer {
    background: #fff;
    padding: .8em 5px;
    color: var(--light-primary-col);
}



/* ---------------------------------- LEGAL --------------------------------- */

.legal-rows {
    grid-template-rows:
        [top-puffer] 2em 
        [content] auto 
        [bottom-puffer] 2em
        [last-line];
}


.legal-content {
    grid-row: content / bottom-puffer;
}


.legal-rows .primary-text {
    margin-bottom: -13px !important;
}