/* General Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;

}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Playfair", serif;
  font-style: normal;
  color: #333;
  overflow-x: hidden;
  /* line-height: 1.6; */
  scroll-behavior: smooth;
  /* Enables smooth scrolling */
}

.container {
  width: 100%;
  margin: 0 auto;
  max-width: 90%;
  display: flex;
  justify-content: space-between;
}

/* Header */
.header {
  background: #3e3e3e;
  color: #fff;
  padding: 0.8rem 0;
  display: flex;
  justify-content: space-between;
}

.header .logo {
  font-size: 1.5rem;
  font-weight: 200;
}

.header .btn {
  background: #f0a500;
  color: #fff;
  padding: 0.4rem 1rem;
  border: none;
  border-radius: 5px;
  text-decoration: none;
  font-size: 1rem;
  animation: growButton 3s ease-in-out infinite;
}



.header .btn:hover {
  background: #e08900;
  animation: ease-in;
}

.hero {
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
  /* For absolute positioning of text */
  overflow: hidden;
  /* Ensure content doesn't overflow */
  z-index: 1;
  /* Place it behind the content */
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('images/home/image1.jpg') no-repeat center/cover;
  overflow: hidden;
  z-index: -1;
  animation: growBackground 6s ease infinite;
}


.hero-content {
  height: 100vh;
  width: auto;
  padding-top: 3%;
}

.hero-content img {
  height: 30vh;
  width: auto;
  margin-bottom: 2%;
}


.nav ul {
  display: flex;
  justify-content: space-evenly;
  list-style: none;
}

.nav ul li {
  margin: 0 1rem;
}

.nav ul li a {
  color: #000000;
  text-decoration: none;
  font-family: Arial, Helvetica, sans-serif;
  font-weight: 100;
  font-size: 1.4rem;
}

.nav ul li a:hover {
  color: rgba(34, 58, 2);
  cursor: pointer;
}

.text {
  margin-top: 25%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  /* Slide-up effect for text */
}

.quote {
  font-family: "Parkinsans", sans-serif;
  display: inline-block;
  padding: 1.5% 4%;
  font-weight: 400;
  font-size: 2.7rem;
  /* Large font size for the first line of text */
  background-color: rgba(117, 160, 60, 0.85);
  /* Opaque background color */
  color: white;
  transform: translateY(100%);
  animation: curtainEffect 6s ease-in-out infinite;
}

.sub-quote {
  margin-top: 2%;
  font-family: "Parkinsans", sans-serif;
  display: inline-block;
  padding: 1.5% 4%;
  font-size: 1.5rem;
  /* Large font size for the first line of text */
  background-color: rgba(204, 203, 203, 0.8);
  /* Opaque background color */
  color: rgb(0, 0, 0);
  transform: translateY(100%);
  animation: curtainEffect 6s ease-in-out infinite;
  margin-bottom: 2%;
}

/* Features Section */
.features {
  background-color: white;
  background-blend-mode: lighten;
  padding: 50px 0;
  text-align: center;
}

.our-features {
  font-size: 2.5rem;
  font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
  ;
  margin-bottom: 20px;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 5%;
  max-width: 90%;
  margin: 3% auto;
}

.feature {
  background: whitesmoke;
  height: auto;
}

.feature img {
  width: 100%;
  height: 60%;
}

.feature .title {
  font-size: 1.25rem;
  font-weight: 600;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
  margin: 10px 0 10px;
}

.feature .sub-title {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
  font-size: 1rem;
  margin: 0 2%;
}

.feature .price {
  padding-top: 3%;
  font-size: 1.2rem;
  font-family: 'Times New Roman', Times, serif;
  font-weight: bolder;
}

.button-container {
  display: flex;
  position: absolute;
  padding-top: 5%;
  height: 50%;
  width: 100%;
}


.details-btn,
.book-btn,
.back-btn {
  height: 30%;
  width: 50%;
  font-size: 1.2rem;
  color: whitesmoke;
  background-color: rgb(49, 81, 30);
  padding: 10px 0;
  border: none;
  cursor: pointer;
  text-decoration: none;
  font-family: "Playfair", serif;
  ;
}

.details-btn:hover,
.book-btn:hover {
  background-color: rgb(36, 60, 22);
}


/* Quotes Section */
.quote-container {
  padding: 40px 0;
  text-align: center;
}


.quote-1 {
  padding-top: 3%;
  font-family: "Dancing Script", cursive;
  font-size: 2rem;
  margin-bottom: 2%;
  color: rgb(80, 154, 102);
}

.quote-2 {
  font-family: "Playfair", serif;
  font-size: 2.4rem;
  font-weight: 100;
}


/* Accommodation Page */
.accommodation {
  width: 100%;
  margin: 0 auto;
  background-color: rgb(214, 192, 179);
}

.accommodation-header {
  font-family: 'Times New Roman', Times, serif;
  font-weight: 500;
  font-size: 3rem;
  color: rgb(73, 54, 40);
  text-align: center;
  padding-top: 4%;
}

.package {
  margin: 3%;
  background-color: rgb(228, 224, 225);
  color: rgb(73, 54, 40);
  padding-left: 5%;
  padding-top: 2%;
  padding-bottom: 2%;
  border-radius: 5%;
}

.package-name {
  align-items: left;
  font-family: 'Times New Roman', Times, serif;
  font-weight: 500;
  font-size: 2rem;
  padding-bottom: 2%;
}

.Package-Includes p {
  font-family: 'Times New Roman', Times, serif;
  font-size: 1.3rem;
}

.meal {
  display: flex;
  list-style: none;
  padding: 1%;
  font-family: 'Times New Roman', Times, serif;
}

.package-facilities {
  display: flex;
  list-style: none;
  padding: 1%;
  font-family: 'Times New Roman', Times, serif;
}

.Package-Includes li {
  padding-left: 2%;
}

.thali-container {
  display: flex;
  padding: 2%;
}

.thali {
  width: 100%;
  font-family: 'Times New Roman', Times, serif;
}

.thali p {
  font-size: 1.2rem;
  padding-bottom: 1.5%;
}

.thali ul {
  list-style: inside;
}

.thali li {
  padding: 0.5%;
}

.back-btn {
  height: 30%;
  width: 30%;
  font-size: 1.2rem;
  color: whitesmoke;
  background-color: rgb(73, 54, 40);
  padding: 10px 0;
  border: none;
  cursor: pointer;
  text-decoration: none;
  font-family: "Playfair", serif;
  ;
}


/* Gallery */

.our-space {
  height: auto;
  width: 100%;
  background-color: rgb(245, 239, 231);
  align-items: center;
  justify-content: center;
  text-align: center;
}

.our-space p {
  color: rgb(33, 53, 85);
  font-family: "Dancing Script", cursive;
  font-size: 3rem;
  padding-top: 5%;
}

#images-wrapper {
  line-height: 1;
  -webkit-column-count: 5;
  -webkit-column-gap: 0px;
  -moz-column-count: 5;
  -moz-column-gap: 0px;
  column-count: 5;
  column-gap: 0;
}

#images-wrapper img {
  width: 100% !important;
  height: auto !important;
}

#images-wrapper img:hover {
  transform: scale(1.05);
  transition: transform 0.5s ease-in-out;
}

#images-wrapper {
  display: inline-block;
  margin: 5%;

}

/* Facilities Section */
.facilities {
  height: 100vh;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.facilities-container {
  background-color: #3b3a47;
  height: 100vh;
  width: 100%;
  display: flexbox;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.facilities-grid {
  padding-top: 5%;
  display: flex;
  gap: 2rem;
  justify-content: space-evenly;
  padding-left: 5%;
  padding-right: 5%;
}

.facility {
  justify-content: space-around;
  text-align: left;
  height: 100%;
  max-width: 28%;
  padding-bottom: 5%;
}

.facility-title {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
  font-size: 1.5rem;
  font-weight: 400;
  color: rgb(255, 255, 255);
  margin-bottom: 4%;
}

.facility-sub-title {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
  font-size: 1rem;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 2%;
}

.facility-icon {
  height: 15%;
  width: 15%;
  animation: zoomInIcon 2s ease forwards;
  animation-delay: 0.5s;
  margin-bottom: 10px;
  filter: invert(1);
}

.facility-icon:hover {
  animation: zoomInIcon 1s ease infinite;
}


/* Amenities */
@import url('https://fonts.googleapis.com/css?family=Roboto:700');

@keyframes showTopText {
  0% {
    transform: translate3d(0, 100%, 0);
  }

  40%,
  60% {
    transform: translate3d(0, 50%, 0);
  }

  100% {
    transform: translate3d(0, 0, 0);
  }
}

@keyframes showBottomText {
  0% {
    transform: translate3d(0, -100%, 0);
  }

  100% {
    transform: translate3d(0, 0, 0);
  }
}

.amenities {
  background-color: rgb(253, 247, 244);
  align-items: center;
  justify-content: center;
  padding-top: 2%;
  display: flex;
  flex-direction: column;
  width: 100%;
  text-align: center;
  gap: 30%;
  padding-bottom: 2%;
  padding-left: 10%;
  padding-right: 10%;
}

.amenities-title {
  font-size: 4rem;
  color: #123524;
}

.amenities-sub-title {
  font-size: 1.5rem;
  padding-top: 2%;
  color: #3E7B27;
}

.amenity {
  padding-top: 5%;
  color: #123524;
  font-family: Roboto, Arial, sans-serif;
  height: auto;
  position: relative;
  width: 100%;
  display: none;
  opacity: 0;
  transition: opacity 1s ease-in-out;
}

.amenity.active {
  display: block;
  opacity: 1;
}

.amenity>div {
  height: 50%;
  overflow: hidden;
  position: relative;
  width: 100%;
}

.amenity>div div {
  font-size: 2rem;
  padding: 2vmin 0;
  position: relative;
}

.amenity>div div span {
  display: block;
}

.amenity>div.text-top {
  border-bottom: 0.2vmin solid black;
  top: 0;
}

.amenity>div.text-top div {
  animation: showTopText 1s;
  animation-delay: 1.5s;
  animation-fill-mode: forwards;
  bottom: 0;
  transform: translate(0, 100%);
}

.amenity>div.text-top div span:first-child {
  color: #3E7B27;
}

.amenity>div.text-bottom {
  bottom: 0;
}

.amenity>div.text-bottom div {
  animation: showBottomText 1s;
  animation-delay: 0.5s;
  animation-fill-mode: forwards;
  top: 0;
  transform: translate(0, -100%);
}

#room-section {
  padding-bottom: 5%;
}

.mySlides {
  display: none;
}

img {
  vertical-align: middle;
  height: 50vh;
  width: auto;
}

.slideshow-container {
  max-width: 30vw;
  max-height: 50vh;
  position: relative;
  margin: auto;
  padding-top: 5%;
}

/* Fading animation */
.fade {
  animation-name: fade;
  animation-duration: 1s;
}

@keyframes fade {
  from {
    opacity: .4
  }

  to {
    opacity: 1
  }
}


/* Booking */
#booking-section {
  width: 100%;
  height: auto;
  background-color: rgb(253, 247, 244);
  padding: 2% 0;
}

.booking-container {
  width: 100%;
  display: flex;
  justify-content: center;
  /* Center horizontally within container */
}

.form-container {
  background: #ffffffc4;
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  width: 30%;
}

h2 {
  text-align: center;
  margin-bottom: 20px;
}

.form-group {
  margin-bottom: 15px;
}

.form-group label {
  color: rgb(104, 87, 82);
  display: block;
  margin-bottom: 5px;
  font-weight: bold;
}

.form-group input,
.form-group select {
  width: 100%;
  padding: 10px;
  border: 1px solid #ccc;
  color: rgb(104, 87, 82);
  border-radius: 5px;
}

.form-group button {
  width: 100%;
  padding: 10px;
  background-color: rgb(142, 180, 134);
  color: white;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  font-size: 16px;
}

.form-group button:enabled {
  background-color: rgb(89, 155, 76);
}

.form-group button:enabled:hover {
  background-color: rgb(69, 121, 58);
}

.message {
  font-size: 1rem;
  display: none;
  margin-top: 20px;
  padding: 10px;
  background-color: #d4edda;
  color: #155724;
  border: 1px solid #c3e6cb;
  border-radius: 5px;
  text-align: center;
}

/* Footer styling */
.footer {
  background-color: #000000;
  color: #fff;
  padding: 1% 2%;
  text-align: center;
  display: flexbox;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
}

.footer-container {
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  justify-content: space-evenly;
  margin-bottom: 3%;
}

.footer-icons {
  margin-top: 2%;
}

.address {
  font-family: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
  font-size: 1rem;
}

.hotel-name {
  font-family: Cambria, Cochin, Georgia, Times, 'Times New Roman', serif;
  font-size: 1.5rem;
}

.footer-icons a {
  margin: 0 1rem;
  text-decoration: none;
}

.footer-icons img {
  width: 2%;
  height: auto;
  filter: invert(1);
  transition: transform 0.3s ease;
}

.footer-icons img:hover {
  transform: scale(1.2);
}

.footer-bottom {
  margin-top: 1rem;
  border-top: 1px solid #444;
  padding-top: 1rem;
  font-size: 0.875rem;
}

.footer-bottom p {
  margin: 0;
}

/* animations */
@keyframes zoomIn {
  from {
    opacity: 0;
    transform: scale(0.8);
  }

  to {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes growBackground {
  0% {
    transform: scale(1);
  }

  100% {
    transform: scale(1.04);
  }

}

@keyframes growButton {
  0% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.1);
    /* Zoom in */
  }

  100% {
    transform: scale(1);
    /* Return to original size */
  }
}

@keyframes curtainEffect {
  0% {
    opacity: 0;
    transform: translateY(100%);
  }

  25% {
    opacity: 1;
    transform: translateY(0);
  }

  75% {
    opacity: 1;
    transform: translateY(0);
  }

  100% {
    opacity: 0;
    transform: translateY(-100%);
  }
}

@keyframes curtainEffect2 {
  0% {
    opacity: 0;
    transform: translateY(100%);
  }

  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes showup {
  0% {
    opacity: 0;
  }

  20% {
    opacity: 1;
  }

  80% {
    opacity: 1;
  }

  100% {
    opacity: 0;
  }
}

@keyframes zoomInIcon {
  from {
    transform: scale(0.9);
  }

  to {
    transform: scale(1);
  }
}

@keyframes zoomIn {
  from {
    transform: scale(0.95);
  }

  to {
    transform: scale(1);
  }
}

@keyframes reveal {
  0% {
    opacity: 0;
    width: 0px;
  }

  20% {
    opacity: 1;
    width: 0px;
  }

  30% {
    width: 355px;
  }

  80% {
    opacity: 1;
  }

  100% {
    opacity: 0;
    width: 355px;
  }
}

@media (max-width: 500px) {

  /* Header */
  .header {
    background: #3e3e3e;
    color: #fff;
    padding: 0.5rem 0;
    display: flex;
    justify-content: space-between;
  }

  .header .logo {
    font-size: 1rem;
    font-weight: 200;
  }

  .header .btn {
    background: #f0a500;
    color: #fff;
    padding: 0.3rem 1rem;
    border: none;
    border-radius: 5px;
    text-decoration: none;
    font-size: 0.8rem;
    animation: growButton 3s ease-in-out infinite;
  }



  .header .btn:hover {
    background: #e08900;
    animation: ease-in;
  }

  .hero {
    height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    /* For absolute positioning of text */
    overflow: hidden;
    /* Ensure content doesn't overflow */
    z-index: 1;
    /* Place it behind the content */
  }

  .hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('images/home/image1.jpg') no-repeat center/cover;
    overflow: hidden;
    z-index: -1;
    animation: growBackground 6s ease infinite;
  }


  .hero-content {
    height: 80vh;
    width: auto;
    padding-top: 10%;
  }

  .hero-content img {
    height: 20vh;
    margin-bottom: 5%;
  }


  .nav ul {
    display: flex;
    justify-content: space-between;
    list-style: none;
  }

  .nav ul li {
    margin: 0 1rem;
  }

  .nav ul li a {
    color: #000000;
    text-decoration: none;
    font-family: 'Times New Roman', Times, serif;
    font-weight: 200;
    font-size: 0.5rem;
  }

  .nav ul li a:hover {
    color: rgba(34, 58, 2);
    cursor: pointer;
  }

  .text {
    margin-top: 25%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    /* Slide-up effect for text */
  }

  .quote {
    font-family: "Parkinsans", sans-serif;
    display: inline-block;
    padding: 1.5% 4%;
    font-weight: 400;
    font-size: 1.5rem;
    /* Large font size for the first line of text */
    background-color: rgba(117, 160, 60, 0.85);
    /* Opaque background color */
    color: white;
    transform: translateY(100%);
    animation: curtainEffect 6s ease-in-out infinite;
  }

  .sub-quote {
    margin-top: 2%;
    font-family: "Parkinsans", sans-serif;
    display: inline-block;
    padding: 1.5% 4%;
    font-size: 0.8rem;
    /* Large font size for the first line of text */
    background-color: rgba(204, 203, 203, 0.8);
    /* Opaque background color */
    color: rgb(0, 0, 0);
    transform: translateY(100%);
    animation: curtainEffect 6s ease-in-out infinite;
    margin-bottom: 2%;
  }

  /* Features Section */
  .features {
    background-color: white;
    background-blend-mode: lighten;
    padding: 10% 0;
    text-align: center;
    justify-content: center;
    align-items: center;
    overflow: hidden;
  }

  .features-container {
    overflow-x: hidden;
    justify-content: center;
    align-items: center;
    text-align: center;
  }

  .our-features {
    font-size: 1.2rem;
    font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
    ;
    margin-bottom: 5%;
  }

  .feature-grid {
    display: flex;
    flex-direction: column;
    max-width: 100%;
    margin: 3% auto;
    overflow-x: hidden;
  }

  .feature {
    background: whitesmoke;
    margin-bottom: 30%;
    margin-left: 5%;
    margin-right: 5%;
    max-width: 90%;
    height: auto;
  }

  .feature img {
    width: 100%;
    height: auto;
  }

  .feature .title {
    font-size: 1rem;
    font-weight: 600;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    margin: 10px 0 10px;
  }

  .feature .sub-title {
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    font-size: 0.8rem;
    margin: 0 5%;
  }

  .feature .price {
    padding-top: 3%;
    padding-bottom: 5%;
    font-size: 1rem;
    font-family: 'Times New Roman', Times, serif;
    font-weight: bolder;
  }

  .button-container {
    margin-top: -5%;
    display: flex;
    position: relative;
    padding-top: 5%;
    height: 50%;
    width: 100%;
  }


  .details-btn,
  .book-btn,
  .back-btn {
    height: 30%;
    width: 50%;
    font-size: 1rem;
    color: whitesmoke;
    background-color: rgb(49, 81, 30);
    padding: 10px 0;
    border: none;
    cursor: pointer;
    text-decoration: none;
    font-family: "Playfair", serif;
    ;
  }

  .details-btn:hover,
  .book-btn:hover {
    background-color: rgb(36, 60, 22);
  }


  /* Quotes Section */
  .quote-container {
    padding: 40px 0;
    text-align: center;
  }


  .quote-1 {
    padding-top: 3%;
    font-family: "Dancing Script", cursive;
    font-size: 1rem;
    margin-bottom: 2%;
    color: rgb(80, 154, 102);
  }

  .quote-2 {
    font-family: "Playfair", serif;
    font-size: 1rem;
    font-weight: 100;
  }


  /* Accommodation Page */
  .accommodation {
    width: 100%;
    margin: 0 auto;
    background-color: rgb(214, 192, 179);
  }

  .accommodation-header {
    font-family: 'Times New Roman', Times, serif;
    font-weight: 500;
    font-size: 2rem;
    color: rgb(73, 54, 40);
    text-align: center;
    padding-top: 4%;
  }

  .package {
    margin: 3%;
    background-color: rgb(228, 224, 225);
    color: rgb(73, 54, 40);
    padding-left: 5%;
    padding-top: 2%;
    padding-bottom: 2%;
    border-radius: 2%;
  }

  .package-name {
    align-items: left;
    font-family: 'Times New Roman', Times, serif;
    font-weight: 500;
    font-size: 1.5rem;
    padding-bottom: 2%;
  }

  .Package-Includes p {
    font-family: 'Times New Roman', Times, serif;
    font-size: 1rem;
  }

  .meal {
    display: flex;
    list-style: none;
    padding: 1%;
    font-family: 'Times New Roman', Times, serif;
  }

  .package-facilities {
    display: flex;
    list-style: none;
    padding: 1%;
    font-family: 'Times New Roman', Times, serif;
  }

  .Package-Includes li {
    padding-left: 2%;
    font-size: 0.5rem;
  }

  .thali-container {
    display: flex;
    padding: 2%;
  }

  .thali {
    width: 100%;
    font-family: 'Times New Roman', Times, serif;
  }

  .thali p {
    font-size: 0.8rem;
    padding-bottom: 1.5%;
  }

  .thali ul {
    list-style: inside;
  }

  .thali li {
    padding: 0.5%;
  }

  .back-btn {
    height: 20%;
    width: 20%;
    font-size: 0.8rem;
    color: whitesmoke;
    background-color: rgb(73, 54, 40);
    padding: 10px 0;
    border: none;
    cursor: pointer;
    text-decoration: none;
    font-family: "Playfair", serif;
    ;
  }


  /* Gallery */

  .our-space {
    height: auto;
    width: 100%;
    background-color: rgb(245, 239, 231);
    align-items: center;
    justify-content: center;
    text-align: center;
  }

  .our-space p {
    color: rgb(33, 53, 85);
    font-family: "Dancing Script", cursive;
    font-size: 2rem;
    padding-top: 5%;
  }

  #images-wrapper {
    line-height: 1;
    -webkit-column-count: 3;
    -webkit-column-gap: 0px;
    -moz-column-count: 3;
    -moz-column-gap: 0px;
    column-count: 3;
    column-gap: 0;
  }

  #images-wrapper img {
    width: 100% !important;
    height: auto !important;
  }

  #images-wrapper img:hover {
    transform: scale(1.05);
    transition: transform 0.5s ease-in-out;
  }

  #images-wrapper {
    display: inline-block;
    margin: 2%;

  }

  /* Facilities Section */
  .facilities {
    height: auto;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    overflow: hidden;
  }

  .facilities-container {
    background-color: #3b3a47;
    height: auto;
    width: 100%;
    display: flexbox;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    overflow: hidden;
  }

  .facilities-grid {
    padding-top: 10%;
    display: flex;
    gap: 2rem;
    justify-content: space-evenly;
    padding-left: 5%;
    padding-right: 5%;
  }

  .facility {
    justify-content: space-around;
    text-align: left;
    height: 100%;
    max-width: 28%;
    padding-bottom: 10%;
  }

  .facility-title {
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    font-size: 0.8rem;
    font-weight: 400;
    color: rgb(255, 255, 255);
    margin-bottom: 4%;
  }

  .facility-sub-title {
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    font-size: 0.5rem;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 2%;
  }

  .facility-icon {
    height: 25%;
    width: 25%;
    animation: zoomInIcon 2s ease forwards;
    animation-delay: 0.5s;
    margin-bottom: 10px;
    filter: invert(1);
  }

  .facility-icon:hover {
    animation: zoomInIcon 1s ease infinite;
  }


  /* Amenities */
  @import url('https://fonts.googleapis.com/css?family=Roboto:700');

  .amenities {
    background-color: rgb(253, 247, 244);
    align-items: center;
    justify-content: center;
    padding-top: 2%;
    display: flex;
    flex-direction: column;
    width: 100%;
    text-align: center;
    gap: 30%;
    padding-bottom: 2%;
    padding-left: 10%;
    padding-right: 10%;
  }

  .amenities-title {
    font-size: 2rem;
    color: #123524;
  }

  .amenities-sub-title {
    font-size: 1rem;
    padding-top: 2%;
    color: #3E7B27;
  }

  .amenity {
    padding-top: 5%;
    color: #123524;
    font-family: Roboto, Arial, sans-serif;
    height: auto;
    position: relative;
    width: 100%;
    display: none;
    opacity: 0;
    transition: opacity 1s ease-in-out;
  }

  .amenity.active {
    display: block;
    opacity: 1;
  }

  .amenity>div {
    height: 50%;
    overflow: hidden;
    position: relative;
    width: 100%;
  }

  .amenity>div div {
    font-size: 0.8rem;
    padding: 2vmin 0;
    position: relative;
  }

  .amenity>div div span {
    display: block;
  }

  .amenity>div.text-top {
    border-bottom: 0.2vmin solid black;
    top: 0;
  }

  .amenity>div.text-top div {
    animation: showTopText 1s;
    animation-delay: 1.5s;
    animation-fill-mode: forwards;
    bottom: 0;
    transform: translate(0, 100%);
  }

  .amenity>div.text-top div span:first-child {
    color: #3E7B27;
  }

  .amenity>div.text-bottom {
    bottom: 0;
  }

  .amenity>div.text-bottom div {
    animation: showBottomText 1s;
    animation-delay: 0.5s;
    animation-fill-mode: forwards;
    top: 0;
    transform: translate(0, -100%);
  }

  #room-section {
    padding-bottom: 5%;
  }

  .mySlides {
    display: none;
  }

  img {
    vertical-align: middle;
    height: 20vh;
    width: auto;
  }

  .slideshow-container {
    max-width: 40vw;
    max-height: 20vh;
    position: relative;
    margin: auto;
    padding-top: 5%;
  }

  /* Fading animation */
  .fade {
    animation-name: fade;
    animation-duration: 1s;
  }

  /* Booking */
  #booking-section {
    width: 100%;
    height: auto;
    background-color: rgb(253, 247, 244);
    padding: 5% 0;
  }

  .booking-container {
    width: 100%;
    display: flex;
    justify-content: center;
    /* Center horizontally within container */
  }

  .form-container {
    background: #ffffffc4;
    padding: 10px;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    width: 85%;
  }

  h2 {
    text-align: center;
    margin-bottom: 20px;
  }

  .form-group {
    margin-bottom: 15px;
  }

  .form-group label {
    color: rgb(104, 87, 82);
    display: block;
    margin-bottom: 5px;
    font-weight: bold;
  }

  .form-group input,
  .form-group select {
    width: 100%;
    padding: 10px;
    border: 1px solid #ccc;
    color: rgb(104, 87, 82);
    border-radius: 5px;
  }

  .form-group button {
    width: 100%;
    padding: 10px;
    background-color: rgb(142, 180, 134);
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 1rem;
  }

  .form-group button:enabled {
    background-color: rgb(89, 155, 76);
  }

  .form-group button:enabled:hover {
    background-color: rgb(69, 121, 58);
  }

  .message {
    font-size: 0.8rem;
    display: none;
    margin-top: 20px;
    padding: 10px;
    background-color: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
    border-radius: 5px;
    text-align: center;
  }

  /* Footer styling */
  .footer {
    background-color: #000000;
    color: #fff;
    padding: 1% 2%;
    text-align: center;
    display: flexbox;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
  }

  .footer-container {
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    justify-content: space-evenly;
    margin-bottom: 3%;
  }

  .footer-icons {
    margin-top: 2%;
  }

  .address {
    font-family: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
    font-size: 0.8rem;
  }

  .hotel-name {
    font-family: Cambria, Cochin, Georgia, Times, 'Times New Roman', serif;
    font-size: 1rem;
  }

  .footer-icons a {
    margin: 0 1rem;
    text-decoration: none;
  }

  .footer-icons img {
    width: 4%;
    height: auto;
    filter: invert(1);
    transition: transform 0.3s ease;
  }

  .footer-icons img:hover {
    transform: scale(1.2);
  }

  .footer-bottom {
    margin-top: 1rem;
    border-top: 1px solid #444;
    padding-top: 1rem;
    font-size: 0.5rem;
  }

  .footer-bottom p {
    margin: 0;
  }
}

@media (min-width:510px) and (max-width: 900px) {
  * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }

  html {
    scroll-behavior: smooth;
  }

  body {
    font-family: "Playfair", serif;
    font-style: normal;
    color: #333;
    overflow: hidden;
    /* line-height: 1.6; */
    scroll-behavior: smooth;
    /* Enables smooth scrolling */
  }

  .container {
    width: 100%;
    margin: 0 auto;
    max-width: 90%;
    display: flex;
    justify-content: space-between;
  }

  /* Header */
  .header {
    background: #3e3e3e;
    color: #fff;
    padding: 0.5rem 0;
    display: flex;
    justify-content: space-between;
  }

  .header .logo {
    font-size: 1.3rem;
    font-weight: 200;
  }

  .header .btn {
    background: #f0a500;
    color: #fff;
    padding: 0.3rem 1rem;
    border: none;
    border-radius: 5px;
    text-decoration: none;
    font-size: 1rem;
    animation: growButton 3s ease-in-out infinite;
  }



  .header .btn:hover {
    background: #e08900;
    animation: ease-in;
  }

  .hero {
    height: 120vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    /* For absolute positioning of text */
    overflow: hidden;
    /* Ensure content doesn't overflow */
    z-index: 1;
    /* Place it behind the content */
  }

  .hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('images/home/image1.jpg') no-repeat center/cover;
    background-blend-mode: hue;
    z-index: -1;
    animation: growBackground 6s ease infinite;
  }


  .hero-content {
    height: 120vh;
    width: auto;
    padding-top: 10%;
  }

  .hero-content img {
    height: 15vh;
    width: auto;
    margin-bottom: 5%;
  }


  .nav ul {
    display: flex;
    justify-content: space-evenly;
    list-style: none;
  }

  .nav ul li {
    margin: 0 1rem;
  }

  .nav ul li a {
    color: #000000;
    text-decoration: none;
    font-family: Arial, Helvetica, sans-serif;
    font-weight: 100;
    font-size: 1rem;
  }

  .nav ul li a:hover {
    color: rgba(34, 58, 2);
    cursor: pointer;
  }

  .text {
    margin-top: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    /* Slide-up effect for text */
  }

  .quote {
    font-family: "Parkinsans", sans-serif;
    display: inline-block;
    padding: 1.5% 4%;
    font-weight: 400;
    font-size: 2rem;
    /* Large font size for the first line of text */
    background-color: rgba(117, 160, 60, 0.85);
    /* Opaque background color */
    color: white;
    transform: translateY(100%);
    animation: curtainEffect 6s ease-in-out infinite;
  }

  .sub-quote {
    margin-top: 2%;
    font-family: "Parkinsans", sans-serif;
    display: inline-block;
    padding: 1.5% 4%;
    font-size: 1.5rem;
    /* Large font size for the first line of text */
    background-color: rgba(204, 203, 203, 0.8);
    /* Opaque background color */
    color: rgb(0, 0, 0);
    transform: translateY(100%);
    animation: curtainEffect 6s ease-in-out infinite;
    margin-bottom: 2%;
  }

  /* Features Section */
  .features {
    background-color: white;
    background-blend-mode: lighten;
    padding: 10% 0;
    text-align: center;
  }

  .our-features {
    font-size: 2rem;
    font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
    ;
    margin-bottom: 5%;
  }

  .feature-grid {
    display: flex;
    flex-direction: column;
    max-width: 60%;
    margin: 3% auto;
  }

  .feature {
    background: whitesmoke;
    margin-bottom: 30%;
    height: auto;
  }

  .feature img {
    width: 100%;
    height: 60%;
  }

  .feature .title {
    font-size: 1.5rem;
    font-weight: 600;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    margin: 10px 0 10px;
  }

  .feature .sub-title {
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    font-size: 1rem;
    margin: 0 5%;
  }

  .feature .price {
    padding-top: 3%;
    padding-bottom: 5%;
    font-size: 1.5rem;
    font-family: 'Times New Roman', Times, serif;
    font-weight: bolder;
  }

  .button-container {
    margin-top: -5%;
    display: flex;
    position: absolute;
    padding-top: 5%;
    height: 50%;
    width: 100%;
  }


  .details-btn,
  .book-btn,
  .back-btn {
    height: 30%;
    width: 50%;
    font-size: 1.5rem;
    color: whitesmoke;
    background-color: rgb(49, 81, 30);
    padding: 10px 0;
    border: none;
    cursor: pointer;
    text-decoration: none;
    font-family: "Playfair", serif;
    ;
  }

  .details-btn:hover,
  .book-btn:hover {
    background-color: rgb(36, 60, 22);
  }


  /* Quotes Section */
  .quote-container {
    padding: 40px 0;
    text-align: center;
  }


  .quote-1 {
    padding-top: 3%;
    font-family: "Dancing Script", cursive;
    font-size: 2rem;
    margin-bottom: 2%;
    color: rgb(80, 154, 102);
  }

  .quote-2 {
    font-family: "Playfair", serif;
    font-size: 1.5rem;
    font-weight: 100;
  }


  /* Accommodation Page */
  .accommodation {
    width: 100%;
    margin: 0 auto;
    background-color: rgb(214, 192, 179);
  }

  .accommodation-header {
    font-family: 'Times New Roman', Times, serif;
    font-weight: 500;
    font-size: 2rem;
    color: rgb(73, 54, 40);
    text-align: center;
    padding-top: 4%;
  }

  .package {
    margin: 3%;
    background-color: rgb(228, 224, 225);
    color: rgb(73, 54, 40);
    padding-left: 5%;
    padding-top: 2%;
    padding-bottom: 2%;
    border-radius: 2%;
  }

  .package-name {
    align-items: left;
    font-family: 'Times New Roman', Times, serif;
    font-weight: 500;
    font-size: 1.5rem;
    padding-bottom: 2%;
  }

  .Package-Includes p {
    font-family: 'Times New Roman', Times, serif;
    font-size: 1rem;
  }

  .meal {
    display: flex;
    list-style: none;
    padding: 1%;
    font-family: 'Times New Roman', Times, serif;
  }

  .package-facilities {
    display: flex;
    list-style: none;
    padding: 1%;
    font-family: 'Times New Roman', Times, serif;
  }

  .Package-Includes li {
    padding-left: 2%;
    font-size: 0.7rem;
  }

  .thali-container {
    display: flex;
    padding: 2%;
  }

  .thali {
    width: 100%;
    font-family: 'Times New Roman', Times, serif;
  }

  .thali p {
    font-size: 0.8rem;
    padding-bottom: 1.5%;
  }

  .thali ul {
    list-style: inside;
  }

  .thali li {
    padding: 0.5%;
  }

  .back-btn {
    height: 20%;
    width: 20%;
    font-size: 0.8rem;
    color: whitesmoke;
    background-color: rgb(73, 54, 40);
    padding: 10px 0;
    border: none;
    cursor: pointer;
    text-decoration: none;
    font-family: "Playfair", serif;
    ;
  }


  /* Gallery */

  .our-space {
    height: auto;
    width: 100%;
    background-color: rgb(245, 239, 231);
    align-items: center;
    justify-content: center;
    text-align: center;
  }

  .our-space p {
    color: rgb(33, 53, 85);
    font-family: "Dancing Script", cursive;
    font-size: 2rem;
    padding-top: 5%;
  }

  #images-wrapper {
    line-height: 1;
    -webkit-column-count: 3;
    -webkit-column-gap: 0px;
    -moz-column-count: 3;
    -moz-column-gap: 0px;
    column-count: 3;
    column-gap: 0;
  }

  #images-wrapper img {
    width: 100% !important;
    height: auto !important;
  }

  #images-wrapper img:hover {
    transform: scale(1.05);
    transition: transform 0.5s ease-in-out;
  }

  #images-wrapper {
    display: inline-block;
    margin: 2%;

  }

  /* Facilities Section */
  .facilities {
    height: auto;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    overflow: hidden;
  }

  .facilities-container {
    background-color: #3b3a47;
    height: auto;
    width: 100%;
    display: flexbox;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    overflow: hidden;
  }

  .facilities-grid {
    padding-top: 10%;
    display: flex;
    gap: 2rem;
    justify-content: space-evenly;
    padding-left: 5%;
    padding-right: 5%;
  }

  .facility {
    justify-content: space-around;
    text-align: left;
    height: 100%;
    max-width: 28%;
    padding-bottom: 10%;
  }

  .facility-title {
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    font-size: 1rem;
    font-weight: 400;
    color: rgb(255, 255, 255);
    margin-bottom: 4%;
  }

  .facility-sub-title {
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    font-size: 0.8rem;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 2%;
  }

  .facility-icon {
    height: 25%;
    width: 25%;
    animation: zoomInIcon 2s ease forwards;
    animation-delay: 0.5s;
    margin-bottom: 10px;
    filter: invert(1);
  }

  .facility-icon:hover {
    animation: zoomInIcon 1s ease infinite;
  }


  /* Amenities */

  .amenities {
    background-color: rgb(253, 247, 244);
    align-items: center;
    justify-content: center;
    padding-top: 2%;
    display: flex;
    flex-direction: column;
    width: 100%;
    text-align: center;
    gap: 30%;
    padding-bottom: 2%;
    padding-left: 10%;
    padding-right: 10%;
  }

  .amenities-title {
    font-size: 2rem;
    color: #123524;
  }

  .amenities-sub-title {
    font-size: 1rem;
    padding-top: 2%;
    color: #3E7B27;
  }

  .amenity {
    padding-top: 5%;
    color: #123524;
    font-family: Roboto, Arial, sans-serif;
    height: auto;
    position: relative;
    width: 100%;
    display: none;
    opacity: 0;
    transition: opacity 1s ease-in-out;
  }

  .amenity.active {
    display: block;
    opacity: 1;
  }

  .amenity>div {
    height: 50%;
    overflow: hidden;
    position: relative;
    width: 100%;
  }

  .amenity>div div {
    font-size: 1rem;
    padding: 2vmin 0;
    position: relative;
  }

  .amenity>div div span {
    display: block;
  }

  .amenity>div.text-top {
    border-bottom: 0.2vmin solid black;
    top: 0;
  }

  .amenity>div.text-top div {
    animation: showTopText 1s;
    animation-delay: 1.5s;
    animation-fill-mode: forwards;
    bottom: 0;
    transform: translate(0, 100%);
  }

  .amenity>div.text-top div span:first-child {
    color: #3E7B27;
  }

  .amenity>div.text-bottom {
    bottom: 0;
  }

  .amenity>div.text-bottom div {
    animation: showBottomText 1s;
    animation-delay: 0.5s;
    animation-fill-mode: forwards;
    top: 0;
    transform: translate(0, -100%);
  }

  #room-section {
    padding-bottom: 5%;
  }

  .mySlides {
    display: none;
  }

  img {
    vertical-align: middle;
    height: 30%;
    width: auto;
  }

  .slideshow-container {
    max-width: 40vw;
    max-height: 30%;
    position: relative;
    margin: auto;
    padding-top: 5%;
  }

  /* Fading animation */
  .fade {
    animation-name: fade;
    animation-duration: 1s;
  }

  /* Booking */
  #booking-section {
    width: 100%;
    height: auto;
    background-color: rgb(253, 247, 244);
    padding: 5% 0;
  }

  .booking-container {
    width: 100%;
    display: flex;
    justify-content: center;
    /* Center horizontally within container */
  }

  .form-container {
    background: #ffffffc4;
    padding: 10px;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    width: 60%;
  }

  h2 {
    text-align: center;
    margin-bottom: 20px;
  }

  .form-group {
    margin-bottom: 15px;
  }

  .form-group label {
    color: rgb(104, 87, 82);
    display: block;
    margin-bottom: 5px;
    font-weight: bold;
  }

  .form-group input,
  .form-group select {
    width: 100%;
    padding: 10px;
    border: 1px solid #ccc;
    color: rgb(104, 87, 82);
    border-radius: 5px;
  }

  .form-group button {
    width: 100%;
    padding: 10px;
    background-color: rgb(142, 180, 134);
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 1rem;
  }

  .form-group button:enabled {
    background-color: rgb(89, 155, 76);
  }

  .form-group button:enabled:hover {
    background-color: rgb(69, 121, 58);
  }

  .message {
    font-size: 0.8rem;
    display: none;
    margin-top: 20px;
    padding: 10px;
    background-color: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
    border-radius: 5px;
    text-align: center;
  }

  /* Footer styling */
  .footer {
    background-color: #000000;
    color: #fff;
    padding: 1% 2%;
    text-align: center;
    display: flexbox;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
  }

  .footer-container {
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    justify-content: space-evenly;
    margin-bottom: 3%;
  }

  .footer-icons {
    margin-top: 2%;
  }

  .address {
    font-family: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
    font-size: 1rem;
  }

  .hotel-name {
    font-family: Cambria, Cochin, Georgia, Times, 'Times New Roman', serif;
    font-size: 1.2rem;
  }

  .footer-icons a {
    margin: 0 1rem;
    text-decoration: none;
  }

  .footer-icons img {
    width: 3%;
    height: auto;
    filter: invert(1);
    transition: transform 0.3s ease;
  }

  .footer-icons img:hover {
    transform: scale(1.2);
  }

  .footer-bottom {
    margin-top: 1rem;
    border-top: 1px solid #444;
    padding-top: 1rem;
    font-size: 0.5rem;
  }

  .footer-bottom p {
    margin: 0;
  }
}