@import url('https://fonts.googleapis.com/css2?family=Source+Sans+Pro&display=swap');

:root {
    --black: ##1A1A1A;
    --gray: #4d4d4d;
    --main-color: #ffd100;
    --light-one: #fdf2be;
    --light-two: #f9fafb;
    --light-three: #f6f7fb;
    --box-shadow3: inset 0 0 1.5rem rgba(0, 0, 0, .1);
    --box-shadow: 0 0 1.5rem rgba(0, 0, 0, .1);
    --box-shadow2: inset 0 0 3rem rgba(0, 0, 0, 1);
}

* {
    font-family: 'Source Sans Pro', sans-serif;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    text-decoration: none;

    text-transform: capitalize;
    transition: all .2s linear;
}

html {
    font-size: 62.5%;
    overflow-x: hidden;
    scroll-padding-top: 5.5rem;
    scroll-behavior: smooth;
}

.sub-heading {
    text-align: center;
    color: var(--light-one);
    font-size: 2rem;
    padding-top: 1rem;
    text-transform: uppercase;
}

.heading {
    text-align: center;
    color: var(--main-color);
    font-size: 3rem;
    padding-bottom: 2rem;
    text-transform: uppercase;
}

.btn {
    margin-top: 1rem;
    display: inline-block;
    font-size: 1.7rem;
    color: var(--black);
    background: var(--main-color);
    border-radius: 20rem;
    cursor: pointer;
    padding: .8rem 3rem;
    transition: 0.7s;
    font-weight: 600;
    text-align: center;
    border: none;
}

.btn:hover {
    transform: scale(1.1);
}

header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: black;

    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    box-shadow: var(--box-shadow);
}
header nav{
    padding: 1.5rem 2rem;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
header img {
    max-width: 100px;
}

header .navbar a {
    font-size: 2rem;
    border-radius: 20rem;
    padding: .5rem 1.5rem;
    color: var(--light-one);
}

header .navbar a.active,
header .navbar a:hover {
    color: var(--main-color);
    background: var(--red);
}

.icons {

    width: fit-content;
    display: flex;
    justify-content: center;
    align-items:center;
   right: 0;
}


header .icons a {
/* position: relative; */
    cursor: pointer;
    margin: 0.5rem;
    text-align: center;
    font-size: 2rem;
    color: var(--light-one);
}
nav.open .navbar {
    transform: translateX(0);
  }
.hamburger-menu {

    cursor: pointer;
    display: none;
    justify-content: flex-end;
    align-items: center;
}
.hamburger-menu a {
    font-size: 1.7rem;
    color: var(--light-one)
}

.cart-counter {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}
.sign{
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

header .icons .counter {

    position: absolute;
    margin-bottom: 0.3rem;
    top: 0;
    left: 0;
    width: 15px;
    height: 15px;
    background-color: #ea4335;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
}

header .icons .counter p {
    color: var(--light-three);
    font-size: 10px;
    font-weight: 600;
    text-align: center;

}


header .icons i:hover,
header .icons a:hover {
    color: var(--main-color);
    /* background: var(--main-color); */
    transform: rotate(360deg);
}

/** LOGOUT Icone **/
header .icons .logout {
    display: none;
}

/** to show username if loged in make it display:flex **/
header .icons .username {
    display: none;
  }

/*******/


section {
    position: relative;
    width: 100%;
    height: 100vh;


}



.home {
    position: relative;
    z-index: 5;
    width: 100%;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
    background-image: url(../img/bg3.jpeg) ;
    background-size: cover;
    flex-direction: column;
}

.home .layer {
    position: relative;
    width: 100%;
    height: 97rem;
    background-color: #1a1a1aa2;
    background-size: cover;
    background-attachment: fixed;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    flex-direction: column;

}

.content {
    margin-bottom: 10rem;
}

.home .layer .content h5 {
    color: var(--light-three);
    font-size: 32px;
    font-weight: lighter;
    text-align: center;
}

.home .layer .content h3 {
    color: var(--main-color);
    font-size: 8rem;
    text-align: center;
}

.home .layer .content p {
    color: var(--light-three);
    font-size: 2.5rem;
    padding: .5rem 0;
    line-height: 1.5;
    text-align: center;
}

.look {
    margin-bottom: 8rem;
    position: relative;
    display: flex;
    justify-content: center;
    align-content: center;
}

.home .look h2 {
    margin: 4rem;
    color: var(--light-three);
    font-size: 32px;
    font-weight: lighter;
}

.arrow {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.arrow span {
    display: block;
    width: 30px;
    height: 30px;

    border: 5px solid var(--black);
    transform: rotate(45deg);
    margin: -10px;
    animation: scroll1 1s infinite;
}

.arrow span:nth-child(1) {
    animation-delay: -.7s;
}

.arrow span:nth-child(2) {
    animation-delay: -.6s;
}

@keyframes scroll1 {
    0% {
        opacity: 0.2;
        transform: rotate(45deg);
        border-bottom: 5px solid var(--main-color);
        ;
        border-right: 5px solid var(--main-color);
        border-top: 5px solid #08080800;
        border-left: 5px solid #08080800;
    }

    50% {
        opacity: 0.7;
        transform: rotate(45deg);
        border-bottom: 5px solid var(--main-color);
        ;
        border-right: 5px solid var(--main-color);
        border-top: 5px solid #08080800;
        border-left: 5px solid #08080800;
    }

    100% {
        opacity: 1;
        transform: rotate(45deg);
        border-top: 5px solid #08080800;
        border-left: 5px solid #08080800;
    }

}

.filter {
    width: 100%;
    height: fit-content;
    padding: 1rem;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    box-shadow: var(--box-shadow);
    margin-bottom: 2rem;
}

.filter-btn {

    background-color: transparent;
    margin: 0.45rem 1rem;
    padding: 0.85rem 1.8rem;
    color: var(--black);
    text-transform: uppercase;
    font-weight: 600;
    font-size: 2rem;
    line-height: 1;
    cursor: pointer;
    border: var(--black);
    /* outline:#080808; */
    border-radius: 1rem;
    transition: 0.3s;

}

.filter-btn.active {
    background-color: var(--main-color);
    color: var(--light-two);
}

.filter-btn:hover {
    color: var(--gray)
}

.menu {
    padding-bottom: 4rem;
    align-content: flex-start;
    height: fit-content;

}

.menu-wrapper {

    margin: 0 3rem;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
}

.menu-item {

    width: 100%;
    max-width: 290px;
    height: 500px;
    background-color: #1A1A1A;
    box-shadow: var(--box-shadow2);
    border-radius: 10px;
    display: flex;
    align-items: center;
    flex-direction: column;
    text-align: center;
    padding: 2rem 2rem;
    overflow: hidden;
    margin: 1rem 0.8rem;
    flex-wrap: wrap;

}

.menu-item .dish-img {
    max-width: 250px;
    margin-bottom: 1rem;
}

.menu-item .dish-name {
    color: var(--main-color);
    font-size: 2.5rem;
    text-align: center;
    margin: 0.5rem 0;
    font-weight: 600;
}

.menu-item .dish-description {
    color: var(--light-three);
    font-size: 2rem;
    text-align: left;
    text-align: center;
    margin: 2rem 0;
    font-weight: 100;

}

/*****************************/

/* about */

.about {
    background-color: var(--light-two);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 8rem;
    box-shadow: var(--box-shadow3);
    height: 100vh;
    min-height: fit-content;
}

.about img {
    max-width: 50%;
    margin: 0 3rem;
    box-shadow: var(--box-shadow);
}


.about-info h3 {
    color: var(--main-color);
    font-size: 2.5rem;
    text-align: left;
    margin: 0.5rem 0;
    font-weight: 600;


}

.about-info p {
    color: var(--black);
    font-size: 2rem;
    text-align: left;

    margin: 0.5rem 0;
    font-weight: 100;

}


/***************************/
/* Contact */

.contact {
    position: relative;
    width: 100%;
    padding: 13.5rem 0 8.5rem;
    /* background-color: var(--light-one) ; */
    display: flex;
    justify-content: center;
    align-items: center;
}

.contact-box {
    width: 90%;
    background-color: white;
    border-radius: 10px;
    padding: 5.5rem 4.5rem;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    display: flex;
    justify-content: space-around;
    align-items: center;
    box-shadow: var(--box-shadow);



}

.map {
    padding: 0 2rem;
    border-radius: 10px;
}
iframe {
    width: 400px;
    height: 400px;
}

.contact-form {
    padding-left: 2rem;
    width: 50%;
    flex-direction: column;
    display: flex;
    justify-content: center;


}


.contact .title {
    margin: 0;
    font-size: 32px;
    color: var(--main-color);
}

.contact-form .row {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(130px, 1fr));
    grid-column-gap: 0.6rem;
}

.contact-input {
    padding: 1.2rem 2.1rem;
    margin: 0.6rem 0;
    border: none;
    outline: none;
    background: #f3f3f3;
    border-radius: 10px;
    font-weight: 600;
    font-size: 1.25rem;
    transition: 0.3s;
    font-size: 18px;
}

.contact-input::placeholder {
    font-weight: 400;
    font-size: 18px;
}

.contact-input.textarea {
    resize: none;
    min-height: 280px;
    border-radius: 10px;
    font-size: 18px;
}

.contact-input:hover {
    background: #ececec;
}

.contact-input:focus {
    background: #eaeaea;
}

.contact-input .btn {
    width: 75%;
    margin-top: 0.6rem;
    padding: 0 5rem;
}




/************/

/*footer**/
.footer {
    background-color: #222;
    padding: 4rem 0;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;


}

.bottom-footer {
    width: fit-content;
    margin: 0 5rem 2rem 5rem;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
}

.copyright .text {
    color: #7b7b7b;
    font-size: 1.5rem;
    display: inline-block;
    text-align: center;
}

.copyright .text a {
    color: #a09e9e;
    cursor: pointer;
}

.followme-wrap {
    display: flex;
    align-items: center;
    justify-content: center;
}

.followme {
    display: flex;
    align-items: center;
    justify-content: center;

}

.followme h3 {
    color: var(--light-three);
    font-weight: 500;
    font-size: 2rem;
    margin: 0 1rem;
    text-align: center;
}


.social-media a {
    color: #7b7b7b;
    font-size: 2rem;
    margin-right: 0.4rem;
    transition: 0.3s;
}

.social-media a:hover {
    color: var(--main-color);
}

.delivery {
    display: flex;
    align-items: center;
    justify-content: center;

}

.delivery h3 {
    color: var(--light-three);
    font-weight: 500;
    font-size: 2rem;



}

.delivery-apps {

    display: flex;
    align-items: center;
    justify-content: space-between;
}

.delivery-apps img {
    width: 30px;
    margin: 0 1rem;
    filter: grayscale(100%);

}

.delivery-apps img:hover {

    filter: grayscale(0%);

}

/***** MODAL *****/

.popup-overlay {
    position: fixed;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 100vh;
    z-index: 888;
    background: rgba(0, 0, 0, 0.9);
    display: none;
}

.popup {
    position: fixed;
    top: -150%;
    left: 50%;
    transform: translate(-50%, -50%) scale(1.15);
    width: 500px;
    height: 440px;
    background: #f5f5f5;
    z-index: 2;
    opacity: 0;
    box-shadow: 5px 5px 3px rgba(0, 0, 0, 0.2);
    transition: transform 300ms ease-in-out, opacity 300ms ease-in-out;
    z-index: 9999;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

body.showLoginForm .popup-overlay {
    display: block;
}

body.showLoginForm .popup {
    top: 50%;
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
}


.popup .popup-close {
    position: absolute;
    top: -10px;
    right: -10px;
    width: 40px;
    height: 40px;
    background: #555;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
}

.popup-close p {
    color: #f5f5f5;
    font-size: 25px;
    font-weight: 600;
    text-align: center;
}

.element a {
    font-size: 14px;
    margin-left: 2rem;

}

.popup .form .header {
    text-align: center;
    font-size: 20px;
    font-weight: 600;
    color: #222;
    margin: 20px 0px;
}

.popup .form .element {
    padding: 1rem 3rem;
    margin-bottom: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
 
}
.popup .form .element a{
   cursor: pointer;
}

.popup .form .facebook {
    width: 300px;
    border-radius: 10px;
    font-size: 18px;
    color: var(--light-two);
    background-color: #1877f2;
    cursor: pointer;
}

.popup .form .google {

    width: 300px;
    border-radius: 10px;
    font-size: 18px;
    color: var(--light-two);
    cursor: pointer;
    background-color: #ea4335;
}

.popup .form i {
    margin-left: 1.5rem;
    font-size: 1.7rem;
    color: var(--light-three);

}

