@import url('https://fonts.googleapis.com/css2?family=Cinzel+Decorative:wght@400;700;900&family=Open+Sans:ital,wght@0,300..800;1,300..800&display=swap');
/* general styling */

@font-face {
  font-family: "Minion Pro";
  src: local("Minion Pro"),
    url("./webfonts/MinionPro-Regular.woff") format("woff"),
    url("./webfonts/MinionPro-Medium.woff") format("woff"),
    url("./webfonts/MinionPro-Semibold.woff") format("woff");
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: "Open Sans", sans-serif;
  margin: 0;
}

a {
  color: black;
  text-decoration: none;
}

.container {
  max-width: 1170px;
  width: 100%;
  padding: 0 15px;
  margin: 0 auto;
}

/* Header section */
header {
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 100;
  background-color: #00000052;
  transition: all 0.3s ease-in-out;
}
header .container {
  max-width: 1400px;
  overflow: visible;
}

header.active {
  background-color: #fff;
}

header::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.05);
  box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.05);
  z-index: -2;
}

header.active::before {
  background-color: #fff;
  transition: all 0.3s ease-in-out;
}

header.active #menu-btn {
    color: #ff8c00;
  }

  .buttons {
    display: flex;
    gap: 20px;
  }

  #menu-btn {
    display: block;
    border: none;
    font-size: 25px;
    background: transparent;
    color: #fff;
    cursor: pointer;
  }

  header .nav-items a {
    padding: 15px;
    font-size: 16px;
  }

  .fa-phone {
    padding: 9px;
    font-size: 18px;
    background: rgb(255, 140, 0, 0.7);
  }

  header .nav-items {
    flex-direction: column;
    position: absolute;
    top: 100%;
    width: 10rem;
    background-color: #ff8c00;
    height: auto;
    width: 10rem;
    box-shadow: 0px 20px 14px 0px rgb(0 0 0 / 20%);
    right: -100%;
    z-index: 2;
    transition: right 0.2s ease-in-out;
  }

  header .nav-items.active {
    right: 0;
    color: #ffffff;
  }

  header .nav-items.active a {
    text-align: center;
    width: 100%;
    color: #fff;
  }

header nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 18px;
  font-weight: 600;
  gap: 20px;
}

header .nav-items {
  max-width: 500px;
  width: 15rem;
  display: block;
  padding: 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}

header .nav-items a {
  color: #fff;
}

header.active .nav-items a {
  color: #FFF;
}

.buttons a {
  color: #ff8c00;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 5px;
  min-width: 210px;
  width: 100%;
  transition: all 0.3s ease 0s;
}

    .buttons svg {
        transition: all 0.3s ease 0s;
        padding: 10px;
        fill: #fff;
        background-color: #ff8c00;
        border-radius: 100%;
        width: 38px;
    }

@media (max-width: 768px) {
  .buttons a {
      position: fixed;
      display: block;
      bottom: 10px;
      left: 10px;
      width: 36px;
      min-width: 0;
  }

    .buttons svg {
    transition: all 0.3s ease 0s;
    padding: 10px;
    fill: #fff;
    background-color: #ff8c00;
    border-radius: 100%;
    width: 38px;
  }

  .buttons a > p {
        display: none;
  }

  .site-logo a > img {
        width: 150px;
  }

}

/* #menu-btn {
  display: none;
} */

/* Hero Section */
#hero-section {
  min-height: 600px;
  height: calc(100vh + 38px);
  overflow: hidden;
}

.hero-carousel {
  position: relative;
  width: 100%;
  height: 100%;
}

.hero-carousel .hero-title {
  position: absolute;
  bottom: 5px;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  text-transform: uppercase;
  color: #fff;
  font-size: 18px;
}

.hero-carousel .hero-title > h1 {
  font-size: 28px;	
}

.hero-carousel .hero-title > h1::after {
  content: "";
  width: 100px;
  height: 5px;
  background: #fff;
  display: block;
  margin: 20px auto;
}

.hero-carousel .hero-title h2 {
  font-size: 18px;
}

.hero-carousel .prev {
  color: #fff;
  font-size: 14px;
  display: inline-block;
  border-radius: 50%;
  opacity: 1;
  transition: 0.5s;
  width: 55px;
  height: 55px;
  line-height: 55px;
  background-color: transparent;
  border: 2px solid #fff;
  position: absolute;
  left: 50px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 25px;
  color: #fff;
  transition: all 0.2s ease-in-out;
}

.hero-carousel .prev svg {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  fill: #fff;
  width: 15px;
}

.hero-carousel .next {
  color: #fff;
  font-size: 14px;
  display: inline-block;
  border-radius: 50%;
  opacity: 1;
  transition: 0.5s;
  width: 55px;
  height: 55px;
  line-height: 55px;
  background-color: transparent;
  border: 2px solid #fff;
  position: absolute;
  right: 50px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 25px;
  color: #fff;
  transition: all 0.2s ease-in-out;
}

.hero-carousel .next svg {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  fill: #fff;
  width: 15px;
}

.hero-carousel > ul {
  padding: 0;
  margin: 0;
}

.slide {
  position: absolute;
  top: 0;
  z-index: -1;
  opacity: 0;
  height: 100%;
  width: 100%;
  transition: opacity 0.5s ease-in-out;
  transition-delay: 0.5s;
}

.slide.active {
  opacity: 1;
  transition: opacity 0.5s ease-in-out;
  transition-delay: 0s;
}

.slide > img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: brightness(0.9);
}

@media (max-width: 768px) {
    .hero-carousel .next {
        width: 45px;
        height: 45px;
        line-height: 45px;
        right: 10px;
        font-size: 15px;
    }

    .hero-carousel .prev {
        width: 45px;
        height: 45px;
        line-height: 45px;
        left: 10px;
        font-size: 15px;
    }
}

/* Booking Section */
#booking-section form {
  display: flex;
  align-items: center;
  padding: 10px 10px 10px 50px;
  background-color: #fff;
  box-shadow: 0px 4px 30px rgba(0, 0, 0, 0.1);
  margin: -30px auto 30px;
  max-width: 1024px;
  position: relative;
  z-index: 1;
  border-radius: 40px;
  max-width: 800px;
}

.name-container,
.email-container,
.contact-container {
  width: 25%;
}

.name-container input,
.email-container input,
.contact-container input {
  width: 100%;
  /* height: 58px; */
  font-size: 18px;
  border: none;
  padding: 10px;
  outline: none;
}

.email-container input {
  border: solid 1px #dedbdb;
  border-top: none;
  border-bottom: none;
}

.book-now-btn {
  width: 20%;
  /* height: 58px; */
  margin: 0 0 0 auto;
}

.book-now-btn > button {
  width: 100%;
  font-weight: 500;
  cursor: pointer;
  border: none;
  background-color: #ff8c00;
  color: #fff;
  font-size: 18px;
  padding: 10px;
  border-radius: 40px;
}

@media (max-width:768px) {
  #booking-section form {
    padding: 15px;
  }

  .name-container input,
  .email-container input,
  .contact-container input {
    font-size: 15px;
  }

  .name-container input,
  .email-container input,
  .contact-container input {
    padding: 10px 0 10px 5px;
  }

  .book-now-btn > button {
        font-size: 15px;
        padding: 10px 5px;
    }
  
}

/* Call to Action button */
.btn-home-bg {
  background-color: #ff8c00;
  border: 1px solid #ff8c00;
  border-radius: 30px;
  color: #fff;
  font-size: 15px;
  padding: 12px 32px;
  transition: all 0.3s ease 0s;
  font-weight: 500;
  letter-spacing: 0.5px;
  text-transform: capitalize;
  display: inline-block;
}

.btn-home-bg:hover,
.btn-home-bg:focus {
  background-color: #fff;
  color: #ff8c00;
  border-color: #fff;
}

/* Introduction Section */
#introduction {
    padding:80px 0 40px;
    position:relative;
    text-align:center
}

#introduction .heading h1 {
    /* text-transform:uppercase; */
    font-size:45px;
    color:#eb7e23;
    margin:0 0 10px;
    font-family: 'Cinzel Decorative';
}
#introduction .heading h3 {
    font-size:22px;
    margin:0 0 40px;
    font-weight:600
}
#introduction .desc {
    font-size:18px
}

.desc .tagline p {
    display:inline;
}
.desc .desc-para {
    max-width:1080px;
    margin:0 auto
}
.desc .desc-para p {
    margin:0 0 20px;
    text-align:justify;
    text-align-last: center;
}

@media (max-width:768px) {
  #introduction .heading h1 {
    font-size: 30px;
  }
  #introduction .heading h3 {
    font-size: 18px;
  }

  #introduction .desc {
    font-size: 16px;
}

}

/* Specifications Section */
#specs {
    padding:0 0 40px;
    text-align:center
}

#specs .heading h2 {
    /* text-transform:uppercase; */
    font-size:30px;
    color:#eb7e23;
    margin:0 0 20px;
    font-family: 'Cinzel Decorative';
    text-align: center;
}

#specs .flex-container .top {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
}

#specs .flex-container .bottom {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
}

#specs .spec-cells  {
    color:#fff;
    width:fit-content;
    padding:5px 20px;
    border-radius:20px;
    background-color:#eb7e23;
    margin:0 0 10px;
    /* text-transform:uppercase; */
}

#specs .spec-cells span {
    font-weight:700;
}

@media (max-width: 768px) {
    #specs .heading h2 {
        font-size: 24px;
    }

    #specs .spec-cells {
        padding: 5px 15px;
        font-size: 14px;
    }

    #specs .flex-container .top,
    #specs .flex-container .bottom {
        flex-direction: column;
        gap: 5px;
    }
}

/* Features Section Styling */
.features-container {
    max-width: 1170px;
    margin: 0 auto;
    padding: 40px 15px;
}

.features-border {
    border: 3px solid #eb7e23;
    border-radius: 40px;
    padding: 40px 20px;
    text-align: center;
}

.features-title {
    font-size:30px;
    color:#eb7e23;
    margin:0 0 40px;
    font-family: 'Cinzel Decorative';
    text-align: center;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr); /* 4 columns for desktop */
    gap: 30px;
    text-align: center;
}

/* Responsive Grid for Tablets/Phones */
@media (max-width: 900px) {
    .features-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .features-title {
    font-size: 24px;
  }
}

@media (max-width: 500px) {
    .features-grid { grid-template-columns: 1fr; }
}

.feature-item {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.icon-box {
    background-color: #b3c6a3;
    width: 120px;
    height: 120px;
    border-radius: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
}

.icon-box img {
    width: 70%; /* Adjust based on your icon sizes */
    height: auto;
}

.feature-item p {
    font-size: 0.9rem;
    line-height: 1.3;
    color: #000;
}

.details-container {
    max-width: 1170px;
    margin: 60px auto;
    padding: 0 15px;
    position: relative;
}

.details-container > img {
    margin: 0 0 20px;
    width: 100%;
    max-height: 75vh;
    object-fit: cover;
    object-position: bottom;
    border-radius: 20px;
}

/* Table Styling */
.table-wrapper {
    margin-bottom: 60px;
    overflow-x: auto; /* Ensures table is scrollable on small mobile screens */
}

.capacity-table {
    width: 100%;
    border-collapse: collapse;
    font-family: sans-serif;
}

.capacity-table th, .capacity-table td {
    border: 2px solid #eb7e23;
    padding: 15px;
    text-align: center;
}

.capacity-table th {
    font-size: 1.2rem;
    font-weight: bold;
}

/* Highlights Styling */
.highlights-title {
    font-family: 'Cinzel Decorative', serif;
    color: #eb7e23;
    font-size: 30px;
    margin-bottom: 25px;
}

.highlights-list {
    list-style: none;
    padding: 0;
    text-align: left;
    max-width: 800px;
}

.highlights-list li {
    position: relative;
    padding-left: 25px;
    margin-bottom: 12px;
    font-size: 1.05rem;
    color: #333;
}

/* Custom Square Bullet Point */
.highlights-list li::before {
    content: "\25A0";
    color: #000;
    position: absolute;
    left: 0;
    font-size: 1rem;
    top: 2px;
}

@media (max-width: 768px) {
    .highlights-title {
        font-size: 24px;
    }

    .highlights-list li {
        font-size: 1rem;
    }
}

/* About Section */
#about-section {
  padding: 40px 0 40px;
}

#about-section .flex-container {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 30px;
}

#about-section .flex-container .left {
  flex-basis: 50%;
  padding: 0 0 0 25px;
}

#about-section .flex-container .left > h2 {
  color: #ff8c00;
  margin: 0 0 10px;
  font-family: "Cinzel Decorative", serif;
  font-size: 30px;
}

#about-section .flex-container .left > h3 {
  font-family: "Open Sans", sans-serif;
  font-size: 20px;
  margin: 0 0 20px;
  text-transform: uppercase;
}

#about-section .flex-container .left > p {
  text-align: justify;
  line-height: 25px;
}

#about-section .flex-container .right {
  flex-basis: 50%;
}

#about-section .flex-container .right > img {
  width: 100%;
  border-radius: 0 20px 0 20px;
}

@media screen and (max-width: 1024px) {
  #about-section .flex-container {
    flex-direction: column;
    align-items: center;
  }

  #about-section .flex-container .right,
  #about-section .flex-container .left {
    padding: 0 25px;
  }
}

@media screen and (max-width: 768px) {
  #about-section .flex-container {
    flex-direction: column;
    align-items: center;
  }

  #about-section .flex-container .left > h2 {
    font-size: 24px;
    text-align: center;
  }

  #about-section .flex-container .left > p {
    font-size: 16px;
    text-align-last: center;
  }

  #about-section .flex-container .right,
  #about-section .flex-container .left {
    padding: 0;
  }
}

/* Footer */
footer {
  padding: 60px 0 0;
  background: rgba(255, 255, 255, 0.05);
  box-shadow: 0 -8px 32px 0 rgba(0, 0, 0, 0.05);
}

footer .flex-container {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin: 0 0 10px;
  padding: 0 0 5px;
  border-bottom: solid 1px #737373;
}

.credentials p {
  margin: 0 0 10px;
  font-size: 15px;
}

.credentials a {
  margin: 0 0 10px;
  font-size: 15px;
}

.credentials .socials {
  display: flex;
  gap: 10px;
  margin: 10px 0;
}

.credentials .socials a {
  font-size: 15px;
  width: 30px;
  height: 30px;
  background: rgb(255, 140, 0, 0.7);
  border-radius: 100%;
  text-align: center;
  margin: 5px 0;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.2s ease-in-out;
  color: #fff;
}

.footer-nav ul {
  list-style-type: none;
}

.footer-nav ul li {
  margin: 0 0 10px;
}

.footer-nav ul li a {
  transition: all 0.3s ease-in-out;
}

@media (max-width: 768px) {
    .footer-nav ul li {
    font-size: 12px;
  }

  .credentials p {
    margin: 0 0 10px;
    font-size: 12px;
  }

  .credentials a {
    margin: 0 0 10px;
    font-size: 12px;
  }

  .socialicons {
    display: none;
  }
}

/* General Reset */
.gallery-container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 40px 15px 60px;
}

.gallery-title {
    font-family: 'Cinzel Decorative', serif;
    font-size: 30px;
    text-align: center;
    color: #ff8c00; /* Earthy orange/brown */
    margin-bottom: 30px;
}

/* Grid Layout */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr); /* 3 equal columns */
    gap: 15px;
}

/* Individual Item Styling */
.grid-item {
    background-color: #ddd; /* Placeholder color */
    background-size: cover;
    background-position: center;
    max-height: 350px;
    border-radius: 4px;
}

.grid-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    border-radius: 4px;
}

/* Specific Sizes to match the Image */
.item-1 { grid-column: span 1; }
.item-2 { grid-column: span 2; }

.item-3 { grid-column: span 2; grid-row: span 1; }
.item-4 { grid-column: span 1; }

.item-5 { grid-column: span 1; }
.item-6 { grid-column: span 2; }

.item-7 { grid-column: span 2; }
.item-8 { grid-column: span 1; }

/* Responsive Adjustments */
@media (max-width: 768px) {
    .gallery-grid {
        grid-template-columns: 1fr; /* Stack everything on mobile */
    }
    
    .grid-item {
        grid-column: span 1 !important;
        min-height: 250px;
    }

    .gallery-title {
        font-size: 24px;
    }
}

/* Contact-us section */
#contactus-section {
  background: linear-gradient(rgba(255, 255, 255, 0), rgb(99 99 99 / 55%)), url(./images/contact-us.webp);
  position: relative;
  text-align: center;
  padding: 80px 0;
  display: flex;
  justify-content: center;
  align-items: center;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}

#contactus-section .flex-container {
  display: flex;
  justify-content: center;
  gap: 30px;
}

#contactus-section .flex-container .left .contact-img {
  width: 500px;
  height: 550px;
  object-fit: cover;
  border-radius: 0 50px 0 50px;
  box-shadow: 4px -1px 20px -6px #737373;
  display: none;
}

#contactus-section .flex-container .right {
  max-width: 550px;
  width: 100%;
  text-align: left;
}

#contactus-section .flex-container .right h2 {
  font-family: "Cinzel Decorative", serif;
  color: #ff8c00;
  font-size: 40px;
  margin: 0 0 20px;
  text-align: center;
}

#contactus-section .flex-container .right input {
  font-size: 14px;
  margin: 0 0 20px;
  border-radius: 20px;
  border: none;
  /*background-color: #dedbdb;*/
  background-color: #fff;
  padding: 10px 15px;
  outline: none;
  width: 100%;
}

#contactus-section .flex-container .right select {
    font-size: 14px;
    margin: 0 0 20px;
    border-radius: 20px;
    border: none;
    /* background-color: #dedbdb; */
    background-color: #fff;
    padding: 10px 15px;
    outline: none;
    width: 100%;
}

#contactus-section .flex-container .right label {
  display: block;
  margin: 0 0 5px;
  font-size: 14px;
  font-weight: 500;
  color: #fff;
}

#contactus-section .flex-container .right .name {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
}

.name .first-name {
  width: 45%;
}

.name .last-name {
  width: 45%;
}

#contactus-section .flex-container .right .dates {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
}

.dates .check-in-date {
  width: 45%;
}

.dates .check-out-date {
  width: 45%;
}

#contactus-section .flex-container .right .submit {
  text-align: center;
}

#contactus-section .flex-container .right input[type="button"] {
  max-width: 200px;
  background-color: #ff8c00;
  color: #fff;
  font-weight: 500;
}

.error {
  border: 1px solid red;
}

@media (max-width: 576px) {
    #contactus-section .flex-container .right h2 {
        font-size: 30px;
    }
}


#videos {
    text-align:center;
    padding:80px 0;
    position:relative
}
#videos .heading h2 {
    color: #ff8c00;
    margin: 0 0 50px;
    font-family: "Cinzel Decorative", serif;
    font-size: 30px;
}
#videos>img {
    position:absolute;
    z-index:-1000;
    width:100%;
    height:100%;
    left:0;
    top:40px;
    object-fit:cover;
    object-position:bottom
}
.video-thumbnail {
    position:relative
}
.video-thumbnail.active:hover .youtube-player {
    filter:brightness(.8)
}
.video-thumbnail .video-bg {
    position:absolute;
    width:950px;
    height:40px;
    background-color:#d7daaf;
    z-index:-1;
    top:50%;
    left:50%;
    transform:translate(-50%,-50%)
}
.video-thumbnail .fa-play {
    display:none;
    cursor:pointer
}
.video-thumbnail.active .fa-play {
    display:block;
    padding:20px 20px 20px 24px;
    width:70px;
    height:70px;
    font-size:30px;
    background-color:#eb7e23;
    color:#fff;
    border-radius:100%;
    position:absolute;
    top:50%;
    left:50%;
    transform:translate(-50%,-50%);
    transition:all ease-in-out 0.2s;
    z-index:1
}
#videos .youtube-player {
    max-width:830px;
    max-height:480px;
    height:95%;
    width:95%;
    margin:0 auto;
    transition:all ease-in-out 0.2s
}
#videos .youtube-player img {
    width:100%
}

@media screen and (max-width: 576px) {
    #videos .heading h2 {
        font-size: 24px;
    }
}