@font-face {
    font-family: Cheddar Jack;
    src: url(cheddar\ jack.ttf);
  }

  @font-face {
    font-family:Bebas Neue;
    src: url(BebasNeue-Regular.ttf);
  }

/* Global Styles */
*,
*::before,
*::after{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html{
    font-size: 10px;
    font-family: "Roboto", sans-serif;
    scroll-behavior: smooth;
}

:root{
    --main-font-color: #cbcb41;
    --main-white: #fff;
    --main-font-dark-gray: #4d4d4d;
    --main-footer-bg-color: #141414;
    --main-font-family: "Cheddar Jack", cursive;
}

section{
    padding: 6rem 0;
}

p{
    text-align: justify;
    line-height: 1.5;
    font-size: 1.8rem;
    font-weight: 300;
    color: var(--main-font-dark-gray);
}

a {
    text-decoration: none;
    color: var(--main-white);
}

/* Reusable classes */
.mb{
    margin-bottom: 5rem;
}

.btn{
    display: inline-block;
    transition: all 650ms;
    border-radius: 3px;
    text-transform: uppercase;
}

.btn-info{
    font-size: 1.2rem;
    padding: 1rem;
    color: var(--main-font-color);
    border-bottom: 2px solid var(--main-font-color);
    margin: 2rem 0 4rem 0;

}

.btn-info:hover{
    background-color: var(--main-font-color);
    color: var(--main-white);
}

.custom-font{
    font-family: var(--main-font-family);
    color: var(--main-font-color);
    font-size: 5.5rem;
    line-height: 1;
    font-weight: 100;
}

.custom-font2{
    font-family: var(--main-font-family);
    color: var(--main-font-color);
    font-size: 10.5rem;
    line-height: 1;
    font-weight: 100;
}

.custom-font-secondary{
    text-transform: uppercase;
    text-align: left;
    letter-spacing: 5px;
    margin-right: -5px;
    font-size: 1.8rem;
    line-height: 2;
    color: var(--main-font-dark-gray);
    /*margin-bottom: 5rem;*/
}

.custom-font-secondary2{
    text-transform: uppercase;
    letter-spacing: 5px;
    margin-right: -5px;
    font-size: 2.5rem;
    line-height: 2;
    color: whitesmoke;
}

.container{
    width: 90%;
    margin: 1rem;
    /*text-align: center;*/
}

.between-sec{
    padding: 25rem 0;
    text-align: center;
}

.between-sec-color{
    color: var(--main-white);
}

/* Header */
header{
    width: 100%;
    height: 25vh;
    background: linear-gradient(to bottom, rgba(0,0,0,.9), transparent), url("images/markus-spiske-qjnAnF0jIGk-unsplash\ \(1\).jpg") bottom no-repeat;
    background-size: cover;
    display: flex;
    flex-direction: column;
    text-align: center;
    /*position:fixed;*/
    position: relative;
}

/* Header - Nav Toggle */
.menu{
    padding: 2rem 2.5rem;
    position: fixed;
    top: 3rem;
    right: 3rem;
    background-color: rgba(0,0,0,.5);
    z-index: 999;
    border-radius: 3px;
    cursor: pointer;
}

.menu .bar,
.menu .bar::before,
.menu .bar::after{
    content: "";
    position: absolute;
    height: 2px;
    width: 4rem;
    background-color: var(--main-white);
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    margin: auto;
    transition: 650ms;
}

.menu .bar::before{
    top: -2rem;
}

.menu .bar::after{
    top: 1.1rem;
}

.active .bar{
    background-color: transparent;
}

.active .bar::before{
    transform: rotate(45deg);
}

.active .bar::after{
    transform: rotate(-45deg)
}

.active .bar::before,
.active .bar::after{
    top: 0;
}

/* Header - Nav */
#logo{
    display: none;
    text-transform: uppercase;
    font-size: 1rem;
    font-weight: 200;
    margin-bottom: -5px;
}

.nav{
    width: 100%;
    height: 6rem;
    line-height: 6rem;
    position: relative;
}

.overlay{
    background-color: rgba(0,0,0,.95);
    position: fixed;
    right: 0;
    left: 0;
    top: 0;
    bottom: 0;
    z-index: 1;
    transition: opacity 650ms;
    transform: scale(0);
    opacity: 0;
}

.overlay.menu-open{
    transform: scale(1);
    opacity: 1;
}

.nav .overlay ul{
    position: relative;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.nav .overlay ul li{
    text-transform: uppercase;
}

.nav .overlay ul li a{
    display: block;
    font-size: 2rem;
    transition: all 650ms;
}

.nav .overlay ul li a:hover,
.nav .overlay ul li a .active:hover{
    color: var(--main-font-color);
}

/* Header - Main Text */
.main-text{
    line-height: 0;
    margin: auto;
    color: var(--main-white);
    user-select: none;
}

.main-text h1{
    font-family: var(--main-font-family);
    color: var(--main-font-color);
    font-size: 8rem;
    font-weight: 100;
    margin-bottom: 5rem;
}

.main-text h2{
    text-transform: uppercase;
    letter-spacing: 5px;
    margin-right: -5px;
    font-size: 2rem;
    line-height: 1;
    position: relative;
}

.main-text h2::before,
.main-text h2::after{
    content: "";
    width: 5rem;
    height: 3px;
    top: 50%;
    transform: translateY(-50%);
    position: absolute;
    background-color: var(--main-white);
    border-radius: 8px;
}

.main-text h2::before{
    left: -6rem;
}

.main-text h2::after{
    right: -6rem;
}

.main-btn{
    font-size: 1.5rem;
    border: 2px solid var(--main-font-color);
    padding: 2rem 2.5rem;
    letter-spacing: 3px;
    margin-right: -3px;
    position: relative;
    margin-top: 3rem;
}

.main-btn:hover{
    transform: translateY(-3px);
    box-shadow: 0 1rem 2rem rgba(0,0,0,.2);
}

.main-btn:active{
    transform: translateY(0);
    box-shadow: none;
}

/* Section - Our Story */
.store{
    width: 100%;
    min-height: 30rem;
    background: url("images/sigmund-AxAPuIRWHGk-unsplash.jpg") center no-repeat;
    background-size: cover;
}

/* Section - Fresh Ingredients */
.fresh-ingredients{
    width: 100%;
    background: linear-gradient(to bottom, rgba(0,0,0,.5), rgba(0,0,0,.5)), url("./images/fotis-fotopoulos-DuHKoV44prg-unsplash\ \(1\).jpg") center no-repeat;
    background-size: cover;
}
.fresh-ingredients2{
    width: 100%;
    background: linear-gradient(to bottom, rgba(0,0,0,.5), rgba(0,0,0,.5)), url("./images/charles-deluvio-AT5vuPoi8vc-unsplash.jpg") center no-repeat;
    background-size: cover;
}

/* Section - Our Menu */
.image-group{
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-gap: 10px;
}

.image-group img{
    width: 100%;
    height: 30rem;
    border: 1px solid black;
}


/* Section - Citrus Goodness */
.citrus-goodness{
    width: 100%;
    background: linear-gradient(to bottom, rgba(0,0,0,.5), rgba(0,0,0,.5)), url("images/julian-hochgesang-psGV5KhidlY-unsplash.jpg") center no-repeat;
    background-size: cover;
}

/* Section - Contact Us */
.contact-us{
    width: 100%;
    min-width: 9rem;
    margin-top: 5rem; 
}

.input,
.text-area{
    width: 100%;
    max-width: 100%;
    margin: 5px 0;
    padding: 5px 1rem;
    border-radius: 3px;
    font-size: 1.5rem;
    border: 1px solid var(--main-font-color);
    color: #878787;
}

.input::placeholder,
.text-area::placeholder{
    color: #878787;
}

.text-area{
    height: 10rem;
}

.btn-submit{
    background-color: var(--main-font-color);
    color: var(--main-white);
    width: 100%;
    padding: 1rem 0;
    cursor: pointer;
    border: #141414;
}

.btn-submit:hover{
    background-color: #e1aa2f;
}

/* Footer */
footer{
    width: 100%;
    display: flex;
    justify-content: center;
    text-align: center;
    background-color: var(--main-footer-bg-color);
    padding: 2rem s;
    font-size: 1.5rem;
    color: var(--main-white);
    padding-top: 10px;
    
    background: linear-gradient(to bottom, rgba(0,0,0,.9), transparent), url("images/markus-spiske-qjnAnF0jIGk-unsplash\ \(1\).jpg") bottom no-repeat;    
}

footer p{
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color:  #cbcb41;
    font-weight: 100;
    font-family: "Bebas Neue", sans-serif;
}
footer ul,i{

    color:  #cbcb41;
    display: flex;
    padding-left: 30px;
    height: 2rem;
   
}

/* Media Queries */
@media screen and (min-width: 769px) {
    header,
    .between-sec{
        background-attachment: fixed;
    }

    .menu{
        display: none;
    }

    .nav{
        display: flex;
        padding: 2rem 10rem 0;
        justify-content: space-between;
    }

    #logo{
        display: block;
    }

    .nav .overlay{
        position: initial;
        background: none;
        opacity: initial;
        transform: initial;
    }

    .nav .overlay ul{
        flex-direction: row;
        list-style: none;
        margin-top: 2px;
    }

    .nav .overlay ul li a{
        font-size: 1.5rem;
        letter-spacing: 1px;
        margin-right: -1px;
        padding: 0 2rem;
    }

    .container{
        display: flex;
        flex-direction: row;
        align-items: flex-start;
    }

    .center{
        flex: 1;
    }

    .add-flex{
        flex: 1;
    }

    .add-padding-right{
        padding-right: 10rem;
    }

    .first{
        order: 1;
    }

    .second{
        order: 2;
    }

    .store{
        min-height: 40rem;
    }

    .btn-info{
        font-size: 1.8rem;
    }

    .main-text h1{
         transform: translateY(4rem);
         opacity: 0;
         animation: .5s fadeUp .5s forwards;
    }

    .main-text h2{
        transform: scale(2);
        opacity: 0;
        animation: fadeIn .5s forwards;
    }

    .main-text .main-btn{
        opacity: 0;
        animation: .5s fade 1s forwards;
    }

    @keyframes fadeIn {
        0%{
            transform: scale(2); 
            opacity: 0;
        }
        100%{
            transform: scale(1);
            opacity: 1;
        }
    }

    @keyframes fadeUp {
        0%{
            transform: translateY(4rem); 
            opacity: 0;
        }
        100%{
            transform: translateY(0);
            opacity: 1;
        }
    }

    @keyframes fade {
        0%{
            opacity: 0;
        }
        100%{
            opacity: 1;
        }
    }
    
    #menufixo {
      font-size: 1.5rem; 
      text-align: left;
      /*left:auto;*/
      /*top: 10;*/
      /*width: 50em;*/
      margin: 2rem;
    }    

}