/*
===============================
Restaurant Style 
===============================
*/

/* @import url('https://fonts.googleapis.coom/css?family=Nunito'); */

:root {
    --red:#ff3838;    
}

* {
    /* margin: 0; padding: 0; */
    box-sizing: border-box;
    outline: none; border: none;
    text-decoration: none;
    transition: all .2s linear;
}

*::selection {
    background: var(--red);
    color: #fff;
}

html {
    font-size: 100%;
}

body {

    direction: rtl;
}


.footer .btn {
    display: inline-block;
    padding: 8px 25px;
    border: 2px solid var(--red);
    color: var(--red);
    cursor: pointer;
    font-size: 17px;
    border-radius: 5px;
    position: relative;
    overflow: hidden;
    z-index: 0;
    margin-top: 10px;
}

.footer .btn::before{
    content: '';
    position: absolute;
    top: 0; right: 0;
    width: 0%;
    height: 100%;
    background: var(--red);
    transition: .3s linear;
    z-index: -1;
}

.btn:hover::before {
    width: 100%;
    left: 0;
}

.btn:hover{
    color: #fff;
}




header {
    font-size: 62.5%;
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: #fff;
    padding: 20px 9%;
    box-shadow: 0 5px  10px rgba(0,0,0,.1);
}

header .logo {
    font-size : 25px;
    font-weight: bolder;
    color: #666;
}

header .logo i {
    padding-left: 5px; /* Direction */
    color: var(--red);
}

header .navbar a{
    font-size: 20px;
    margin-right: 20px; /* Direction */
    color: #666;
    text-decoration: none;
}

header .navbar a:hover {
    color: var(--red);
}

#menu-bar {
    font-size: 30px;
    cursor: pointer;
    color: #666;
    border: 1px solid #666;
    border-radius: 3px;
    padding: 5px 15px;
    display: none;
}








/* Start Home Section  */


section {
    padding: 20px 9%;
}



.home {
    font-family: 'Nunito' ,sans-serif;
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    min-height: 100vh;
    align-items: center;
    /* background: url(../images/02.jpg) no-repeat; */
    background: #fff no-repeat;
    background-size: cover;
    background-position: center;
}

.home .content {
    flex: 1 1 400px;
    padding-top: 65px;
}

.home .image {
    flex: 1 1 400px;
}

.home .image img{
    width: 100%;
    padding: 10px;
    animation: float 3s linear infinite;
}

.btn {
    display: inline-block;
    padding: 8px 30px;
    border: 2px solid var(--red);
    color: var(--red);
    cursor: pointer;
    font-size: 18px;
    border-radius: 5px;
    position: relative;
    overflow: hidden;
    z-index: 0;
    margin-top: 10px;
}

.btn::before{
    content: '';
    position: absolute;
    top: 0; right: 0;
    width: 0%;
    height: 100%;
    background: var(--red);
    transition: .3s linear;
    z-index: -1;
}

.btn:hover::before {
    width: 100%;
    left: 0;
}

.btn:hover{
    color: #fff;
}

/* Start Footer */

/* Start Footer Section  */

.footer {
    background-color: #000;
    text-align: center;
}

.footer .share {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

.footer .credit {
    padding: 25px 10px ;
    color: #fff;
    font-weight: normal;
    font-size: 18px;
}

.footer .credit span {
    color: var(--red);
}

/* End Footer */

@keyframes float {

    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(30px);
    }
    
}

.home .content h3{
    font-size: 35px; /* 50px; */
    color: #333;
}

.home .content p{
    font-size: 15px;
    color: #666;
    line-height: 2.5;
    padding: 10px 0;
}

/* End Home Section  */




/* media queries */
@media(max-width:991px) {
    
    html {
        /* font-size: 55%;  */
    }

    section {
        padding: 20px ;
    }

    
    .footer .credit {
        padding: 20px 8px;
    }

}

@media(max-width:400px) {
    
    html {
        /* font-size: 50%;    */
    }

}









/* media queries */
@media(max-width:991px) {
    
    html {
        /* font-size: 55%;  */
    }

    header {
        padding: 1rem;
    }

}

@media(max-width:768px) {
    
    #menu-bar { 
       display: inline;
    }

    header .navbar {
        position: absolute;
        top: 100%; left: 0; right: 0;
        background: #f7f7f7;
        border-top: 1px solid rgba(0,0,0,.1);
        clip-path: polygon(0 0, 100% 0, 100% 0, 0 0);
    }

    header .navbar.active {
        clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
    }

    header .navbar a {
        margin: 17.6px;
        padding: 13.5px;
        display: block;
        border: 1.75px solid rgba(0,0,0,.1);
        border-right: 4.4px solid var(--red);
        background: #fff;
        width: 100%;
    }

}


@media(max-width:400px) {
 

}
