@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@200;300;400;500;600;700&display=swap");

*,
*::after,
*::before {
  padding: 0%;
  margin: 0%;
  box-sizing: border-box;
}

html {
  font-size: 62.5%;
  scroll-behavior: smooth;
}

body {
  font-family: "Poppins", sans-serif;
}

::-webkit-scrollbar {
  width: 10px;
}

/* Handle */
::-webkit-scrollbar-thumb {
  background: #168ba0;
}

/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
  background: #0e6a7a;
}

/* Chrome, Safari, Edge, Opera */
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

/* ############## utility classes ###################  */

.container {
  max-width: 1200px;
  width: 90%;
  margin: auto;
}

.btn {
  display: inline-block;
  border: none;
  padding: 0.7em 2em;
  text-decoration: none;
  border-radius: 50px;
  cursor: pointer;
  outline: none;
  margin-top: 1em;
  text-transform: uppercase;
  font-weight: 500;
}
.btn-primary {
  color: #fff;
  background-color: #168ba0;
  transition: background-color 0.3s ease-in-out;
}

.btn-primary:hover {
  background-color: #0e6f72;
}
/*############################ navbar styling ##############################################*/

/* for desktop */

.navbar input[type="checkbox"],
.navbar .hamburger-lines {
  display: none;
}

.navbar {
  /* box-shadow: 0 5px 10px 0 #aaa; */
  position: fixed;
  width: 100%;
  background: #fff;
  color: #000;
  opacity: 0.9;
  z-index: 999;
  top: 0;
}
.logo {
  font-size: 2.8rem;
  order: 1;
}
.logo:hover {
  color: rgb(7, 7, 7);
}

.navbar-container {
  display: flex;
  justify-content: space-between;
  height: 64px;
  align-items: center;
}

.navbar .menu-items li {
  list-style: none;
  margin-left: 2.4rem;
}
.navbar .menu-items {
  display: flex;
  order: 2;
  font-size: 1.5rem;
}

.navbar a {
  color: #444;
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s ease-in-out;
}

.navbar a:hover {
  color: #168ba0;
}

#hotels {
  background-color: rgba(225, 225, 225, 0.377);
}

#hotels .hotels-head h1 {
  font-size: 3.3rem;
  line-height: 1;
  padding-top: 14rem;
  margin-bottom: 40px;
  text-align: center;
}

#hotels .hotels-head p {
  color: #4a4a4a;
  font-weight: 400;
  font-size: 1.5rem;
  line-height: 26px;
  padding-bottom: 70px;
}

/* main */

#hotels .hotels-container {
  display: flex;
  justify-content: space-between;
}

aside{
    width: 20%;
    order: 2;
}

aside img{
    width: 100%;
}

main{
    order: 1;
    width: 75%;
}

/* hotel card */

#hotels .Hcard {
  display: flex;
  justify-content: space-between;
  border: 2px solid #e8e8e8;
  margin-bottom: 28px;
  border-radius: 6px;
  transition: all 0.3s;
}

#hotels .Himg {
  width: 44%;
  height: 220px;
  padding: 5px;
}
#hotels .Himg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

#hotels .Hcontent {
  padding: 15px;
  padding-left: 0%;
  max-width: 460px;
}

#hotels .Hcontent h3 {
  font-size: 20px;
  line-height: 20px;
  color: #333;
  padding-bottom: 15px;
  font-weight: 600;
}

#hotels .Hcontent label {
  font-size: 12px;
  line-height: 15px;
  color: rgb(77, 77, 77);
  display: block;
  padding-bottom: 20px;
  border-bottom: 1px solid #efefef;
}

#hotels .Hcontent h4 {
  font-size: 14px;
  line-height: 14px;
  color: #333;
  font-weight: 500;
  padding-bottom: 0px;
}

#hotels .Hcontent .Hdetail h4{
  color: rgb(245, 159, 0);
}

#hotels .Hcontent .Hdetail ul {
  padding-top: 20px;
}

#hotels .Hcontent .Hdetail li {
  list-style: none;
  display: inline-block;
  font-size: 13px;
  font-weight: 300;
  padding-right: 10px;
}

.Hbtn {
  display: block;
  width: fit-content;
  margin: 4rem auto;
  font-size: 1.5rem;
  padding: 10px 20px;
  text-align: center;
}

/* float btn */

#myBtn {
  display: none;
  position: fixed;
  bottom: 20px;
  right: 30px;
  z-index: 99;
  border: none;
  outline: none;
  transition: all 0.4s ease-in-out;
  background-color: #168ba0;
  padding: 10px;
  border-radius: 5px;
  color: #fff;
}

#myBtn:hover {
  background-color: #0e6a7a;
}
i {
  transition: all 0.4s ease-in-out;
}

#myBtn:hover i {
  transform: rotate(360deg);
}


/* ####################### footer ######################### */

.footer{
  background: rgba(231, 231, 231, 0.179);
  padding: 50px;
  padding-bottom:15px;
  margin-top: 3rem;
}

.footer .fbox-container{
  display: flex;
  justify-content: center;
}

.footer .fbox-container .fbox{
  margin-right: 8rem;
}

.footer .fbox-container .fbox:nth-child(1){
    width: 40%;
}

.footer .fbox-container .fbox h3{
  font-size: 2.5rem;
  color:black;
  padding:1rem 0;
}

.footer .fbox-container .fbox h3 i{
  color:#0e6a7a;
}

.footer .fbox-container .fbox .links{
  display: block;
  font-size: 1.5rem;
  color:gray;
  padding:1rem 0;
  transition: all 0.2s ease-in-out;
  text-decoration: none;
}

.footer .fbox-container .fbox .links i{
  color:#0e6a7a;
  padding-right: .5rem;
}

.footer .fbox-container .fbox .links:hover{
  font-size: 1.6rem;
  text-decoration: underline;
  color:rgb(79, 79, 79);
}

.footer .fbox-container .fbox .link:hover{
  font-size: 1.5rem;
  text-decoration: none;
  color:gray;

}

.footer .fbox-container .fbox p{
  line-height: 1.8;
  font-size: 1.5rem;
  color:gray;
  padding:1rem 0;
}

.footer .fbox-container .fbox .share a{
  height:4rem;
  width:4rem;
  line-height:4rem;
  border-radius: .5rem;
  font-size: 2rem;
  color:black;
  margin-right: .2rem;
  background: #eee;
  text-align: center;
}

.footer .fbox-container .fbox .share a:hover{
  background: #0e6a7a;
  color: #fff;
}

.footer .fbox-container .fbox .email{
  width: 100%;
  margin:.7rem 0;
  padding:1rem;
  border-radius: .5rem;
  background: #eee;
  font-size: 1.6rem;
  color:black;
  text-transform: none;
}

.footer .fbox-container .fbox .payment-img{
  margin-top: 2rem;
  height: 3rem;
  display: block;
}

.footer .credit{
  text-align: center;
  margin-top: 2rem;
  padding:1rem;
  padding-top: 2.5rem;
  font-size: 2rem;
  color:black;
  border-top: rgb(39, 39, 39);
  background-color: rgba(210, 210, 210, 0.193);
}

.footer .credit span{
  color:#0e6a7a;
}






/* ############# media queries ############### */

@media (max-width: 768px) {
  .navbar {
    opacity: 0.95;
  }
  .navbar-container input[type="checkbox"],
  .navbar-container .hamburger-lines {
    display: block;
  }
  .navbar-container {
    display: block;
    position: relative;
  }
  .navbar-container input[type="checkbox"] {
    position: absolute;
    display: block;
    height: 32px;
    width: 40px;
    top: 20px;
    left: 20px;
    z-index: 5;
    opacity: 0;
  }
  .navbar-container .hamburger-lines {
    display: block;
    height: 25px;
    width: 35px;
    position: absolute;
    top: 20px;
    left: 20px;
    z-index: 2;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
  }
  .navbar-container .hamburger-lines .line {
    display: block;
    height: 4px;
    width: 100%;
    border-radius: 10px;
    background-color: #333;
  }

  .navbar-container .hamburger-lines .line1 {
    transform-origin: 0% 0%;
    transition: all 0.4s ease-in-out;
  }
  .navbar-container .hamburger-lines .line2 {
    transition: all 0.4s ease-in-out;
  }
  .navbar-container .hamburger-lines .line3 {
    transform-origin: 0% 100%;
    transition: all 0.4s ease-in-out;
  }

  .navbar .menu-items {
    padding-top: 100px;
    background-color: #fff;
    height: 100vh;
    max-width: 300px;
    transform: translateX(-150%);
    display: flex;
    flex-direction: column;
    margin-left: -40px;
    padding: 50px;
    transition: transform 0.4s ease-in-out;
    box-shadow: 5px 0px 10px 0px #aaa;
  }

  .navbar .menu-items li:first-child {
    margin-top: 35px;
  }
  .navbar .menu-items li {
    /* display: none; */
    margin-bottom: 3rem;
    font-size: 2rem;
    font-weight: 500;
  }
  .logo {
    position: absolute;
    top: 10px;
    right: 15px;
    font-size: 3rem;
  }

  .navbar input[type="checkbox"]:checked ~ .menu-items {
    transform: translateX(0%);
  }
  .navbar input[type="checkbox"]:checked ~ .hamburger-lines .line1 {
    transform: rotate(40deg);
  }
  .navbar input[type="checkbox"]:checked ~ .hamburger-lines .line2 {
    transform: scaleY(0);
  }
  .navbar input[type="checkbox"]:checked ~ .hamburger-lines .line3 {
    transform: rotate(-40deg);
  }

  #hotels .hotels-container{
    flex-direction: column;
  }

  main{
    width: 100%;
  }

  aside{
    width: 100%;
  }

  aside img{
    height: 450px;
    object-fit: cover;
    object-position: left;
  }

  #hotels .Hcard{
    align-items: center;
    flex-direction: column;
    margin-bottom: 5rem;
  }

  #hotels .Himg{
    width: 100%;
  }

  .footer .fbox-container .fbox {
    margin-right: 0;
  }

  .footer .fbox-container .fbox .share {
    margin: 2rem 0;
  }

  .footer .fbox-container .fbox h3 {
    margin-top: 5rem;
  }

  .footer .fbox-container {
    flex-direction: column;
  }

  .footer .fbox-container .fbox:nth-child(1) {
    width: 100%;
  }
}

/* Add these new styles to your existing CSS file */

.video-container {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 2rem 0;
}

#plant-video {
  max-width: 100%;
  height: auto;
  max-height: 70vh; /* Adjust this value as needed */
}

/* Responsive adjustments */
@media (max-width: 768px) {
  #plant-video {
      width: 90%;
  }
}

/* Existing CSS remains unchanged */

/* ... (rest of your CSS) ... */

/* Update the media query section to include the video styles */
@media (max-width: 768px) {
  /* ... (existing mobile styles) ... */

  .video-container {
      padding: 1rem 0;
  }

  #plant-video {
      width: 90%;
      max-height: 50vh; /* Adjust for mobile devices */
  }
}

.logo-container {
  display: flex;
  align-items: center;
  text-decoration: none;
}

.logo-image {
  width: 145px; /* Adjust this value to resize the logo */
  height: auto;
  margin-right: 10px;
}

.logo-text {
  font-size: 2.8rem;
  color: #000;
  transition: all 0.4s ease-in-out;
}

.logo-text:hover {
  color: rgb(7, 7, 7);
}

/* Media query for smaller screens */
@media (max-width: 768px) {
  .logo-container {
      position: absolute;
      top: 10px;
      right: 15px;
  }

  .logo-image {
      width: 40px; /* Slightly smaller on mobile */
  }

  .logo-text {
      font-size: 2.4rem; /* Slightly smaller on mobile */
  }
}