
/* Header Styling */
.header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 20px;
  background-color: #f4f4f4;
  box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
  position: sticky;
  top: 0px;
  z-index: 19999;
}

.logo {
  display: flex;
  align-items: center;
}

.logo_img {
  height: 50px;
  margin-right: 10px;
}

.logo_contact {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}

.logo_contact-btn {
  background-color: #ff5a5f;
  color: white;
  padding: 10px 15px;
  text-decoration: none;
  border-radius: 5px;
  font-weight: bold;
  margin-bottom: 5px;
}

.logo_contact-no {
  font-size: 14px;
  color: #555;
}

.nav {
  display: flex;
  align-items: center;
}

.nav_items {
  list-style: none;
  display: flex;
  gap: 15px;
}

.nav_link {
  text-decoration: none;
  color: #333;
  font-weight: 500;
  padding: 5px 10px;
}

.nav_link:hover {
  background-color: #ff5a5f;
  color: white;
  border-radius: 5px;
}

/* Footer Styling */
.footer {
  background-color: #333;
  color: white;
  padding: 20px 40px;
  text-align: center;
}

.footer_logos img {
  height: 50px;
  margin-bottom: 10px;
}

.footer_heading {
  font-size: 20px;
  margin-bottom: 5px;
}

.footer_heading3 {
  font-size: 16px;
  font-weight: 400;
  color: #ccc;
  margin-top: 0;
}

.footer_links {
  margin-top: 20px;
  display: flex;
  justify-content: center;
  gap: 15px;
}

.footer_links a {
  color: #ff5a5f;
  text-decoration: none;
}

.footer_links a:hover {
  text-decoration: underline;
}


/* Dining Section Styling */
.dinning {
    overflow-y: hidden;
  }
  
  .dinning_grid {
    padding-top: 8rem;
    display: grid;
    width: 100%;
    grid-template-columns: repeat(auto-fit, 25rem);
    justify-items: center;
    justify-content: center;
    align-content: center;
    gap: 4rem;
  }
  
  .dinning_meals {
    position: relative;
    max-width: 25rem;
  }
  
  .dinning_meals-image {
    height: 40rem;
    width: 100%;
    object-fit: cover;
  }
  
  .dinning_meals-disc {
    position: absolute;
    bottom: 2rem;
    background-image: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4));
    padding: .8rem 1.6rem;
    color: #fff;
  }
  
  .dinning_meals-name {
    display: block;
    font-size: 1.6rem;
    margin-bottom: 1rem;
    color: #fff;
    font-weight: 600;
  }
  
  .dinning_meals-detail {
    font-size: 1.2rem;
    font-weight: 400;
    color: #fff;
    line-height: 1.6;
  }
  
  .dinning_meals-price {
    display: inline-block;
    margin-top: 1.5rem;
    background-color: #ff5a5f; /* Replace with your color-primary variable */
    padding: .8rem 1.2rem;
    text-decoration: none;
    color: inherit;
    font-size: 1.4rem;
    border-radius: .5rem;
  }
  
