/* 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;
}



.rooms {
    padding: 1rem 2rem;
    padding-top: 5rem;
  }
  .rooms_discription {
    font-size: 1rem;
    max-width: 90rem;
    margin: 0 auto;
    text-align: center;
    line-height: 1.6;
    margin-top: 1.6rem;
    overflow: hidden;
    padding: 0 3rem;
  }
  .rooms_images {
    max-width: 110rem;
    margin: 2rem auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(25rem, 1fr));
    justify-items: center;
    column-gap: 4rem;
    row-gap: 7rem;
  }
  .rooms_image {
    width: 100%;
    height: 40rem;
    border-radius: 0.5rem;
    transition: all 0.3s;
  }
  .rooms_image:hover {
    transform: scale(1.1);
  }
  .rooms_card {
    width: 100%;
    border-radius: 0.5rem;
    box-shadow: 0 2.4rem 4.8rem rgba(0, 0, 0, 0.075);
    position: relative;
    overflow: hidden;
  }
  .rooms_card-price {
    font-size: 1.6rem;
    padding: 1rem;
    width: 10rem;
    color: gray;
    background-color: yellow;
    position: absolute;
    top: 1.2rem;
    right: -3rem;
    transform: rotate(45deg);
    text-align: center;
    z-index: 9;
  }
  .rooms_details {
    padding: 0.8rem 1rem;
    padding-bottom: 2rem;
    margin-top: 2rem;
    list-style: none;
    display: grid;
    grid-template-columns: 1fr 1fr;
    column-gap: 3rem;
    justify-content: center;
    row-gap: 1rem;
    position: relative;
  }
  .rooms_details-no {
    grid-column: 1 / -1;
    top: 0;
    font-size: 1.8rem;
    z-index: 1000;
    text-align: center;
    font-weight: 500;
    margin-bottom: 2rem;
  }
  .rooms_data {
    font-size: 1.2rem;
    display: flex;
    gap: 0.8rem;
  }
  .rooms_data-text {
    position: absolute;
    bottom: -3rem;
    left: 0rem;
    font-family: inherit;
    font-size: inherit;
    line-height: 1.4;
    padding: 0rem 0.8rem;
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
  }
  .rooms_btn {
    margin-top: 1.2rem;
    text-decoration: none;
    padding: 0.8rem 1.6rem;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .rooms_btn-book {
    background-color: #ff6600; /* Replace $color-primary with its value */
    border-radius: 0.8rem;
    color: #fff;
    transition: all 0.3s;
  }
  .rooms_btn-book:hover {
    background-color: #e65c00; /* Darkened version of $color-primary */
    transform: translateY(-0.8rem);
  }
  .rooms_btn-read {
    border: 1px solid gray;
    position: relative;
  }
  
