body{
    font-family: monospace;
}

.navbar-nav a{
    font-size: 18px;
    font-weight: 700;
    text-transform: uppercase;
}
.navbar{
    background: #FF6C22;
}
.navbar .navbar-brand{
    font-size: 30px;
    font-weight: 700;

}
.navbar-nav .nav-item{
    margin: 0 13px;
}
.navbar-nav .nav-link:hover{
    color: yellow;
    font-size: 25px;
}

.carousel-item{
    height: 100vh;
    min-width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}
.bg-1{
    background-image: url(../images/ezgif.com-gif-maker.png);
    background-position: center;
    background-size: cover;
}
.bg-2{
    background-image: url(../images/Shawarma.jpg);
    background-position: center;
    background-size: cover;
}
.bg-3{
    background-image: url(../images/ugali.jpg);
    background-position: center;
    background-size: cover;
}
.carousel-caption{
    z-index: 2;
    text-align: center;
    position: absolute;
}
.carousel-inner::before{
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background: rgba(0, 0, 0, 0.4);
    z-index: 1;
}
.carousel-item h5{
    font-size: 4vw;
    font-weight: 900;
    letter-spacing: 2px;
    text-transform: uppercase;
}
.carousel-caption a{
    padding: 5px 17px;
    border-radius: 50px;
    font-size: 2vw;
    font-family: fantasy;
    letter-spacing: 1px;
    text-decoration: none;
    background-color: red;
    color: black;
}
.carousel-caption a:hover{
    background: orange;
}

@media screen and (max-width:768px) {
    .carousel-item h5 {
        font-size: 6vw;
    }
    .carousel-caption a {
        font-size: 3vw;
    }
    
}

#about{
    margin-top: 25px;
}

/* cart styling */
.cart-info {
    display: flex;
    align-items: center;

}
.totalQuantity{
    margin-left: -5px;
    margin-top: -20px;
    right: 405px;
    color: red; 
    padding: 4px 8px;
    font-size: 25px;
}
/* end of cart styling */

.menu {
    padding: 0 10px 30px 10px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    grid-gap:20px 40px;
    max-width: 1200px;
    margin: 0 auto;
}
.heading {
    background: orange;
    color: #fff;
    margin-bottom: 30px;
    padding: 30px 0;
    grid-column: 1/-1;
    text-align: center;
    margin-bottom: 2px;
}
.heading>h1{
    font-weight: 400;
    font-size: 32px;
    letter-spacing: 10px;
    margin-bottom: 10px;
    text-transform: uppercase;
}
.heading>h3{
    font-weight: 600;
    font-size: 22px;
    letter-spacing: 5px;
    text-transform: uppercase;
}
.food-items {
    display: grid;
    position: relative;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    border-radius: 15px;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.6);
    transition: .2s ease-in-out;
    gap: 20px;
    border: 1px solid orange;
    justify-content: flex-end;
    margin: 10px;
    width: 600%;
    padding-top: 10px;
}
.food-items img{
    position: relative;
    width: 100%;
    height: 250px;
    border-radius: 15px 15px 0 0;
    cursor: pointer;
    border: 1px solid orange;   
}
h1{
    grid-column: 1/-1;
    text-align: center;
}
.details{
    padding: 20px 10px;
    display: grid;
    grid-template-rows: auto 1fr 50px;
    grid-row-gap: 15px;
}
.details-sub{
    display: grid;
    grid-template-columns: auto auto;
}
.details-sub>h5{
    font-weight: 600;
    font-size: 18px;
}
.price {
    text-align: right;
}
.details>p {
    color: #6f6f6f;
    font-size: 15px;
    line-height: 28px;
    font-weight: 400;
    align-self: stretch;
}
.details>button{
    background: #e84343;
    border: none;
    color:#fff;
    font-size: 16px;
    font-weight: 600;
    border-radius: 5px;
    width: 180px;
    cursor: pointer;
}
.details>button:hover{
    background: #fc0101;
}

@media screen and (max-width: 768px) {
    .menu {
        grid-template-columns: 1fr;
    }

    .food-items {
        grid-template-columns: 1fr;
        width: 100%;
    }
    
}

@media screen and (min-width: 769px) {
    .menu {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    }
    
}

#footer {
    padding: 1% 5%;
    text-align: center;
    background-color: #072541;
 }
 
 .social-icon {
    margin: 20px 10px;
    color: #7743DB;
 }
 
 .social-icon:hover {
    color: #FF6C22;
 }
 .copyright {
    color: #ffff
 }
 .nav-item.profile {
    padding-top: 11;
}
.nav-item.profile i.bi-person-circle {
    font-size: 20px;
}
.profile:hover{
    cursor: pointer;
}
.dropdown-toggle {
    margin-top: -4px;
    font-size: 20px;
}
.custom-list-style {
    list-style: none;
    padding: 0;
    margin: 0;
}

.bi {
    border: none;
}
