*{
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    text-decoration: none;
}
.navbar{
    display: flex;
    justify-content: space-around;
    align-items: center;
    animation: sideInFromTop 1s ease-in-out;
}
.navbar img{
   width: 100px;
   animation: rotate 1s ease-in-out;
}
.navbar .center-nav a,.social a{
 color: #3c3b3b;
 margin-left: 5px;
 font-size: 1.7rem;
 transition: all 0.5s ease;
 animation: fadeInUp 1s ease-in-out;
 text-decoration: none;
}
.navbar .center-nav a:first-child{
    color: rgb(255, 81, 0);
    text-shadow:0px 0px 30px rgb(255,140, 0) ;
}
.navbar .center-nav a:last-child{
    color:rgb(255, 81, 0);
    text-shadow:0px 0px 30px rgb(255,140, 0) ;
}
.navbar.center-nav a:hover,.social a:hover{
    color: rgb(255,140, 0);
    text-shadow:0px 0px 30px rgb(255,140, 0) ;
    text-decoration: none;
}

/* new styles */
.navbar.center-nav a{
    position: relative;
    text-decoration: none;
}
.navbar.center-nav a::before{
    content: "";
    position: absolute ;
    width: 100%;
    height: 2px;
    bottom: 0;
    left: 0;
    background-color: rgb(255,140, 0);
    visibility: hidden;
    transform: scaleX(0);
    transition: all 0.3s ease-in-out;
    
}
.navbar.center-nav a:hover before{ 
    transform: scaleX(1);
   visibility: visible;
}

  
.restaurant-search {
    background-color: #ffffff;
    padding: 20px 0;
    border-radius: 5px;
    margin-bottom: 20px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  }
  
  .restaurant-search .container {
    display: flex; /* Make the container a flex container */
    justify-content: center; /* Center the search bar horizontally */
  }
  
  .restaurant-search .search-wrapper {
    display: flex; /* Make search wrapper a flex container */
  }
  
  .restaurant-search .search-bar {
    flex: 1; /* Allow search bar to fill available space */
    padding: 10px 155px;
    border: 3px solid #b2afaf;
    border-radius: 15px;
    font-size: 16px;
  }
  
  .restaurant-search .search-btn {
    background-color: #660c0a;
    color: #fff;
    padding: 10px 15px;
    border: none;
    border-radius: 5 5px 5px 0; /* Match search bar border radius */
    cursor: pointer;
  }
  
  .restaurant-search .search-btn:hover {
    background-color: #0069d9;
  }
  
  .restaurant-info {
    background-color: #f5f5f5;
    padding: 20px 0;
    border-radius: 5px;
    margin-bottom: 20px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    display: flex; /* Make the restaurant-info a flex container */
  }
  
  .restaurant-info .container {
    display: flex; /* Make the container a flex container */
    flex-wrap: wrap; /* Allow content to wrap on smaller screens */
  }
  
  .restaurant-info .image-wrapper {
    flex: 1; /* Allow image to fill available space proportionally */
    margin-right: 20px; /* Add spacing between image and content */
  }
  
  .restaurant-info .restaurant-image {
    width: 100%; 
    border-radius: 2%;/* Image takes full width of its container */
    height: 250px; /* Adjust image height as desired */
    object-fit: cover; /* Maintain aspect ratio and crop if necessary */
  }
  
  .restaurant-info .info-wrapper {
    flex: -5; /* Allow content to fill remaining space (twice the image size) */
  }
  
  .restaurant-info h2 {
    margin-bottom: 10px;
    color: #4a0d0d;
    font-size: 32px;
    font-family: fantasy;
  }
  
  .restaurant-info p,
  .restaurant-info a {
    display: flex;
    align-items: center;
    margin-bottom: 5px;
  }
  
  .restaurant-info .icon {
    margin-right: 10px;
    font-size: 18px;
    color: #996633; /* Brown color for icons */
  }
  
  .restaurant-info .details {
    font-size: 16px;
    color: #333;
  }
  
  .restaurant-info a {
    text-decoration: none;
    color: #333;
  }
  
  .restaurant-info a:hover {
    color: #007bff;
  }
  
  .restaurant-info .contact {
    display: flex;
    flex-wrap: wrap; /* Allow items to wrap on smaller screens */
  }
  
  .restaurant-info .contact a {
    margin-right: 5px; /* Add spacing between contact options */
  }
  
  .restaurant-info .order-from {
    background-color: #601508;
    color: #ffffff;
    padding: 12px 25px; /* Adjust padding for desired button size */
    border: none;
    border-radius: 5px;
    font-size: 16px;
   
    cursor: pointer;
    text-decoration: none;
    margin-top: auto; /* Align button to bottom within container */
    order: 1; /* Ensure button appears at the end on smaller screens (optional) */
  }
  
  .restaurant-info .order-from:hover {
    background-color: #d90000;
  }
  
.midban{
    margin-top: 00px;
    padding-left: 50px;
    background-color: #d1bba5;
   }
   footer {
     background-color: #faecd8;
     color: #000000;
     padding: 40px 0 0 0;
   }
   
   .footer-container {
     display: flex;
     justify-content: space-between;
     flex-wrap: wrap;
     width: 90%;
     margin: 0 auto;
   }
   
   .footer-nav {
     width: calc(33% - 10px); /* Adjust width for 3 columns */
     margin-bottom: 20px;
   }
   
   .footer-nav__title {
     margin-bottom: 15px;
     font-weight: 500px;
     font-family: fantasy;
     font-size: 25px;
     color: #551111;
   }
   
   .footer-nav__list {
     list-style: none;
     padding: 0;
     margin: 0;
   }
   .footer-nav__list{
     color: #3c3b3b;
     font-weight: 500;
     font-family: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
   }
   
   
   .footer-nav__list li {
     margin-bottom: 0px;
   }
   
   .footer-nav__list li:hover { /* Add hover effect (optional) */
     color: #126791; /* Burger King orange on hover */
   }
   
   .footer-bottom {
     display: flex;
     justify-content: space-between;
     align-items: center;
     /* padding: 10px 0; */
     border-top: 2px solid rgba(0, 0, 0, 0.2);
   }
   
   .footer-copy {
     display: flex;
     align-items: center;
   }
   
   .logo {
     width: 100px; /* Adjust logo width as desired */
     height: auto;
     margin-left: 400px;
   }
   
   .copyright {
     margin-left: 10px;
     font-size: 25px;
     font-weight: 500;
     color: #551111;
   }
   