@import url('https://fonts.googleapis.com/css2?family=Farro:wght@300;400;500;700&family=Lora:ital,wght@0,400..700;1,400..700&family=Montserrat:ital,wght@0,100..900;1,100..900&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');
*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html{
    scroll-behavior: smooth;
    overflow-x: hidden;
}
:root{
--primary-color:#b76f3c;
--secondary-color:#123935;
--third-color:#ffebd6;
--white:#fff;
--black:#000;
--first-font:"Montserrat", serif;
--second-font:"Poppins", serif;
--third-font:"Lora", serif;
--fourth-font:"Farro", serif;
}


.header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: var(--secondary-color);
    color: var(--white);
    padding: 10px 20px;
    position: fixed;
    z-index: 99;
    width: 100%;
    box-shadow: 0px 2px 6px #372e2e;
  }
  
  .logo {
    font-size: 1.5rem;
    width: 170px;
    font-weight: bold;
    display: inline-flex;
    align-items: center;
    justify-content: space-between;
    font-family: var(--first-font);
  }
  
  .logo img{
    width: 100%;
    border-right: 1px solid white;
    padding: 0px 10px;
  }
  .nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
  }
  
  .nav ul li {
    margin: 0 15px;
  }
  
  @media (max-width: 768px) {
    .hero-section .row {
      display: flex;
      flex-direction: column-reverse; /* Reverse the column order */
    }
    
    .nav ul li a{
        font-size: 15px;
    }
  }
  
  .nav ul li a {
    text-decoration: none;
    color: #a3a3a3;
    font-family: var(--first-font);
    font-weight: 500;
    text-transform: uppercase;
    font-size: 11px;
  }
  
  .nav ul li a:hover{
    color: var(--white);
  }
  .desktop-menu {
    display: flex;
  }
  
  .mobile-menu {
    display: none!important;
    flex-direction: column;
    background-color: var(--secondary-color);
    position: absolute;
    top: 60px;
    right: 0;
    left: 0;
    padding: 10px;
    opacity: 0;
    transform: translateY(-10px);
    transition: opacity 0.3s ease, transform 0.3s ease;
    z-index: 1000;
  }
  
  .mobile-menu.open {
    display: flex;
    opacity: 1;
    transform: translateY(0);
  }
  
  .mobile-menu ul {
    flex-direction: column;
    align-items: center;
  }
  
  .mobile-menu ul li {
    margin: 10px 0;
  }
  .header-handler{
    display: inline-flex;
    width: 100%;
    justify-content: space-between;
    align-items: center;
  }
  
  .mobile-menu-button {
    background: none;
    border: none;
    color: var(--white);
    font-size: 1.5rem;
    cursor: pointer;
    display: none;
  }
  
  @media only screen and (max-width: 991px) {
          .desktop-menu {
      display: none!important;
    }
    .entranceimg{
        min-height: auto!important;
    }
    .mobile-menu-button {
      display: block;
    }
  }
  /* Responsive Styles */
  @media only screen and (max-width: 768px) {
    .desktop-menu {
      display: none!important;
    }
       .nav ul li a{
        font-size: 15px;
    }
    .entranceimg{
        min-height: auto!important;
    }
    .mobile-menu-button {
      display: block;
    }
    .entranceimg{
        margin: 140px auto;
    }
    .herotitle{
        min-height: auto!important;
        margin: 290px 0px 0px 0px;
    }
    .herotitle h1{
        font-size: 5vw!important;
    }
    .entrance-title h2 {
        color: var(--black);
        font-size: 7vw!important;
        font-family: var(--second-font);
        text-align-last: center;
        font-weight: 500;
      }
        
      .entrance-title span {
        color: var(--black);
        font-size: 4vw!important;
        font-family: var(--second-font);
        text-align-last: center;
        font-weight: 500;
      }
      .about-section h2{
        font-size: 5vw!important;
      }
      .about-section span{
        font-size: 4vw!important;
      }
      .about-section img{
        width: 100%;
        padding-bottom: 30px;
      }
      .about-lists{
        width: 100%;
        display: grid!important;
        line-height: 34px;
        text-align: left;
        font-family: var(--fourth-font);
      }
      .feature-image{
        top: -1%!important;
      }
      .mobile-menu {
        display: block!important;
        flex-direction: column;
        background-color: var(--secondary-color);
        position: absolute;
        top: 60px;
        right: 0;
        left: 0;
        padding: 10px;
        opacity: 0;
        transform: translateY(-10px);
        transition: opacity 0.3s ease, transform 0.3s ease;
        z-index: 1000;
      }
      .card{
        margin-top: 20px;
        border: transparent!important;
      }
  }
  
  .main {
    background-position: center center;
    background-repeat: no-repeat;
    background-attachment: fixed; /* Makes the background fixed */
    background-size: cover; /* Ensures the background covers the entire area */
  }
  .amenities{
    background: url('../img/cloudsimg.webp') no-repeat center center;
    background-attachment: fixed; /* Makes the background fixed */
    background-size: cover; /* Ensures the background covers the entire area */
    padding: 100px 0px;
    color: var(--white);
    text-align: center;
    font-family: var(--second-font);
  }
  .aminities-content{
    line-height: 34px;
  }
  .aminities-content h2{
    font-family: var(--second-font);
    font-weight: 500;
    position: relative;
    font-size: 23px;
    
    text-shadow: 0px 0px 3px black;
    font-family: var(--first-font);
    line-height: 40px;
    margin: 20px auto;
    width: 70%;
  }
  .aminities-content h2::after{
    content: '';
    /* position: absolute; */
    width: 20%;
    height: 2px;
    display: flex
;
    justify-content: center;
    background-color: var(--black);
    margin: 0 auto;
    text-align: center;
  }
  
  .aminities-content p{
    font-family: var(--second-font);
    font-weight: 400;
    font-size: 18px;
    text-shadow: 0px 0px 3px black;
    font-family: var(--second-font);
  }
  
  .herohadler {
    min-height: 100vh;
  }
  
  .entranceimg {
    width: 40%;
    min-height: 100vh;
    display: flex;
    align-items: center;
  }
  
  .entranceimg img {
    width: 100%;
  }
  
  .entrance-title {
    text-align: center;
    display: grid;
  }
  
  .entrance-title h1 {
    color: var(--black);
    font-size: 1.5vw;
    font-family: var(--second-font);
    text-align-last: center;
  }
  
  .herotitle {
    width: 100%;
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  
  .entrance-title i {
    font-size: 20px;
    padding-top: 30px;
    cursor: pointer;
    animation: bounce 1s infinite;
    animation-play-state: running; /* Default running state */
  }
  
  .entrance-title i:hover {
    animation-play-state: paused; /* Pause animation on hover */
  }
  
  @keyframes bounce {
    0%, 100% {
      transform: translateY(0);
    }
    50% {
      transform: translateY(-5px);
    }
  }
  .entrance-title h2 {
    color: var(--black);
    font-size: 2vw;
    font-family: var(--second-font);
    text-align-last: center;
    font-weight: 500;
  }
    
  .entrance-title span {
    color: var(--black);
    font-size: 3vw;
    font-family: var(--second-font);
    text-align-last: center;
    font-weight: 500;
  }
  


  .about-section {
    background-image:url('../img/bgdesk.webp'); /* Red background for demonstration */
    background-repeat: no-repeat;
    background-size: cover;

    min-height: 100vh;
    display: flex;
    padding: 100px 0px 50px 0px;
    align-items: center;
    justify-content: center;
  }
  
  .imghandler{
    width: 80%;
    margin: 0 auto;
  }


  .pricings {
    background-image:url('../img/bgdesk.webp'); /* Red background for demonstration */
    background-repeat: no-repeat;
    background-size: cover;

    display: flex;
    padding: 100px 0px 50px 0px;
    align-items: center;
    justify-content: center;
  }
  .pricingss {
    background-image:-webkit-linear-gradient(top, rgb(18, 57, 53) 49%, rgb(183, 111, 60) 49%);
    background-repeat: no-repeat;
    background-size: cover;

    display: flex;
    padding: 100px 0px 100px 0px;
    align-items: center;
    justify-content: center;
}

  
  .about-section  {
    display: flex;
    gap: 2rem; /* Space between columns */
    text-align: center;
  }
  
  
  

  .about-section h2 {
    font-size: 2.3vw;
    font-family: var(--second-font);
    font-weight: 600;
    text-align: center;
    color: var(--primary-color);
    animation: zoomIn 4s infinite; /* Apply animation */
    animation-delay: 4s; /* Add a 3-second delay before the animation starts */
  }
  
  /* Keyframes for zoom-in effect */
  @keyframes zoomIn {
    0% {
      transform: scale(1); /* Normal size */
    }
    50% {
      transform: scale(1.1); /* Slightly larger */
    }
    100% {
      transform: scale(1); /* Back to normal size */
    }
  }
  
  .about-section img{
    width: 80%;
  }  
  .about-section h2 span{
    font-size: 1.8vw;
    color: var(--secondary-color);
    font-family: var(--second-font);
    text-align: center;
  }



  .info-section{
    background-image:url('../img/bgiris.webp'); 
    background-repeat: no-repeat;
    background-size: cover;

    min-height: 340px;
    position: relative;
    padding: 20px;
    border: 4px solid var(--primary-color);
  }
  .info-section h3{
    font-family: var(--fourth-font);
    font-size: 20px;
    color: white;
  }

  .info-section h3 span{
    color: var(--primary-color);
  }
  .info-section p{
    color: var(--white);
    font-family: var(--fourth-font);
    font-size: 15px;
    line-height: 25px;
  }
  .feature-image{
    position: relative;
    top: -10%;
  }

  .feature-image video{
    border: 3px solid var(--primary-color);
  }
  

  .about-lists{
    width: 100%;
    display: inline-flex;
    text-align: left;
    font-family: var(--fourth-font);
  }
  .btn-brochure{
    padding: 10px 30px;
    background-color: red;
    text-decoration: none;
    color: var(--white);
    border-top-left-radius: 10px;
    border-bottom-right-radius: 10px;
    transition: 0.5s;
  }
  .btn-brochure:hover{
    padding: 10px 15px;
    color: var(--white);
  }
  .features{
    padding-bottom: 20px;
    padding-left: 20px;
  }
 
  #mobileMenu{
    display: none;
  }
  a{
    text-decoration: none!important;
  }
  .btn-visit{
    padding: 10px 20px;
    background-color: var(--primary-color);
    text-decoration: none;
    color: var(--white);
    border-top-left-radius: 10px;
    cursor: pointer;
text-decoration: none;
    text-transform: uppercase;
    font-family: var(--second-font);

    border-bottom-right-radius: 10px;
    transition: 0.5s;letter-spacing: 3px;
  }
  .btn-visit:hover{
    padding: 10px 15px;
    color: var(--white);
  }


  .services{
    background-image: url('../img/bgiris.webp');
    padding: 100px 0px 50px 0px;
  }

  .title {
    font-size: 24px;
    font-weight: bold;
    color: #d88c50;
    margin-bottom: 10px;
    font-family: var(--third-font);
}

.underline {
    width: 50px;
    height: 3px;
    background-color: #ffffff;
    margin: 10px auto 20px;
}

.card-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.card{
  background: transparent!important;
  border-radius: 0px;
  text-align: center;
}
.card .frame{
    background-color: transparent!important;
    padding: 2px;
    text-align: center;
    transition: transform 0.3s ease;
}

.card video, 
.card img {
    width: 100%;
    height: auto;
    
    padding: 5px;
    border: 2px solid var(--primary-color)!important;
}

.card button {
    background-color: #ffffff;
    color: #1c5047;
    border: none;
    padding: 10px 20px;
    border-top-left-radius: 5px;
    border-bottom-right-radius: 5px;
    margin-top: 20px;
    font-size: 16px;
    cursor: pointer;
    /* transition: background-color 0.3s ease; */
}

.card button:hover {
    background-color: var(--primary-color);
    color: var(--white);
    cursor: pointer;
}
.slider-container{
  width: 100%;
  display: flex;
  align-items: center;
}
.slider1{
  width: 50%;
  padding: 10px;
  position: relative;
}
.slider2 div img{
  padding: 2px;
  border: 1px solid var(--white);
}

.slider1 div img{
  padding: 2px;
  border: 1px solid var(--white);
}
.slider2{
  width: 50%;
  position: relative;
  padding: 10px;
  right: 3%;
  top: 59px;
}
@media (max-width: 600px) {
    .title {
        font-size: 20px;
    }
    .amenities{
      padding: 100px 0px 50px;
    }

    .card button {
        font-size: 14px;
        padding: 8px 15px;
    }
    .pricingss .content{
      grid-template-columns: auto!important;
    }
    .aminities-img{
      padding: 20px;
    }
.slider-container{
  width: 100%;
  display: block;
  align-items: center;
}
.aminities-content h2{
  width: 100%;
}
.slider1{
  width: 100%;
  padding: 10px;
  position: static;
}

.slider2{
  width: 100%;
  padding: 10px;
  position: static;
}
.slider2 div img{
  padding: 2px;
  border: 1px solid var(--white);
}
}

.aminities-img img{
  width: 100%;
}

.slider img {
  width: 100%;
  height: auto;
}
.aminities-content button {
  background-color: #ffffff;
  color: #1c5047;
  border: none;
  padding: 10px 60px;
  border-top-left-radius: 5px;
  border-bottom-right-radius: 5px;
  margin-top: 20px;
  font-size: 16px;
  cursor: pointer;
  /* transition: background-color 0.3s ease; */
}



.pricings .title {
  text-align: center;
  margin-bottom: 20px;
  font-size: 24px;
  font-weight: bold;
  position: relative;
}

.pricings .title::after {
  content: "";
  display: block;
  width: 50px;
  height: 2px;
  background-color: #4a2c19;
  margin: 10px auto 0;
}

.pricings .content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.pricings .content img {
  width: 100%;
  height: auto;
  border: 1px solid #d9ad7c;
}

.pricings .button-wrapper {
  text-align: center;
  margin-top: 10px;
}

.pricings .button-wrapper button {
  background-color: var(--primary-color);
  color: white;
  padding: 10px 20px;
  border: none;
  border-top-left-radius: 10px;
  border-bottom-right-radius: 10px;
  font-size: 16px;
  cursor: pointer;
  transition: background-color 0.3s;
}




.pricings .accordion {
  background-color: var(--primary-color);
  border: 1px solid var(--white);
  color: white;
  padding: 15px;
  cursor: pointer;
  font-size: 18px;
  font-weight: bold;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: background-color 0.3s;
}

.pricings .accordion:hover {
  background-color: #865437;
}

.pricings .accordion.active {
  background-color: #865437;
}

.pricings .panel {
  display: none;
  background-image: url(../img/bgiris.webp);
  color: white;
  padding: 15px;

  transition: max-height 0.5s ease;

}

.pricings .panel .price {
  font-size: 20px;
  font-family: var(--fourth-font);
  font-weight: bold;
  text-align: center;
}

.pricings .panel .button-wrapper {
  margin-top: 15px;
  text-align: center;
}

.price span{
  font-size: 35px;
}
.pricings .panel .button-wrapper button {
  background-color: var(--primary-color);
  color: white;
  padding: 10px 20px;
  border: none;
  font-size: 16px;
  cursor: pointer;
}


@media (max-width: 768px) {
  .pricings .content {
      grid-template-columns: 1fr;
  }
}



@media (max-width: 400px) {
  .logo {
      width: 110px;
  }
}





.pricingss .title {
  text-align: center;
  margin-bottom: 20px;
  font-size: 34px;
  font-weight: bold;
  font-family: var(--first-font);
  position: relative;
}

.pricingss .title::after {
  content: "";
  display: block;
  width: 100px;
  height: 2px;
  background-color: var(--white);
  margin: 10px auto 0;
}

.pricingss .content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.pricingss .content iframe {
  width: 100%;
  padding: 20px;
  background-color: var(--secondary-color);
}

.pricingss .button-wrapper {
  text-align: center;
  margin-top: 10px;
}

.pricingss .button-wrapper button {
  background-color: var(--secondary-color);
  color: white;
  padding: 10px 20px;
  border: none;
  border-top-left-radius: 10px;
  border-bottom-right-radius: 10px;
  font-size: 16px;
  cursor: pointer;
  transition: background-color 0.3s;
}

.last-section{
  text-align: center;
  width: 70%;
  margin: 0 auto;
  padding-bottom: 30px;
}
.pricingss .panel ul li{
  font-size: 16px;
}
.pricingss .accordionn {
  background-color: var(--primary-color);
  border-bottom: 0.5px solid var(--white);
  color: white;
  padding: 15px;
  cursor: pointer;
  font-size: 18px;
  font-weight: bold;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: background-color 0.3s;
}

.pricingss .accordionn:hover {
  background-color: #865437;
}

.pricingss .accordionn.active {
  background-color: #865437;
}

.pricingss .panel {
  display: none;
  background-image: url(../img/bgiris.webp);
  color: white;
  padding: 15px;
  height: 192px;
  font-family: var(--fourth-font);
  transition: max-height 0.5s ease;

}

.pricingss .panel ul{
  padding-left: 20px;
}
.pricingss .panel .price {
  font-size: 20px;
  font-family: var(--fourth-font);
  font-weight: bold;
  text-align: center;
}

.pricingss .panel .button-wrapper {
  margin-top: 15px;
  text-align: center;
}

.price span{
  font-size: 35px;
}
.pricingss .panel .button-wrapper button {
  background-color: var(--primary-color);
  color: white;
  padding: 10px 20px;
  border: none;
  font-size: 16px;
  cursor: pointer;
}


.footer {
  background-color: rgba(0, 0, 0, 0.6); /* Transparent background */
  color: white;
  padding: 20px;
  text-align: center;
}

.footer-content {
  max-width: 1200px;
  margin: 0 auto;
}

.branding h2 {
  font-size: 36px;
  font-weight: 700;
  margin: 0;
  line-height: 1.2;
}

.branding span {
  font-weight: 400;
  font-size: 20px;
}

.branding p {
  margin: 22px 0;
}

.disclaimer {
  margin-top: 20px;
  font-size: 12px;
  line-height: 1.6;
}

.links {
  margin: 15px 0;
}

.links a {
  color: white;
  text-decoration: none;
  font-size: 14px;
}

.links a:hover {
  text-decoration: underline;
}

.copyright {
  font-size: 12px;
  margin-top: 10px;
}

@media (max-width: 768px) {
  .branding h2 {
    font-size: 28px;
  }

  .branding span {
    font-size: 16px;
  }

  .disclaimer {
    font-size: 10px;
  }

  .links a {
    font-size: 12px;
  }

  .copyright {
    font-size: 10px;
  }
}


.popup-alert {
    position: fixed!important;
    top: 40px;
    right: 0px;
    z-index: 9999;
    padding: 15px 20px;
    background-color: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
    border-radius: 5px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    animation: fadeIn 0.5s ease, fadeOut 0.5s ease 4.5s;
    display: inline-block;
    font-size: 16px;
}

/* Animation to fade in and fade out the alert */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeOut {
    from {
        opacity: 1;
    }
    to {
        opacity: 0;
    }
}

.icon-bar {
  position: fixed;
  top: 70%;
  z-index: 99999;
  right: 0;
  transform: translateY(-50%);
}

.icon-bar a {
  display: block;
  
  box-shadow: 0px 0px 7px black;
  text-align: center;
  padding: 16px;
  transition: all 0.3s ease;
  color: white;

  font-size: 20px;
}

.icon-bar a:hover {
  background-color: #1c5047;
  color: var(--primary-color);
}

.facebook {
  background: var(--secondary-color);
  color: white;
  border-top-left-radius: 10px;

}

.twitter {
  background: var(--secondary-color);
  color: white;
  border-bottom-left-radius: 10px;
}
