* {
  margin: 0;
  padding: 0;
}

:root {
  --primary-color: #197e6c;
  --primary-text-colour: #294946;
  --secondary-text-colour: #4a5251;
  --secondary-bg-color: #e7f4fe;
  --secondary-fg-color: #01c1df;
  --underline-color: #98B8B4;
}

@font-face {
  font-family: "head-font";
  src: url(../fonts/JosefinSans-VariableFont_wght.ttf) format("truetype");
}

@font-face {
  font-family: "sub-font";
  src: url(../fonts/NotoSans-Light.ttf) format("truetype");
}

@font-face {
  font-family: "sub-font2";
  src: url(../fonts/NotoSans-ExtraLight.ttf) format("truetype");
}

body {
  margin: 0;
  padding: 0;
}
.banner-section {
  height: 100vh;
  background-color: #197e6c;
  background-image: url("../img/lagoon3.webp");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.banner-text {
  box-sizing: border-box;
  font-family: sans-serif;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  color: white;
  padding: 15vh;
  height: calc(100vh - 17vh);
}
.banner-text h1 {
  font-size: 4rem;
  font-weight: bolder;
  color: white;
}

.banner-text p {
  font-family: "Noto Sans", sans-serif;
  font-size: 1.2rem;
  margin-top: 20px;
  color: white;
  text-align: center;
}
#scrollToTopBtn {
  display: none;
  position: fixed;
  height: 50px;
  width: 50px;
  background-color: #197e6c;
  color: white;
  bottom: 20px;
  right: 20px;
  z-index: 99;
  cursor: pointer;
  transition: background-color 0.3s;
}

#scrollToTopBtn.show {
  display: flex;
  align-items: center;
  justify-content: center;
}

#scrollToTopBtn:hover{
  background-color: #000;
}


.custom-container {
  padding-top: 4%;
  padding-bottom: 4%;
  margin-left: 15%;
  margin-right: 15%;
}

.why-antora-section {
  display: flex;
  flex-direction: column;
}


h1 {
  font-family: "Poppins", sans-serif;
  font-size: 48;
  color: var(--primary-text-colour);
}
.heading-container {
  display: flex;
  justify-content: center;
  padding-top: 3vh;
  padding-bottom: 3vh;
  border-top: 1px solid #98b8b4;
}
h2 {
  font-family: "Poppins", sans-serif;
  font-size: 24;
  text-align: left;
  color: var(--primary-text-colour);
}

h3 {
  font-family: "Poppins", sans-serif;
  font-size: 20;
  text-align: left;
  padding-top: 2vh;
  padding-bottom: 2vh;
  color: var(--primary-text-colour);
}

h4 {
  font-family: "Poppins", sans-serif;
  font-size: 16;
  text-align: left;
  padding-top: 2vh;
  padding-bottom: 2vh;
  color: var(--primary-text-colour);
}

.sub-head-container {
  padding-top: 3vh;
  padding-bottom: 3vh;
}
p {
  text-align: justify;
  font-family: "Noto Sans", sans-serif;
  color: var(--secondary-text-colour);
}

/* packages tile related style */

.package-container {
  display: flex;
  justify-content: space-between;
  margin-bottom: 5vh;
}

.flex-item1 {
  overflow: hidden;
  flex: 1;
  max-width: 700px;
  max-height: 400px;
  border-radius: 10px;
  display: flex;
  justify-content: center;
  max-height: 400px;
}

.flex-item2 {
  padding-left: 6vh;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  max-height: 400px;
}

.package-photo {
  width: 100%;
  object-fit: cover;
}

.location-photo {
  width: 100%;
  object-fit: cover;
}


.classic-button {
  cursor: pointer;
  box-sizing: border-box;
  margin-top: 3vh;
  font-family: "Poppins", sans-serif;
  display: flex;
  height: 50px;
  width: 200px;
  padding: top;
  align-items: center;
  justify-content: center;
  background-color: #197e6c;
  color: white;
  transition: background-color 0.2s;
}

.classic-button-not-available{
  box-sizing: border-box;
  margin-top: 3vh;
  font-family: "Poppins", sans-serif;
  display: flex;
  height: 50px;
  width: 200px;
  padding: top;
  align-items: center;
  justify-content: center;
  background-color: grey;
  color: white;
}

.classic-button:hover{
  background-color: var(--secondary-bg-color);
  color: var(--primary-color);
  border: 3px solid var(--primary-color);
}

.box-shadow {
  -webkit-box-shadow: 1px 1px 5px 0px rgba(0, 0, 0, 0.29);
  -moz-box-shadow: 1px 1px 5px 0px rgba(0, 0, 0, 0.29);
  box-shadow: 1px 1px 5px 0px rgba(0, 0, 0, 0.29);
}

.common-flex-item {
  flex: 1;
}

.section3 {
  background-color: var(--primary-color);
}
.section5,
.section4 {
  display: none;
}

.island-location-section {
  display: flex;
  width: 100%;
  justify-content: space-between;
  flex-wrap: wrap;
}

.island-location-section-left {
  
  display: flex;
  justify-content: center;
  gap: 3vh;
  flex-direction: column;
  width: 55% ;
}

.island-location-section-left p,
.island-location-section-left h1 {
  color: white;
}

.island-location-section-right {
  display: flex;
  align-items: center;
  justify-content: end;
  width: 40% ;
  background-color: var(--secondary-bg-color);
}

/*Resort Section*/
.resort-section{

  background-color: var(--secondary-bg-color);
}

.resort-container{
  display: flex;
  margin-top: 5vh;
  justify-content: space-between;
  flex-wrap: wrap;
}

.resort-tile{
  background-color: white;
  width: 30%;
  margin-bottom: 5vh;
  display: flex;
  flex-direction: column;
  border-radius: 7px;
  transition: scale 0.2s;
}

.resort-details{
  padding: 15px;
  display: flex;
  flex-direction: column;
}


.resort-photo{
  height: 400px;
  object-fit: cover;
  border-top-left-radius: 7px;
  border-top-right-radius: 7px;
}

.resort-tile:hover{
  scale: 1.07;
}

/*contact form*/
.contact-section{
  background-color:  white;
}
form{
  padding-top: 7vh;
  padding-bottom: 7vh;
  display: flex;
  flex-direction: column;
  gap: 30px;
}
.align-center-space-between{
  display: flex;
  align-items: center;
}


.form-input{
  font-family: "Noto Sans", sans-serif;
  font-size: 16px;
  padding: 2vh;
  width: 100%;
  height: 6vh;
  border: none;
  background-color:var(--secondary-bg-color);
}

.button{
  cursor: pointer;
  transition: background-color 0.2s;
  height: 7vh;
  color: white;
  font-family: "Poppins", sans-serif;
  background-color: var(--primary-color);
}

.form-textarea{
  height: 200px;
}

.button:hover{
  background-color: black;
}


/*FAQs*/
.faq-section{
  /*min-height:80vh ; */
  width:100%;
  margin:0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
}


.qa-content-wrapper{
  padding-top: 7vh;
  display: flex;
}
.faqs{
  width: 100%;
  display: flex;
  flex-direction: column;
}

.faq{
  max-width: 100%;
  padding:5px; 
  border-bottom: 2px solid var(--primary-color);
  cursor: pointer;
  background-color: var(--secondary-bg-color);
}
.faq h3{
  padding: 15px;
}
.question{
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.answer{  
  box-sizing: border-box;
  max-height: 0;
  margin-left: 15px;
  margin-right: 15px;
  overflow:hidden;
  transition: max-height 0.6s ease;
}
.faq.activate .answer{
  max-height: 400px;
  
}
.faq.activate svg{
  transform: rotate(180deg);
}
svg{
  transition: transform 0.2s ease;
  margin-right: 1vh;
}

@keyframes fade {
  from{
      opacity: 0;
      transform: translate(-10px);
  }
  
}


/*Testimonial stlyes*/
.testimonial-section{
  background-color: var(--secondary-bg-color);
  background-image: url("../img/beach.jpeg");
  background-size: cover;
  background-repeat: no-repeat;
  
}
.testimonial-qoute-icon{
  width: 6vh;
  object-fit: cover;
}

.testimonial-custom-container{
  padding-top: 4%;
  padding-bottom: 4%;
  margin-left: 10%;
  margin-right: 10%;
}

.testimonial-wrapper{
  padding-top: 2vh;
  padding-bottom: 2vh;
  overflow-x: scroll;
}
.testimonial-cards{
  display: flex;
  gap: 40px;
  justify-content: space-between;

}
.testimonial-tile{
  padding: 5vh;
  background-color: white;
  min-height: 400px;
  min-width: 280px;
  max-width: 300px;
  display: flex;
  justify-content: space-evenly;
  flex-direction: column;
}

.customer-message{
  display: flex;
  padding-top: 1vh;
  padding-bottom: 1vh;
}

.customer{
  display: flex;
  align-items: center;
  gap: 1vh;
}

.custmer-details{
  scale: 0.8;
}


.custmer-details h3{
  padding: 0;
}

.testimonial-cust-photo{
  width: 6vh;
  height: 6vh;
  object-fit: cover;
  border-radius: 70%;
}





/*Footer*/
.quick-links-icon{
  display:flex; 
  gap:10px; align-items:center; 
  padding-right: 10px;
}


footer{
  background-color: var(--primary-color);
}

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

.link-box{
  width: 40vh;
  display: flex;
}

.link-box ul {
  font-family: "Noto Sans", sans-serif;
  list-style: none;
  display: flex;
  color: rgb(255, 255, 255);
  flex-direction: column;
  padding-bottom: 3vh;
  width: 100%;
}

.link-box ul li{
  padding-top: 20px;
}

.link-box ul li a{
  text-decoration: none;
  color: white
}

.link-box ul li h4{
  text-decoration: none;
  width: 100%;
  border-bottom: 1px solid var(--underline-color);
  padding-bottom: 1vh;
  color: white
}

.link-box ul li p{
  line-height: 3vh;
  padding-bottom: 2vh;
  color: white;

  text-align: left;
}

.social-media{
  display: flex;
  gap:2vh
}

.social-container{
  font-family: "Noto Sans", sans-serif;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.rights p{
  color: #98b8b4;
  font-size: 14px;
}



/*Resort page*/

.resort-main-content{
  padding-top: 7vh;
  display: flex; justify-content: space-between; align-items: center;
}

.resort-details-container{
  width: 40%;
}

.resort-primary-photo{
  width: 50%;
  object-fit: cover;
}

.inclusion-wrapper{
  padding-top: 5vh;
  display: flex;
  flex-wrap: wrap;
  gap: 2vh;
}

.inclusion-tile{
  display: flex;
  padding-bottom: 2vh;
  width: 300px;
  gap: 2vh;
  align-items: center;

}

.inclusion-logo{
  width: 50px;
  height: 50px;
  object-fit: cover;
}

.activities-section{
  background-color: var(--secondary-bg-color);
}

.activities-wrapper{
  padding-top: 5vh;
  display: flex;
  flex-wrap: wrap;
  gap:6vh;
}

.activity-tile{
  max-width: 300px;
  display: flex;
  flex-direction: column;
  background-color: white;
}
.activity-tile p,.activity-tile h3 {
  padding: 2vh;
  text-align: center;
  text-justify: left;
}
.activity-logo{
  width: 300px;
  height: 300px;
  object-fit: cover;
}

.gallery-section{
  background-color: var(--secondary-bg-color);
}
.gallery-wrapper{
  padding-top: 5vh;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap:6vh;
}



/* Tour package Page*/
.tour-details{
  padding-top: 5vh;

}
.tour-details-item *{ 
  padding: 0;
  margin: 0;
}
.tour-details-item{
  padding-bottom: 5vh;
  display: flex;
  flex-direction: column;
  gap: 2vh;
}

.tour-details-item h3{
  padding-bottom: 1vh;
}


/*Media queries*/

@media (max-width: 1200px) {

  .tour-details-item{

  }

  .resort-details-container, .resort-primary-photo{
    width: 100%;
    padding-bottom: 5vh;
  }
  
  .gallery-wrapper, .activities-wrapper{
    justify-content: center;
  }
  .resort-main-content{
    flex-direction: column;
  }



  .testimonial-custom-container{
    padding-top: 3vh;
    padding-bottom: 7vh;
    margin-left: 5%;
    margin-right: 0;
  }



  .social-container{
    flex-wrap: wrap;
    gap:3vh
  }
  .banner-text {
    padding: 5vh;
  }

  .package-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    border: 1px solid #d2e2e0;
  }

  .flex-item2 {
    padding: none;
    padding: 2vh;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    max-height: 800px;
  }
  .flex-item1 {
    max-width: 100%;
    min-width: 100px;

    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
    border-top-left-radius: 0;
    border-top-right-radius: 0;
  }

  .text-align {
    text-align: center;
  }


  .island-location-section{
    justify-content: center;
  }
  .island-location-section-left{
    padding-top: 7vh;
    padding-bottom: 7vh;
    width: 100% ;
  }

  .island-location-section-right{
    margin-top: 7vh;
    margin-bottom: 7vh;
    width: 100% ;
  }

  .custom-container{
    margin-left: 6%;
    margin-right: 6%;
  }
  
  

  .resort-tile{
    width: 100%;
  }

  .footer-container{
    flex-wrap:wrap
  }
}
