.container-fluid img{
    height: 80px;
    border: 2px solid aliceblue;
    border-radius: 50%;
    margin: 0;
}
.container-fluid {
    background-color: #caf0f840;
    height: 115px;
    position: sticky;
    display: flex;
    align-items: center; 
    gap: 5px; 
    padding-left: 10px; 
}

#Restaurant-name {
    color: #2a9d8f;
    font-size: 2.7rem;
    font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
    font-weight: bold;
    cursor: pointer;
    margin: 0;
}

.food-list-drowpdown {
    background-color: #caf8d760;
    height: 80px;
    position: sticky;
    display: flex;
    align-items: center; 
    padding-left: 10px; 
    justify-content:space-between ;
}

.dropdown{
    margin: 2rem;
    font-size: 1.1rem;
}
.nav-itme{
    margin: 2rem;
    font-size: 1.1rem;
    
}
.nav-itme a{
    color: #219ebc;
}
.options{
    cursor:pointer ;
}
.search-div input{
    width: 20rem;
    height: 3rem;
    margin: auto;
    margin-left: 250px;
    margin-right: 100px;
    border: 2px solid #219ebc;
    border-radius: 999px;
    box-shadow: 0 0 2px #00000012;
    outline: none;
}

.contact-details a{
    text-decoration: none;
    color: #023047;
    font-size: 1rem;
    margin: 0;
}
@media only screen and (max-width: 990px){
    .search-div input{
        margin-left: 0;
        height: 2rem;
    }
}
@media screen and (max-width: 515px) {
    #Restaurant-name {
      font-size: 2rem;
    }
}
@media screen and (max-width: 405px) {
    .logo-div {
      display: none;
    }
    .contact-details{
        display: none;
    }
}
@media (max-width: 1000px) {
    .contact-details{
        display: none;
    }
    .sub-header{
        display:none;
    }
}

.food-menu{
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 15px;
    justify-content: space-between;
}
.food-img{
    height: 200px;
    border: 2px solid #bde0fe30;
    border-radius: 5%;
}
.food-img img {
    object-fit: cover;
    width: 100%;
    height: 100%;
    border-radius: 5%;
}
.food-items {
    border: 2px solid #a8dadc50;
    background-color: white;
    box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.2);
    border-radius: 10px;
}
.food-items{
    margin: 1rem;
    padding: 1rem;
}

@media (max-width:700px){
    .food-menu{
        grid-template-columns: repeat(2,1fr);
    }
}
@media (max-width:350px){
    .food-menu{
        grid-template-columns: repeat(1,1fr);
    }
    
}
.footer-content{
    position: relative;
    height: 250px;
    width: 100%;
    background-color: #f0f0f5;
}
#one > div {
    margin-top: 20px; 
}
.one{
    height: 75%;
    width: 100%;
    display: flex;
    top: 10px;
}
#one-one{
    height: 100%;
    width: 46%;
    text-align: center;
}
.one h1{
    font-size: 1.8rem;
    font-family: 'Times New Roman', Times, serif;
}
.one h3{
    font-size: 1.8rem;
    font-family: 'Times New Roman', Times, serif;
}
.one p{
    font-family: Georgia, 'Times New Roman', Times, serif;
    padding: 10px;
}
.footer-content ul {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: center;
    font-size: 1rem;
}
.footer-content li {
    margin: 5px;
}
 
#two-two{
    height: 100%;
    width: 27%;   
    text-align: center;
}
#three-three{
    height: 100%;
    width: 27%;   
    text-align: center;
}
.two{
    position: absolute;
    height: 25%;
    width: 80%;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    text-align: center;
}
.two h1{
    font-family:'Times New Roman', Times, serif;
}
#line-breaker{
    height: 0.1rem;
    width: 90%;
    margin: 0px auto;
    bottom: 0.3rem;
    background-color: #778da970;
}
@media (min-width: 700px) and (max-width: 1100px) {
    .two{
        display: none
    }
    #line-breaker{
        display: none;
    }
}
@media (max-width: 700px) {
    .one{
        display: none;
    }
    #line-breaker{
        display: none;
    }
    .footer-content{
        height: 80px;
        bottom: 0px;
    }
    .two h1{
        font-size: 1.3rem;
    }
    .two {
        text-align: center;
        width: 100%;  /* Ensures it spans the full width */
        top: 50%;
        left: 50%;
    }
}
@media (max-width: 470px) {
    .two h1{
        font-size: 1rem;
    }
}

