/* WEB FONTS */
@font-face {
    font-family: 'Lugate';
    src:url('fonts/Lugate.ttf.woff') format('woff'), url('fonts/Lugate.ttf.svg#Lugate') format('svg'), url('fonts/Lugate.ttf.eot'), url('fonts/Lugate.ttf.eot?#iefix') format('embedded-opentype'); 
    font-weight: normal;
    font-style: normal;
}
@font-face {
    font-family: 'Montserrat-Medium';
    src:url('fonts/Montserrat-Medium.ttf.woff') format('woff'), url('fonts/Montserrat-Medium.ttf.svg#Montserrat-Medium') format('svg'), url('fonts/Montserrat-Medium.ttf.eot'), url('fonts/Montserrat-Medium.ttf.eot?#iefix') format('embedded-opentype'); 
    font-weight: normal;
    font-style: normal;
}
@font-face {
    font-family: 'Montserrat-Bold';
    src:url('fonts/Montserrat-Bold.ttf.woff') format('woff'), url('fonts/Montserrat-Bold.ttf.svg#Montserrat-Bold') format('svg'), url('fonts/Montserrat-Bold.ttf.eot'), url('fonts/Montserrat-Bold.ttf.eot?#iefix') format('embedded-opentype'); 
    font-weight: normal;
    font-style: normal;
}
@font-face {
    font-family: 'Montserrat-SemiBold';
    src:url('fonts/Montserrat-SemiBold.ttf.woff') format('woff'), url('fonts/Montserrat-SemiBold.ttf.svg#Montserrat-SemiBold') format('svg'), url('fonts/Montserrat-SemiBold.ttf.eot'), url('fonts/Montserrat-SemiBold.ttf.eot?#iefix') format('embedded-opentype'); 
    font-weight: normal;
    font-style: normal;
}

/* SETTING VARIABLES */
:root {
    --color-BG: #4d4d4d;
    --color-01: #ffff00;
    --color-02: #ff7bac;
    --color-03: #faf3d7;
}

/* SETTING ROOT EM */
html {
    font-size: 62.5%;
}

/* SETTING BG */
body {
    background-color: var(--color-BG);
}

/* CONTENT WRAPPER CLASS */
.wrapper {
    width: 900px;
    margin: 0 auto;
}

/* FOR PRELOADING IMAGES */
body:after {
    position: absolute;
    width: 0;
    height: 0;
    overflow: hidden;
    z-index: -1;
    content: url(../img/logo.png);
}

/* DEFAULT ELEMENT STYLING */
h1{
    font-family: 'Lugate';
    font-size: 2.8rem;
    line-height: 3.2rem;
    color: var(--color-03);
}

h2{
    font-size: 2.6rem;
    line-height: 3.2rem;
    color: var(--color-03);
    font-family: 'Montserrat-Bold';
}

h3{
    font-size: 2rem;
    line-height: 2.6rem;
    color: var(--color-03);
    font-family: 'Montserrat-Bold';
}

P{
    font-family: 'Montserrat-SemiBold';
    font-size: 1.4rem;
    line-height: 2.2rem;
    color: var(--color-03);
}

a {
    cursor: pointer;
    font-family: 'Montserrat-SemiBold';
    font-size: 1.4rem;
    line-height: 2.2rem;
    color: var(--color-03);
}

.pink {
    display: inline;
    color: var(--color-02);
}


/* MAIN */

header {
    width: 100%;
    min-height: 340px;
    background-color: var(--color-BG);
    display: flex;
    align-items: center;
}

.header-main {}

.header-main-flex {
    display: flex;
    flex-wrap: wrap;
    margin: 30vh auto 15vh auto;
}

.header-main-logo {
    width: 20%;
    align-content: center;
}

.header-main-text {
    width: 80%;
    text-align: left;
    align-content: center;
    padding-left: 8%;
}

.header-main-text h1 {
    color: var(--color-01);
    font-size: 4rem;
    line-height: 4.6rem;
}

header p {
    font-family: 'Montserrat-Bold';
    font-size: 2rem;
    line-height: 2.6rem;
}

header a {
    font-size: 1.6rem;
    font-weight: bold;
    color: var(--color-01);
}

header a:hover {
    color: var(--color-01-hover);
}

/* SHOP SECTION */

.elements {
    width: 100%;
    height: fit-content;
    background-color: var(--color-BG);
    display: flex;
    justify-content: center;
    align-items: center;
    column-gap: 200px;
    border-bottom: 4px solid var(--color-01);
}

.elements-flex {
    display: flex;
    flex-wrap: wrap;
}

.elements-flex h1 {
    color: var(--color-01);
    font-size: 8rem;
    line-height: 9rem;
    margin: 0 auto;
    padding-bottom: 30vh;;
}

/* FOOTER */

.footer-main {
    width: 100%;
    padding: 60px 0 60px 0;
    background-color: #808080;
    text-align: center;
    justify-content: center;
}

footer h3 {
    font-family: Tahoma;
    font-weight: bold;
    font-size: 2rem;
    color: #000;
    display: block;
    justify-content: center;
}

footer p {
    font-family: Tahoma;
    font-weight: bold;
    font-size: 1.4rem;
    line-height: 2rem;
    color: #000;
}

footer a {
    font-family: Tahoma;
    font-weight: bold;
    font-size: 1.4rem;
    line-height: 2rem;
    color: #333333;
}

footer a:hover {
    color: var(--color-02);
}

.footer-links {
    margin: 20px;
    display: block;
    justify-content: center;
}

.footer-links img {
    margin: 0 15px;
    transition: filter ease-in-out 80ms;
}

.footer-links img:hover {
    filter: drop-shadow(0 0 8px #505050);
}

.footer-text {
    display: block;
    justify-content: center;
}


/* ADAPTIVE STYLING */
/* STYLE BREAK POINTS - (MAX 600PX) (MIN 601PX MAX 916PX) (MIN 917) */

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

    .wrapper {
        width: 90vw;
        margin: 0 auto;
    }

    .header-main-logo {
    width: 25%;
    align-content: center;
    }

    .header-main-text {
    width: 75%;
    }

    .header-main-text h1 {
        font-size: 2.4rem;
        line-height: 2.8rem;
    }

    header p {
        font-size: 1.2rem;
        line-height: 1.5rem;
    }

    .elements-products {
        width: 90vw;
        margin-right: 0;
    }

    .elements-sidebar {
    width: 100%;
    }

    .footer-links img {
    margin: 10px 10px;
    transition: filter ease-in-out 80ms;
    }

}

@media only screen and (min-width: 601px) and (max-width: 916px) {
    
    .wrapper {
        width: 90vw;
        margin: 0 auto;
    }

    .header-main-logo {
    width: 25%;
    align-content: center;
    }

    .header-main-text {
    width: 75%;
    }

    .header-main-text h1 {
        font-size: 3.2rem;
        line-height: 3.8rem;
    }

    header p {
        font-size: 1.6rem;
        line-height: 2rem;
    }

    .elements-products {
        width: 100%;
        margin-right: 0;
    }

    .elements-sidebar {
    width: 100%;
    margin-bottom: 20px;
    }

}


@media only screen and (min-width: 917px) {

}