:root{
    --white: white;
    --black: black;
    --gray: #eeeeee8c;
    --dark-gray: #1d1c1c;
    --yellow: #C17E1F;
    --red: #CE1212;
}

*, *::after, *::before{
    box-sizing: border-box;
}

body{
    margin: 0;
    font-family: "Open Sans", system-ui, "Segoe UI", sans-serif;
    background-color: var(--white);
    color: var(--black);
}

/* navbar */
.navbar{
    background-color: var(--white);
    display: flex;
    justify-content: space-between;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 999;
}

#large-nav-links{
    height: 100vh;
    color: var(--black);
    position: fixed;
    display: none;
    flex-direction: column;
    background-color: var(--white);
    width: 50%;
    top: 0;
    right: 0;
    bottom: 0;
    list-style: none;
}

#large-nav-links .close{
    text-align: end;
}

#large-nav-links .close i{
   
    cursor: pointer;
}

#large-nav-links li {
    padding: 30px 5px 20px;
    color: var(--black);
}

.navbar #mobile-nav-links{
    list-style: none;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    justify-content: flex-start;
    margin: 20px;
    font-size: 25px;
}

.navbar #mobile-nav-links li{
    margin: 15px;
}

h1{
    padding: 7px;
}

.chef-section-content i{
    background-color: var(--red);
    color: var(--white);
    padding: 10px;
    font-size: 14px;
    border-radius: 50%;
    
}

.navbar a{
    text-decoration: none;
    color: var(--black);
}

#mobile-nav-links li i{
    cursor: pointer;
}

/* header */

.header{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin: 150px auto 50px;
    padding:15px ;
    text-align: center;
    overflow: hidden;
}

.header h2{
    font-size: 40px;
    margin: 10px;
}

.header .image{
    width: 100%;
    
}

.header .image:hover{
    width: 100%;
    
}

.header .image img{
    width: 100%;
    
}



.header-content{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.header-btns{
    margin: 20px;
}

.header-btns a{
    color: var(--color);
    text-decoration: none;
    margin: 20px;
    border-radius: 15px;
    padding: 15px;
   
}

.header-btns a.book{
    background-color: var(--red);
    text-decoration: none;
    margin: 10px;
    border-radius: 15px;
    padding: 15px;
    color: var(--white);
}

.header-btns a i{
    padding: 5px;
    font-size: 25px;
    border-left: solid 5px var(--red);
    border-top: solid 5px var(--red);
    border-right: solid 5px RGBa(230, 20, 20, 0);
    border-bottom: solid 5px RGBa(230, 20, 20,0);
    border-radius: 50%;
    margin-right: 7px;
    transform: rotate(315deg);
}

/* chefs */
.chefs{
    padding: 50px 15px ;
    background-color: var(--white);
}

.chefs h3{
    font-size: 50px;
    margin: 0px 0px 40px;
}

.chefs h3 span{
    color: var(--red);
}

.chefs-container{
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    align-content: flex-end;
}
.ext{
    color: var(--gray);
}

.carousel-item h4{
    color: var(--black);
}
.chefs-section{
    padding: 15px;
    margin: auto;
}

.chefs-section>div{
    width: 100%;
    color: var(--dark-gray);
    font-size: 14px;
    background-color: var(--gray);
    border-radius: 7px;
    padding: 15px;
}


.chefs-image-container{
    position: relative;
    overflow: hidden;
}

.chefs-image-container-icons{
    display: flex;
    flex-direction: column;
    background-color: var(--gray);
    color: var(--dark-gray);
    font-size: 16px;
    padding: 20px 15px;
    position: absolute;
    top: 10%;
    right: -100px;
    opacity: 0;
    transition: right 1.5s ease;
}

.chefs-section:hover .chefs-image-container-icons{
    right: 0;
    opacity: 1;
}

.chefs-image-container-icons a{
    color: var(--dark-gray);
    font-size: 19px;
    margin: 7px;
    
}

.chefs-image-container-icons a:hover{
    color: var(--black);    
}

.chef-section-image{
    font-size: 0;
    width: 100%;
}

.chef-section-image img{
    width: 100%;
    border-radius: 7px;
}

.chef-section-content h4{
    font-size: 19px;
    font-weight: 700;
    color: var(--black);
    margin: 15px;
}

/* gallery  */
.gallery{
    text-align: center;
    padding: 50px 15px ;
}

.gallery h3{
    font-size: 50px;
    margin: 0px 0px 40px;
}

.gallery h3 span{
    color: var(--red);
}

.gallery-container{
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

.gallery-section{
    border: 5px solid white;
    position: relative;
    width: 100%;
    margin: auto;
    
}

.gallery-section-image{
    width: 100%;
    font-size: 0;
}

.gallery-section-image img{
    width: 100%;
}

.gallery-section-text{
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    position: absolute;
    top: 100%;
    color: white;
    align-items: center;
    transition: top .5s;
    opacity: 0;
    z-index: -10;
}

.gallery-section-text h4{
    font-size: 24px;
    font-weight: 700;
    margin: 10px auto;
    width: 100%;
}

.gallery-section:hover .gallery-section-text{
    align-items: center;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    z-index: 2;
    opacity: 1;
    background-color: rgba(0,0,0,.7);
}

/* contact  */
.contact{
    text-align: center;
    padding: 50px 15px ;
   
}

.contact h3{
    font-size: 50px;
    margin: 0px 0px 40px;
}

.contact h3 span{
    color: var(--red);
}

.contact-content{
    margin: auto;
    display: flex;
    flex-wrap: wrap;
}

.contact-content>div{
    background-color: var(--gray);
    border: 3px solid white;
    padding: 5px;
    width: 100%;
}

.contact-content-item{
    
    display: flex;
    flex-wrap: wrap;
    padding: 5px;
}

.contact-content-item p, .contact-content-item a{
    margin: 5px auto;
    text-decoration: none;
    color: var(--dark-gray);
}

.contact-content-item span{
    width: 20%;
    align-self: center;
}

.contact-content-item-text{
    width: 80%;
    align-self: center;
    text-align: start;
}

.contact-content-item-text h4{
    margin: 10px auto;
    color: var(--dark-gray);
    font-size: 20px;
    font-weight: 700;
}

.contact-content-item span i{
    background-color: var(--red);
    color: var(--white);
    padding: 15px;
    font-size: 24px;
    border-radius: 50%;
    
}

.contact-content-item-text p>span{
    font-weight: bold;
}

.contact-form{
    background-color: var(--white);
    padding: 18px;
    box-shadow: var(--gray) 2px 2px 2px;
    margin: auto;
}

.contact-form form{
    width: 95%;
    margin: auto;
    display: flex;
    flex-wrap: wrap;
    
}

.contact-form form input, .contact-form form textarea{
    width: 100%;
    font-size: 14px;
    padding: 12px;
    margin: 8px 0;
    border: RGB(125, 125, 125) solid 1px;
} 

.contact-form form textarea{
    resize: both;
} 

.contact-form form button{
    margin: 15px auto;
    padding: 10px 20px;
    font-size: 18px;
    color: var(--white);
    background-color: var(--red);
    border-radius: 25px;
    border: none;
} 

/* footer */
.footer{
    background-color: black;
    color: white;
    padding: 50px 15px ;
}

.main-footer{
    margin: auto;
    text-align: center;

}

#carouselExampleDark button{
    width: 15px;
    height: 15px;
    border-radius: 50%;
}

.carousel-inner img{
    width: 100px;
    height: 100px;
}

div.carousel-caption{
    position: static;
}

div.carousel-indicators{
    position: static;
}



/* small */
@media (min-width: 640px) { 
    .footer-container-contact form>div{
        padding-right: 10px;
        width: 75%;
    }
    .footer-container-contact form button{
        padding: 15px;
        width: 25%;
    }

    .contact-content>div{
        padding: 5px;
        width: 50%;
    }
}

/* medium */
@media (min-width: 768px) { 
    .header{
        flex-direction: row-reverse;
        
    }
    
    .header .image{
        width: 40%;
        
    }
    .header .image:hover{
        width: 40%;
        
    }
    .contact-content>div{
        padding: 12px;
    }

    .gallery .item-1{
        order: 7;
        margin: 0;
    }
    
    .gallery .item-2{
        order: 1;
        margin: 0;
    }

    .gallery .item-3{
        order: 7;
        margin: 0;
    }
    .gallery .item-4{
        order: 1;
        margin: 0;
    }
    .gallery .item-5{
        order: 5;
        margin: 0;
    }
    .gallery .item-6{
        order: 7;
        margin: 0;
    }
    .gallery .item-7{
        order: 5;
        margin: 0;
    }
    .md-50{
        width: 50%;
    }
   
}

/* large */
@media (min-width: 1024px) { 
    .navbar{
        justify-content: space-around;
    }

    #mobile-nav-links{
        order: 2;
    }
    
    .close, .list_icon{
        display: none;
    }

    #large-nav-links{
        height: auto;
        position: relative;
        display: flex;
        flex-direction: row;
        align-items: center;
        justify-content: space-evenly;
        list-style: none;
        padding: 0 15px;
    }
    
    .lg-33{
        width: 33.3333%;
    }
    .lg-50{
        width: 50%;
    }
}

/* x-large */
@media (min-width: 1280px) { 
 
}

/* xx-large */
@media (min-width: 1536px) { 
    
}
    