body {
  font-family: "Nunito", sans-serif;
  color: #383838;
}

.is-hidden {
  display: none;
}

@font-face {
  font-family: "Bootstrap Icons";
  src: url("https://cdn.jsdelivr.net/npm/bootstrap-icons@1.10.5/fonts/bootstrap-icons.woff2") format("woff2"), url("https://cdn.jsdelivr.net/npm/bootstrap-icons@1.10.5/fonts/bootstrap-icons.woff") format("woff");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
.btn-contrast {
  text-decoration: none;
  border: 2px solid white;
  background-color: transparent;
  color: white;
  letter-spacing: 1px;
  font-weight: 600;
  border-radius: 5px;
  padding: 0.4em 2em;
  transition: all 0.5s ease;
  width: -moz-fit-content;
  width: fit-content;
  z-index: 3;
}
.btn-contrast:hover {
  animation: contrastPulse 1.5s 5;
  background: #ff7900;
  border: 2px solid #ff7900;
}
.btn-contrast:active {
  background: #ff7900;
  border: 2px solid #ff7900;
}

@keyframes contrastPulse {
  0% {
    box-shadow: 0 0 0 0 #ff7900;
  }
  70% {
    box-shadow: 0 0 0 10px rgba(218, 103, 68, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(218, 103, 68, 0);
  }
}
.btn-contrast-fill {
  border: none;
  text-decoration: none;
  background-image: linear-gradient(30deg, #ff7900, #ffc800);
  background-size: 100% auto;
  color: white;
  letter-spacing: 1px;
  font-weight: 600;
  border-radius: 5px;
  padding: 0.4em 2em;
  transition: all 0.5s ease;
  width: -moz-fit-content;
  width: fit-content;
  z-index: 3;
}
.btn-contrast-fill:hover {
  animation: contrastPulse 1.5s 5;
  background-position: left center;
  background-size: 200% auto;
}
.btn-contrast-fill:active {
  background: #ff7900;
}

.btn-main {
  text-decoration: none;
  border: 2px solid white;
  background-color: transparent;
  color: white;
  letter-spacing: 1px;
  font-weight: 600;
  border-radius: 5px;
  padding: 0.4em 2em;
  transition: all 0.5s ease;
  width: -moz-fit-content;
  width: fit-content;
  z-index: 3;
}
.btn-main:hover {
  animation: mainPulse 1.5s 5;
  background: #192a54;
  border: 2px solid #192a54;
}
.btn-main:active {
  background: #192a54;
  border: 2px solid #192a54;
}

@keyframes mainPulse {
  0% {
    box-shadow: 0 0 0 0 #192a54;
  }
  70% {
    box-shadow: 0 0 0 10px rgba(218, 103, 68, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(218, 103, 68, 0);
  }
}
.btn-main-fill {
  text-decoration: none;
  border: 2px solid #192a54;
  background-color: #192a54;
  color: white;
  letter-spacing: 1px;
  font-weight: 600;
  border-radius: 5px;
  padding: 0.4em 2em;
  transition: all 0.5s ease;
  width: -moz-fit-content;
  width: fit-content;
  z-index: 3;
}
.btn-main-fill:hover {
  animation: mainPulse 1.5s 5;
  background: #192a54;
  border: 2px solid #192a54;
}
.btn-main-fill:active {
  background: #192a54;
  border: 2px solid #192a54;
}

header {
  position: sticky;
  top: 0;
  z-index: 5;
  /*
  .brand-badge {
    display: flex;
    align-items: center;
    justify-content: center;

    background: $color-main;

    box-shadow: 0 0 10px $color-shadow, 0 0 10px $color-shadow;

    padding: 0.75rem 1rem;
    border-radius: 0 0 0.75rem 0.75rem;

    margin-bottom: -1.25rem;
    z-index: 5;

    img {
      height: 80px;
      width: auto;
      display: block;
    }
  }
    */
}
header .navbar {
  position: relative;
  padding-top: 0;
  padding-bottom: 0;
  background: #fff;
  box-shadow: 0px 10px 10px rgba(166, 166, 166, 0.5098039216);
}
header .navbar-brand {
  display: flex;
  align-items: stretch;
  padding: 0;
  width: 100px;
}
@media screen and (min-width: 1024px) {
  header .navbar-brand {
    width: 125px;
  }
}
header .navbar-brand img {
  width: 100%;
}
header .nav-link {
  letter-spacing: 1px;
  color: #383838;
  position: relative;
  display: inline-block;
  transition: background-position 1s ease;
}
header .nav-link:hover {
  background: linear-gradient(90deg, #ffc800, #ff7900, #ffc800);
  background-size: 200% 100%;
  -webkit-background-clip: text;
          background-clip: text;
  -webkit-text-fill-color: transparent;
  background-position: right center;
  animation: gradient-slide 3s ease infinite;
}
header .navbar-nav .active {
  font-weight: 700;
  background: #ff7900;
  -webkit-background-clip: text;
          background-clip: text;
  -webkit-text-fill-color: transparent;
  background-position: right center;
}

@keyframes gradient-slide {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}
.hero-section {
  position: relative;
  width: 100%;
  height: 50vh; /* Change hero height */
  min-height: 600px;
  overflow: visible;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: white;
}

.hero-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  z-index: 1;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.4); /* Change hero overlay color */
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0.5) 70%, rgb(255, 255, 255) 100%);
  z-index: 2;
}

.hero-content {
  position: relative;
  z-index: 3;
  padding: 0 1em 5em 1em; /* Change content position in hero */
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.hero-title {
  font-size: 1.5em;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.hero-fluid {
  max-width: 600px;
  z-index: 5;
  padding-top: 20px;
}
@media screen and (min-width: 1024px) {
  .hero-fluid {
    margin-right: auto;
  }
}
@media screen and (min-width: 1440px) {
  .hero-fluid {
    margin-left: -150px;
  }
}

.hero-fluid-bg {
  position: relative;
  width: 100%;
  height: auto;
  z-index: 1;
  pointer-events: none;
}

.hero-fluid-content {
  position: absolute;
  z-index: 2;
  max-width: 500px;
  padding: 0 35px 0 20px;
  margin: 0 auto;
  text-align: center;
  transform: translateY(-140%); /* Change position of text inside fluid shape */
}
@media screen and (min-width: 768px) {
  .hero-fluid-content {
    transform: translateY(-180%); /* Change position of text inside fluid shape */
    padding: 0 25px;
  }
}
@media screen and (min-width: 1024px) {
  .hero-fluid-content {
    transform: translateY(-145%); /* Change position of text inside fluid shape */
    padding: 0 35px;
  }
}

.hero-fluid-content p {
  line-height: normal;
  font-size: 0.9em;
  color: #fff;
}
@media screen and (min-width: 1024px) {
  .hero-fluid-content p {
    font-size: 1.1em;
  }
}

.index-content {
  margin-bottom: 40px;
}

.index-content-box .index-content-img {
  width: 100%;
  height: auto;
  max-height: 450px;
}
.index-content-box .index-content-text .index-content-title {
  color: #ff7900;
  letter-spacing: 1px;
  margin-bottom: 1rem;
}
.index-content-box .index-content-text p {
  line-height: 1.8;
  margin-bottom: 1.5rem;
  letter-spacing: 1px;
}

.index-content-btn {
  text-decoration: none;
  padding: 0;
  margin: 0;
  border: none;
  background: none;
  cursor: pointer;
  width: -moz-fit-content;
  width: fit-content;
  position: relative;
  display: flex;
  font-weight: 600;
  font-size: 20px;
  gap: 0.5rem;
  align-items: center;
}

.index-content-btn span {
  margin: 0;
  font-size: 20px;
  letter-spacing: 1px;
  background: linear-gradient(to right, #ff7900 50%, #383838 50%);
  background-size: 200% 100%;
  background-position: 100% 0;
  -webkit-background-clip: text;
          background-clip: text;
  -webkit-text-fill-color: transparent;
  transition: background-position 0.3s ease-out;
}

.index-content-btn::after {
  position: absolute;
  content: "";
  width: 0;
  left: 0;
  bottom: -7px;
  height: 2px;
  background: #ff7900;
  transition: 0.3s ease-out;
}

.index-content-btn:hover::after {
  width: 100%;
}

.index-content-btn:hover span {
  background-position: 0 0;
}

.index-content-btn svg {
  color: #ff7900;
  width: 15px;
  position: relative;
  transition: transform 0.2s ease, color 0.2s ease;
  transition-delay: 0.2s;
}

.index-content-btn:hover svg {
  transform: translateX(4px);
  color: #ff7900;
}

.bottom-section {
  position: relative;
}
.bottom-section .bottom-banner {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: auto;
  transform: translateY(-99%);
  display: block;
  pointer-events: none;
}

.bottom-bg {
  padding-bottom: 40px;
  background: #253e7b;
}
@media screen and (min-width: 1024px) {
  .bottom-bg {
    padding-bottom: 60px;
  }
}
@media screen and (min-width: 1440px) {
  .bottom-bg {
    padding-bottom: 80px;
  }
}
@media screen and (min-width: 2000px) {
  .bottom-bg {
    padding-bottom: 140px;
  }
}

.contact-feature {
  color: white;
  text-align: center;
}

.card-feature {
  color: white;
  text-align: center;
}
.card-feature .col {
  padding: 10px;
}
.card-feature .inner-col {
  padding: 15px;
  border-radius: 10px;
  height: 100%;
  background-color: rgba(255, 255, 255, 0.25);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.3);
}
.card-feature .icon-bg {
  background: radial-gradient(#3152a2 0%, #192a54 60%);
  border-radius: 50%;
  padding: 15px 20px;
  margin-bottom: 10px;
}
.card-feature .icon-bg i {
  font-size: 1.4em;
  text-shadow: white 0 0 5px;
}
.card-feature h3 {
  letter-spacing: 1px;
}

.page-title {
  text-align: center;
  padding: 30px 0;
}
.page-title h1 {
  letter-spacing: 1px;
}
.page-title h2 {
  color: #4d4d4d;
  font-weight: 100;
}

.about-section {
  position: relative;
  width: 100%;
  overflow: hidden;
}

.about-silhouette {
  position: absolute;
  bottom: 10%;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  height: auto;
  pointer-events: none;
  opacity: 0.6;
  -webkit-mask-image: linear-gradient(to top, transparent, black 60%);
          mask-image: linear-gradient(to top, transparent, black 60%);
}
@media screen and (min-width: 768px) {
  .about-silhouette {
    width: auto;
    height: 90%;
    bottom: 0%;
  }
}

.about-text {
  position: relative;
  border-radius: 15px;
  height: 100%;
  z-index: 3;
  display: flex;
  flex-direction: column;
}
.about-text h3 {
  letter-spacing: 1px;
  margin-bottom: 10px;
  color: #ff7900;
}
.about-text p {
  line-height: 2;
  font-weight: 600;
}

.about-btn {
  text-decoration: none;
  border: none;
  color: #383838;
  background-image: linear-gradient(30deg, #ffaa00, #ffc800);
  border-radius: 20px;
  background-size: 100% auto;
  font-family: inherit;
  font-size: 17px;
  padding: 0.4em 2em;
  transition: all 0.5s ease;
  width: -moz-fit-content;
  width: fit-content;
  z-index: 3;
}
.about-btn:hover {
  background-position: right center;
  background-size: 200% auto;
  animation: yellowPulse 1.5s 5;
}
@keyframes yellowPulse {
  0% {
    box-shadow: 0 0 0 0 #ffc800;
  }
  70% {
    box-shadow: 0 0 0 10px rgba(218, 103, 68, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(218, 103, 68, 0);
  }
}

.mountain-section {
  position: relative;
  color: white;
}
.mountain-section .mountain-banner {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: auto;
  transform: translateY(-99%);
  display: block;
  pointer-events: none;
}
.mountain-section .mountain-content {
  background: #3152a2;
  padding-bottom: 40px;
}
@media screen and (min-width: 768px) {
  .mountain-section .mountain-content {
    padding-bottom: 80px;
  }
}
.mountain-section .mountain-content h2 {
  letter-spacing: 1px;
  margin-bottom: 10px;
  font-weight: 700;
}

.environment-section h2 {
  color: #ff7900;
}

.environment-img {
  width: 100%;
}

.environment-text .inner-col {
  line-height: 2;
}
.environment-text h4 {
  font-weight: 600;
  font-size: 1.2em;
}

.environment-list {
  list-style: none;
  padding: 0;
}
.environment-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: 0.5rem;
}
.environment-list li span {
  display: block;
  line-height: 1.6;
}
.environment-list .bi-heart-fill {
  color: rgb(212, 47, 47);
}
.environment-list .bi-check-lg {
  color: #2f8f7a;
}

.social-section {
  margin-bottom: 50px;
}
@media screen and (min-width: 768px) {
  .social-section {
    margin-bottom: 80px;
  }
}
@media screen and (min-width: 1024px) {
  .social-section {
    margin-bottom: 120px;
  }
}
.social-section h2 {
  color: #ff7900;
}

.gallery-feature .gallery-title {
  text-align: center;
  color: #ff7900;
}
.gallery-feature .gallery-item {
  padding: 5px;
  overflow: hidden;
  border-radius: 10px;
}
.gallery-feature .gallery-item img {
  width: 100%;
  height: 100%;
  max-height: 250px;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 10px;
  cursor: pointer;
  transition: transform 0.3s ease;
}
.gallery-feature .gallery-item img:hover {
  transform: scale(1.1);
}
.gallery-feature .gallery-btn {
  border-radius: 20px;
}

.activities-modal {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.8);
  justify-content: center;
  align-items: center;
  z-index: 999;
}

.activities-modal.active {
  display: flex;
}

.modal-content {
  max-width: 70%;
  max-height: auto;
}

.close-modal {
  position: absolute;
  top: 15px;
  right: 35px;
  color: white;
  font-size: 40px;
  font-weight: bold;
  transition: 0.3s;
  cursor: pointer;
}
.close-modal:hover {
  color: gray;
}

.activities-grid {
  padding-top: 30px;
  color: white;
  text-align: center;
}
.activities-grid article {
  margin-bottom: 1rem;
}
.activities-grid article h2 {
  letter-spacing: 1px;
  font-weight: 600;
}

.activity-item {
  padding: 1rem;
  border-radius: 8px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
  transition: all 0.2s ease;
  background-color: rgba(255, 255, 255, 0.25);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
}
.activity-item i {
  font-size: 1.2em;
  text-shadow: #192a54 0 0 10px;
}

.destination-feature {
  background: linear-gradient(30deg, #253e7b, #3152a2);
  padding: 20px 30px;
  border-radius: 20px;
}

.calendar-section {
  margin-bottom: 50px;
}
@media screen and (min-width: 768px) {
  .calendar-section {
    margin-bottom: 70px;
  }
}
@media screen and (min-width: 1024px) {
  .calendar-section {
    margin-bottom: 100px;
  }
}
@media screen and (min-width: 1440px) {
  .calendar-section {
    margin-bottom: 140px;
  }
}

.filter-btn {
  border-radius: 10px;
  padding: 10px 20px;
  font-weight: 600;
  transition: all 0.3s ease;
}
.filter-btn:hover {
  transform: scale(1.1);
}

.activity-all {
  background-color: white;
  border: 1px solid black;
}

.activity-paid {
  background-color: #ffde9b;
  color: #896e3a;
  border: 1px solid #896e3a;
}

.activity-open {
  background-color: #9fd3d7;
  color: #21646a;
  border: 1px solid #21646a;
}

.activity-member {
  background-color: #c69fd7;
  color: #6a3780;
  border: 1px solid #6a3780;
}

.calendar {
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 0 10px rgba(166, 166, 166, 0.5098039216);
}

.calendar-item {
  padding: 10px 20px;
  background-color: rgb(243, 243, 243);
  border-radius: 10px;
  transition: all 0.3s ease;
}
.calendar-item:hover {
  box-shadow: 2px 2px 10px rgba(166, 166, 166, 0.5098039216);
}
.calendar-item i {
  color: #3152a2;
}

.contact-section {
  padding-bottom: 40px;
}
@media screen and (min-width: 768px) {
  .contact-section {
    padding-bottom: 80px;
  }
}
@media screen and (min-width: 1440px) {
  .contact-section {
    padding-bottom: 120px;
  }
}

.email-link {
  text-align: center;
  color: white;
  background: linear-gradient(30deg, #ff7900, #ffc800);
  border-radius: 10px 10px 0 0;
  padding: 15px 0;
  margin: 0;
}
.email-link a {
  color: white;
  text-decoration: none;
}

.contact-form {
  padding: 40px;
  border-radius: 0 0 10px 10px;
  box-shadow: 0 0 10px rgba(166, 166, 166, 0.5098039216), 0 0 10px rgba(166, 166, 166, 0.5098039216);
}
.contact-form .form-label {
  font-weight: 700;
}
.contact-form .form-control:focus {
  border-color: #ff4800;
  box-shadow: 0 0 0 0.25rem rgba(255, 119, 0, 0.737254902);
}

.img-feature {
  position: relative;
  overflow: hidden;
  border-radius: 20px;
}
.img-feature .d-flex {
  width: 100%;
  height: 100%;
  position: relative;
}
.img-feature .d-flex .img-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 3;
}
.img-feature .d-flex .img-overlay h2 {
  color: white;
  text-align: center;
  background-color: rgba(255, 255, 255, 0.25);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-radius: 50px;
  padding: 5px 20px;
}
.img-feature .img-element {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16/9;
  transition: transform 0.5s ease;
}
.img-feature .img-element img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}
.img-feature .img-element img:hover {
  transform: scale(1.1);
}
.img-feature .img-element:first-child {
  border-radius: 20px 20px 0 0;
}
@media screen and (min-width: 1024px) {
  .img-feature .img-element:first-child {
    border-radius: 20px 0 0 20px;
  }
}
.img-feature .img-element:nth-child(2) {
  border-radius: 0 0 20px 20px;
}
@media screen and (min-width: 1024px) {
  .img-feature .img-element:nth-child(2) {
    border-radius: 0 20px 20px 0;
  }
}
.img-feature .img-element .img-text {
  position: absolute;
  bottom: 1.5rem;
  left: 1.5rem;
  z-index: 2;
  background-color: rgba(255, 255, 255, 0.25);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-radius: 10px;
  padding: 5px 10px;
  color: white;
}
.img-feature .img-element .img-text h3 {
  margin: 0;
}
.img-feature .img-element .img-icon {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  z-index: 2;
  font-size: 1.5em;
  color: white;
  background-color: rgba(255, 255, 255, 0.25);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-radius: 50%;
  padding: 10px 15px;
}
.img-feature .img-element-right .img-text {
  bottom: 2rem;
  right: 1.5rem;
  left: auto;
}
.img-feature .img-element-right .img-icon {
  top: 1.5rem;
  left: 1.5rem;
  right: auto;
}

footer {
  position: relative;
}
footer .footer-wave {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: auto;
  transform: translateY(-99%);
  display: block;
  pointer-events: none;
}
footer .footer-top {
  color: white;
  padding-top: 30px;
  background: #192a54;
}
footer .footer-top img {
  width: 50%;
}
@media screen and (min-width: 768px) {
  footer .footer-top img {
    width: 30%;
  }
}
@media screen and (min-width: 1024px) {
  footer .footer-top img {
    width: 70%;
  }
}
footer .footer-title {
  letter-spacing: 1px;
  text-transform: uppercase;
  font-weight: 700;
}
footer nav ul {
  list-style: none;
  padding: 0;
}
footer nav ul li {
  padding-bottom: 3px;
}
footer nav ul li a {
  color: rgb(183, 183, 183);
  text-decoration: none;
  transition: color 0.5s ease;
}
footer nav ul li a:hover {
  color: white;
}
footer address i {
  font-size: 1.2em;
}
footer address a {
  color: #c6c6c6;
  text-decoration: none;
  transition: color 0.5s ease;
}
footer address a:hover {
  color: white;
}
footer .media-links a {
  text-decoration: none;
  margin-right: 5px;
}
footer .media-links i {
  font-size: 1.4em;
  color: #c6c6c6;
  transition: color 0.3s ease;
}
footer .media-links i:hover {
  color: white;
}
footer .footer-bottom {
  text-align: center;
  padding-top: 10px;
  background: #192a54;
  color: #c6c6c6;
}
footer .footer-bottom a {
  color: white;
  text-decoration: none;
}/*# sourceMappingURL=style.css.map */