/*===================================
        FONTS FACE INCLUDES
===================================*/
@font-face {
    font-family: 'Poppins-black';
    src: url(../fonts/Poppins-Black.woff);
}

@font-face {
    font-family: 'Poppins-bold';
    src: url(../fonts/Poppins-Bold.woff);
}

@font-face {
    font-family: 'Poppins-medium';
    src: url(../fonts/Poppins-Medium.woff);
}

@font-face {
    font-family: 'Poppins-regular';
    src: url(../fonts/Poppins-Regular.woff);
}

@font-face {
    font-family: 'Poppins-light';
    src: url(../fonts/Poppins-Light.woff);
}

/*===================================
            GENERAL CONTROLS
===================================*/
:root {
    --font-color-A: #000000;
    --font-color-B: #f5f5f5;
    --font-color-C: #707070;

    --background-color-A: #ffffff;
    --background-color-B: ;

    --base-color-A: #009e9d;
    --base-color-B: #009287;
    --base-color-C: #007671;

    --font-family-A: 'Montserrat', sans-serif;
    --font-family-B: 'Poppins-black', sans-serif;

    --max-width-wrap: 1128px;

    --z-index-popup: 1090;
    --z-index-fixed: 1080;
    --z-index-front: 1070;
    --z-index-back: 1060;
    --z-index-bg: 1050;
}

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

a {
    text-decoration: none;
    color: var(--font-color-A);
}

img {
    max-width: 100%;
    display: block;
}

ul {
    list-style: none;
}

input, 
textarea {
    width: 100%;
    display: block;
    margin: 1em 0;
    padding: .8em 1em;
    border: 1px solid var(--font-color-A);
    border-radius: 5px;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    -ms-border-radius: 5px;
    -o-border-radius: 5px;
}

/*===================================
            HELPPERS
===================================*/
.title {
    font-family: var(--font-family-B);
    color: var(--font-color-A);
    text-transform: uppercase;
    margin-bottom: .5rem;
    margin-top: 3rem;

    position: relative;
}

.title:after {
    content: '';
    width: 40px;
    height: 4px;
    background-color: var(--base-color-C);

    position: absolute;
    top: -15%;
    left: 0;
}

.title-special {
    font-family: var(--font-family-B);
    color: var(--font-color-B);
    text-transform: uppercase;
    margin-bottom: .5rem;
    margin-top: 3rem;

    position: relative;
}

.title-special:after {
    content: '';
    width: 40px;
    height: 4px;
    background-color: var(--font-color-A);

    position: absolute;
    top: -15%;
    left: 0;
}

.sub-title {
    margin-bottom: 1rem;
}

.button {
    display: inline-block;
    width: 100%;
    max-width: 250px;
    padding: 1em 2em;
    margin: 1rem 0;
    background-color: var(--font-color-A);
    color: var(--font-color-B);
    font-weight: bold;
    text-align: center;
    border-radius: 5px;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    -ms-border-radius: 5px;
    -o-border-radius: 5px;
}

.main-wrapper {
    max-width: var(--max-width-wrap);
    margin: 0 auto;

    position: relative;
    z-index: var(--z-index-fixed);
}

.onethird-content {
    width: 33.3333%;
}

.half-content {
    width: 50%;
    padding: 0 1em;
}

.full-content {
    width: 100%;
}

.bold-text {
    font-weight: bold;
    color: var(--base-color-C);
}

.hidden {
    display: none;
}

/*===================================
            GENERAL
===================================*/
html {
    scroll-behavior: smooth;
}

body {
    width: 100%;
    height: 100vh;

    background-color: var(--background-color-A);
    font-family: var(--font-family-A);

    position: relative;
}

/*===================================
                HEADER
===================================*/
.header {
    width: 100%;
    height: 110px;
    background-color: #f5f5f5;
    position: fixed;
    z-index: var(--z-index-popup);
}

.navbar {
    width: 100%;
    padding: 1em 0;

    position: fixed;
    top: 0;
    left: 50%;
    z-index: var(--z-index-fixed);

    transform: translate3d(-50%, 0, 0);
    -webkit-transform: translate3d(-50%, 0, 0);
    -moz-transform: translate3d(-50%, 0, 0);
    -ms-transform: translate3d(-50%, 0, 0);
    -o-transform: translate3d(-50%, 0, 0);
}

.navbar__list {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
}

.navbar__item.logo {
    width: 20%;
    max-width: 250px;
}

.navbar__link {
    font-weight: bold;
    transition: all .2s ease-in-out;
    -webkit-transition: all .2s ease-in-out;
    -moz-transition: all .2s ease-in-out;
    -ms-transition: all .2s ease-in-out;
    -o-transition: all .2s ease-in-out;
}

.navbar__link:hover {
    border-bottom: 3px solid var(--base-color-A);
}

/*===================================
                HOME
===================================*/
.home {
    width: 100%;
    height: 100vh;

    background-image: url(../img/bg-hero.jpg);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;

    position: relative;
    z-index: var(--z-index-back);
}

.home__content {
    text-align: center;
    padding-top: 200px;
}

.home__hello {
    font-size: 3em;
    font-family: var(--font-family-B);
    text-transform: uppercase;
}

/*===================================
            ABOUT US
===================================*/
.about-us {
    background-image: url(../img/bg-services.jpg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;

    padding: 100px 0;

    position: relative;
}

.about-us:after {
    content: '';
    width: 100%;
    height: 100%;
    background-color: var(--base-color-C);
    opacity: .8;

    position: absolute;
    top: 0;
    left: 0;
}

.about-us__content {
    color: var(--font-color-B)
}

/*===================================
            COLLECTION
===================================*/
.collection__wrapper {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
}

/*===================================
            SERVICES
===================================*/
.services {
    background-image: url(../img/bg-workshop.jpg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;

    padding: 100px 0;

    position: relative;
}

.services:after {
    content: '';
    width: 100%;
    height: 100%;
    background-color: var(--base-color-C);
    opacity: .8;

    position: absolute;
    top: 0;
    left: 0;
}

.services__content {
    color: var(--font-color-B);
}

/*===================================
            WORKSHOP
===================================*/
.workshop {
    padding: 100px 0;
}

/*===================================
            SHOP
===================================*/
.shop {
    background-image: url(../img/bg-shop.jpg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;

    padding: 100px 0;
    color: var(--font-color-B);

    position: relative;
}

.shop:after {
    content: '';
    width: 100%;
    height: 100%;
    background-color: var(--base-color-C);
    opacity: .8;

    position: absolute;
    top: 0;
    left: 0;
}

.shop__wrapper {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
}

.shop__img-wrap img {
    width: 70%;
}

/*===================================
            CONTACT
===================================*/
.contact {
    padding: 100px 0;
}
.contact__wrapper {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
}


/*===================================
            FOOTER
===================================*/
.footer {
    background-color: var(--font-color-A);
    color: var(--font-color-B);
    padding: 100px 0;

    position: relative;
}

.footer__wrapper {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
}

.footer__content {
    padding: 0 1em;
}

.footer__link {
    display: block;
    color: var(--font-color-B);
}

.footer__copyright {
    font-size: .8em;
    position: absolute;
    bottom: 2%;
    left: 50%;
    transform: translate3d(-50%, 0, 0);
    -webkit-transform: translate3d(-50%, 0, 0);
    -moz-transform: translate3d(-50%, 0, 0);
    -ms-transform: translate3d(-50%, 0, 0);
    -o-transform: translate3d(-50%, 0, 0);
}

.footer__backlink {
    color: #fff;

}










@media only screen and (max-width: 480px) {
    body {
        overflow-x: hidden;
    }

    .header {
        height: 80px;
    }

    .navbar__list {
        flex-direction: column;
        align-items: center;
    }

    .navbar__item {
        display: none;
    }

    .navbar__item.logo {
        display: block;
        width: 100%;
        max-width: 150px;
        margin: 0 auto;
    }

    .navbar__logo img {
        margin: 0 auto;
    }

    .item {
        display: none;
    }

    .home__content {
        padding: 0 1em;
        padding-top: 150px;
    }

    .home__hello {
        font-size: 2em;
    }

    .home__h1 {
        font-size: 1.2em;
    }

    .about-us__wrapper, 
    .services__wrapper, 
    .workshop__wrapper, 
    .footer__wrapper {
        padding: 0 1em;
    }

    .collection {
        padding-top: 100px;
    }

    .collection__wrapper {
        flex-direction: column;
    }

    .shop__wrapper {
        flex-direction: column;
    }

    .shop__img {
        width: 100%;
    }

    .half-content {
        width: 100%;
    }

    .contact {
        padding: 100px 0;
    }

    .contact__wrapper {
        flex-direction: column;
    }

    .contact__cta-wrap {
        display: flex;
        flex-direction: row;
    }

    .contact__cta {
        margin: 2em .5em;
    }

    .footer__wrapper {
        padding: 1em 1em;
        flex-direction: column;
    }

    .onethird-content {
        width: 100%;
    }

    .footer__content {
        margin: 2em 0;
    }

    .footer__copyright {
        display: block;
        width: 100%;
        text-align: center;
    }

    .footer__logo-wrap img {
        margin: 0 auto;
    }
}