/* Intro Section */

.intro {
  margin-top: -80px;
  height: 95dvh;
  position: relative;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.intro::before,
.intro::after {
  content: "";
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transition: opacity 1s ease-in-out;
  z-index: -1;
}

.intro::before {
  background-image: var(--bg-image-1);
  opacity: 1;
}

.intro::after {
  background-image: var(--bg-image-2);
  opacity: 0;
}

.intro.fade-switch::before {
  opacity: 0;
}

.intro.fade-switch::after {
  opacity: 1;
}

.intro-overlay {
  background-color: rgba(0, 0, 0, 0.5);
  color: white;
  padding: 30px;
  border-radius: 25px;
  position: relative;
  z-index: 1;
}

.intro h1 {
  font-size: 3em;
  margin: 0;
}

.intro h3 {
  margin-top: 10px;
}


/* About Section */

.about {
  background-color: white;
  text-align: justify;
}

.about h2 {
  margin-bottom: 40px;
  font-size: 2em;
  color: #18b3b9;
}

.about-wrapper {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 100px;
  max-width: 80%;
  margin: 0 auto;
  text-align: justify;
}

.about-content {
  flex: 1 1 500px;
  font-size: 1.1rem;
  color: #555;
  line-height: 1.6;
}

.about-image {
  flex: 1 1 400px;
  padding-top: 10%;
  text-align: justify;
}

.about-image img {
  width: 100%;
  max-width: 500px;
  border-radius: 15px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}


/* Accommodation Section */

.accommodation {
  background-color: var(--primary);
  text-align: justify;
}

.accommodation h2 {
  margin-bottom: 40px;
  font-size: 2em;
  color: #18b3b9;
}

.accommodation-text {
  flex: 1 1 400px;
  font-size: 1.1rem;
  color: #555;
  line-height: 1.6;
  text-align: justify;
  align-self: center;
}

.accommodation-wrapper {
  max-width: 80%;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;
  gap: 100px;
  margin-bottom: 40px;
}

.accommodation-map {
  flex: 1 1 500px;
  max-width: 40%;
  padding-top: 10%;
  text-align: center;
}

.accommodation-map iframe {
  max-width: 100%;
  height: 350px;
  border: 0;
  border-radius: 15px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.accommodation-features {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
}

.accommodation-features .feature {
  flex: 1 1 120px;
  max-width: 120px;
  text-align: center;
}

.accommodation-features .feature img {
  width: 40px;
  height: 40px;
}

.gallery-container {
  position: relative;
  overflow: hidden;
  margin: 0 auto;
  margin-top: 25px;
}

.gallery-track {
  display: flex;
  gap: 20px;
  transition: transform 0.3s ease-in-out;
  scroll-behavior: smooth;
  overflow-x: auto;
  scrollbar-width: none;
  /* Firefox */
}

.gallery-track::-webkit-scrollbar {
  display: none;
  /* Chrome */
}

.gallery-item {
  flex: 0 0 auto;
  width: 300px;
  border-radius: 10px;
  overflow: hidden;
}

.gallery-item img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 10px;
}

.gallery-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  font-size: 2rem;
  background-color: rgba(255, 255, 255, 0.7);
  border: none;
  padding: 10px 15px;
  cursor: pointer;
  z-index: 10;
  transition: background-color 0.3s ease;
}

.gallery-btn:hover {
  background-color: rgba(255, 255, 255, 1);
}

.gallery-btn.left {
  left: 0;
}

.gallery-btn.right {
  right: 0;
}

.lightbox-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.95);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  z-index: 9999;
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
}

.lightbox-overlay.show {
  opacity: 1;
  pointer-events: auto;
}

.lightbox-image {
  max-width: 90vw;
  max-height: 80vh;
  border-radius: 8px;
  box-shadow: 0 0 20px rgba(255, 255, 255, 0.5);
  transition: transform 0.3s ease;
}

.lightbox-alt {
  color: #fff;
  margin-bottom: 20px;
  font-size: 1.3rem;
  font-weight: bold;
  text-align: center;
}

.lightbox-close {
  position: absolute;
  top: 20px;
  right: 30px;
  font-size: 2.5rem;
  background: none;
  border: none;
  color: white;
  cursor: pointer;
  z-index: 10000;
}

.lightbox-nav {
  position: absolute;
  top: 50%;
  font-size: 3rem;
  background: none;
  border: none;
  color: white;
  cursor: pointer;
  user-select: none;
  transform: translateY(-50%);
  padding: 0 15px;
  z-index: 10000;
}

.lightbox-nav.left {
  left: 20px;
}

.lightbox-nav.right {
  right: 20px;
}


/* Transport Section */

.transport {
  background-color: white;
  text-align: justify;
  padding: 60px 20px;
}

.transport h2 {
  margin-bottom: 10px;
  font-size: 2em;
  color: #18b3b9;
  text-align: center;
}

.transport h3 {
  margin-bottom: 15px;
  font-size: 1.4em;
  color: #222;
}

.transport h4 {
  margin-bottom: 15px;
  font-size: 1.2em;
  color: #222;
}

.transport h5 {
  font-size: 1em;
  color: #222;
}

.transport-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 50px;
  max-width: 80%;
  margin: 0 auto;
  flex-wrap: wrap;
  text-align: justify;
}

.transport-text {
  flex: 1 1 50%;
  font-size: 1.1rem;
  color: #555;
  line-height: 1.6;
  text-align: justify;
  align-self: center;
}

.card-text {
  border: 1px solid #18b3b9;
  background-color: white;
  padding: 25px;
  border-radius: 25px;
  margin-bottom: 25px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
}

.transport-table {
  flex: 1 1 45%;
  padding-top: 5%;
}

.transport-table table {
  width: 100%;
  border-collapse: collapse;
  font-size: 1rem;
  color: #444;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  border-radius: 10px;
  overflow: hidden;
}

.transport-table th,
.transport-table td {
  padding: 12px 16px;
  border-bottom: 1px solid #999;
  background-color: white;
  text-align: center;
}

.short {
  display: none;
}

.transport-table th {
  background-color: var(--accent2);
  color: black;
  font-weight: bold;
}

.transport-table tr:last-child td {
  border-bottom: none;
}

.transport-table td[rowspan] {
  border-bottom: none;
}

.transport-table-text {
  font-size: 0.9em;
  font-style: italic;
  margin-top: 10px;
  color: #555;
}

.transport-airports {
  display: flex;
  gap: 75px;
  margin: 0 auto;
}

.transport-airports-left,
.transport-airports-right {
  flex: 1;
}


/* Visit Section */

.visit {
  background-color: white;
  padding: 60px 20px;
  text-align: justify;
  transition: max-height 0.5s ease;
  overflow: hidden;
}

.map-info-link {
  display: none;
}

.visit h2 {
  margin-bottom: 40px;
  font-size: 2em;
  color: #18b3b9;
  text-align: center;
}

.visit-slider {
  position: relative;
  overflow: hidden;
  width: 100%;
  margin: 0 auto;
  display: flex;
  justify-content: center;
}

.visit-track {
  display: flex;
  transition: transform 0.5s ease-in-out;
  max-width: 80%;
  gap: 15%;
  margin: 0 auto;
}

.visit-item {
  flex: 0 0 100%;
  margin: 0 auto;
  display: flex;
  flex-direction: row;
  gap: 100px;
  align-items: flex-start;
  justify-content: center;
  flex-wrap: wrap;
}

.visit-info {
  flex: 1 1 45%;
  text-align: justify;
}

.visit-info h3 {
  margin-bottom: 15px;
  font-size: 1.4em;
  color: #222;
}

.visit-info p {
  font-size: 1.1rem;
  color: #555;
  line-height: 1.6;
  margin-bottom: 10%;
}

.visit-map {
  text-align: center;
  margin-top: -30px;
}

.visit-info iframe {
  width: 80%;
  height: 350px;
  border: 0;
  border-radius: 15px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.visit-gallery {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  width: fit-content;
  margin-left: 0;
  margin-top: 40px;
}

.visit-gallery img {
  width: 250px;
  height: 90%;
  object-fit: cover;
  border-radius: 10px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
}

.slider-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  font-size: 2rem;
  background-color: rgba(255, 255, 255, 0.2);
  border: none;
  padding: 10px 15px;
  cursor: pointer;
  z-index: 10;
}

.slider-btn.left {
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}

.slider-btn.right {
  right: 0;
  top: 50%;
  transform: translateY(-50%);
}


/* Activities Section */

.activities {
  text-align: justify;
  padding: 60px 20px;
}

.activities h2 {
  margin-bottom: 10px;
  font-size: 2em;
  color: #18b3b9;
  text-align: center;
}

.activities h3 {
  margin-bottom: 15px;
  font-size: 1.3em;
  color: #222;
  text-align: left;
}

.activities h4 {
  margin-bottom: 15px;
  font-size: 1.1em;
  color: #222;
}

.activities h5 {
  font-size: 1em;
  color: #222;
}

.activities h2.activities-title {
  text-align: center;
  margin-bottom: 50px;
  font-size: 2em;
  color: #18b3b9;
}

.activities-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 50px;
  max-width: 80%;
  margin: 0 auto;
  flex-wrap: wrap;
}

.activities-content {
  flex: 1 1 48%;
  font-size: 1.1rem;
  color: #555;
  line-height: 1.6;
  text-align: justify;
  box-sizing: border-box;
}

/* Contact info */

.contact {
  text-align: justify;
  padding: 60px 20px;
  background-color: white;
}

.contact h2 {
  margin-bottom: 10px;
  font-size: 2em;
  color: #18b3b9;
  text-align: center;
}

.contact h2.contact-title {
  text-align: center;
  margin-bottom: 15px;
  font-size: 2em;
  color: #18b3b9;
}

.contact-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 50px;
  max-width: 80%;
  margin: 0 auto;
  flex-wrap: wrap;
}

.contact-content {
  flex: 1 1 48%;
  font-size: 1.1rem;
  color: #555;
  line-height: 1.6;
  text-align: justify;
  box-sizing: border-box;
}

.contact-content h3,
.contact-content h4,
.contact-content h5 {
  text-align: left;
}

.cookie-btn {
  flex: 1;
  padding: 8px;
  margin-top: 10px;
  font-size: 1rem;
  font-weight: 600;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
  color: white;
}

/* Media */

@media (max-width: 1500px) {
  .visit-item {
    gap: 50px;
  }
}

@media (max-width: 1400px) {
  section {
    padding-top: 0px;
  }

  .about-image {
    padding-top: 0px;
    flex: none;
  }

  .accommodation-wrapper {
    flex-direction: column;
    align-items: center;
    gap: 50px;
    margin-bottom: -150px;
  }

  .accommodation-map {
    flex: 1 1 500px;
    max-width: 80%;
    padding-top: 0;
    order: 2;
  }

  .accommodation-text {
    order: 1;
  }

  .accommodation-features {
    padding-top: 50px;
  }

  .visit-gallery {
    display: block;
    margin-top: 0px;
  }

  .visit-gallery img {
    width: 180px;
    margin: 20px;
  }

  .visit-map {
    width: 100%;
    display: block;
    margin: 0 auto;
  }

  .visit-item {
    gap: 0px;
  }

  .visit-info p {
    margin-bottom: 25px;
  }

  .visit-info iframe {
    width: 60%;
    height: 300px;
  }
}

@media (max-width: 1256px) {
  .visit-gallery img {
    margin: 15px;
  }
}

@media (max-width: 1206px) {
  .visit-gallery img {
    margin: 10px;
  }
}

@media (max-width: 1156px) {
  .visit-gallery img {
    margin: 5px;
  }
}

@media (max-width: 1106px) {
  .visit-gallery img {
    margin: 2px;
  }

  .footer-column p,
  .footer-column a {
    margin: 7px 2px;
  }
}

@media (max-width: 1076px) {
  .visit-gallery img {
    width: 175px;
  }
}

@media (max-width: 951px) {
  .visit {
    padding-bottom: 0px;
  }

  .visit-gallery {
    display: grid;
    grid-template-columns: repeat(2, auto);
    gap: 8px;
    justify-content: center;
    margin: 0 auto;
    margin-top: 50px;
  }

  .visit-gallery img {
    width: 200px;
    height: 200px;
    border-radius: 8px;
  }

  .visit-item {
    display: block;
    text-align: center;
    align-items: normal;
  }

  .visit-map iframe {
    display: none;
  }

  .map-info-link {
    display: block;
  }

  .map-info-text-visit {
    display: none;
  }
}

@media (max-width: 800px) {

  /* Intro Section */
  .intro-overlay {
    padding: 15px 20px;
    border-radius: 15px;
  }

  .intro h1 {
    font-size: 3em;
  }

  .intro h3 {
    font-size: 1rem;
    margin-top: 8px;
  }

  /* About Section */
  .about h2 {
    font-size: 1.8em;
    margin-bottom: 25px;
    text-align: center;
  }

  .about-wrapper {
    flex-direction: column;
    gap: 10px;
    max-width: 85%;
  }

  .about-content {
    flex: 1 1 100px;
    font-size: 1rem;
    line-height: 1.6;
    margin: 0 15px;
  }

  .about-image {
    flex: 1 1 100%;
    padding-top: 0;
    text-align: center;
  }

  /* Accomodation Section */
  .accommodation h2 {
    font-size: 1.8em;
    margin-bottom: 25px;
    text-align: center;
  }

  .accommodation-wrapper {
    display: flex;
    gap: 20px;
    max-width: 85%;
  }

  .accommodation-text {
    order: 1;
    font-size: 1rem;
    line-height: 1.6;
    margin: 0 15px;
  }

  .accommodation-map {
    order: 3;
    flex: 1 1 100%;
    max-width: 100%;
    padding-top: 0;
    text-align: center;
    margin-bottom: 200px;
  }

  .accommodation-map iframe {
    height: 300px;
  }

  .gallery-container {
    order: 2;
    width: 100%;
    margin-top: 20px;
  }

  .gallery-item {
    width: 200px;
  }

  .gallery-btn {
    font-size: 1.2rem;
  }

  .lightbox-image {
    max-width: 75vw;
    max-height: 60vh;
    margin: 0;
    position: relative;
  }

  .lightbox-close {
    top: 15px;
    right: 20px;
    font-size: 2rem;
  }

  .lightbox-nav {
    font-size: 2rem;
    padding: 0 10px;
  }

  /* Transport Section */
  .transport {
    text-align: justify;
    padding: 0px 0px;
  }

  .transport h2 {
    font-size: 1.8em;
    margin-bottom: 25px;
    text-align: center;
    margin-top: 0px;
    padding-top: 35px;
  }

  .transport h3,
  .transport h4,
  .transport h5 {
    font-size: 1rem;
    margin-bottom: 8px;
    text-align: left;
    margin-top: 0;
  }

  .transport-wrapper {
    gap: 0px;
    max-width: 85%;
    margin: 0 auto;
  }

  .transport-text {
    flex: 1 1 100%;
    font-size: 1rem;
    line-height: 1.6;
    text-align: justify;
    margin: 0 15px;
  }

  .transport-table table {
    width: 100%;
    table-layout: fixed;
    overflow-x: auto;
    font-size: 0.7rem;
  }

  .transport-table th,
  .transport-table td {
    word-wrap: break-word;
    padding: 4px 2px;
  }

  .transport-table-text {
    font-size: 0.7em;
  }

  .transport-airports {
    flex-direction: column;
    gap: 15px;
    margin: 0 auto;
  }

  .transport-airports-left,
  .transport-airports-right {
    flex: 1 1 100%;
    text-align: center;
  }

  /* Visit Section */
  .visit {
    padding: 20px 0px;
  }

  .visit h2 {
    font-size: 1.8em;
    margin-bottom: 10px;
    text-align: center;
  }

  .visit-info h3 {
    font-size: 1rem;
    margin-bottom: 8px;
    text-align: center;
  }

  .visit-info p {
    font-size: 1rem;
    line-height: 1.6;
  }

  .visit-gallery img {
    width: 175px;
    height: 175px;
    border-radius: 8px;
  }

  /* Activities Section */
  .activities-content h2 {
    font-size: 1.8em;
    margin-bottom: 25px;
    text-align: center;
  }

  .activities-content h3 {
    margin-bottom: 20px;
  }

  .activities-content p {
    font-size: 1rem;
    line-height: 1.6;
    text-align: justify;
    margin: 0;
  }

  .activities-content ul,
  .activities-content ul li {
    font-size: 1rem;
    line-height: 1.6;
    text-align: justify;
    padding-left: 20px;
    padding: 0;
    margin: 0;
  }

  .activities-content ul {
    padding-left: 0;
  }

  .activities-content ul li {
    text-indent: 0;
  }

  .activities h2.activities-title {
    margin-bottom: 25px;
  }
}

@media (max-width: 500px) {
  .lightbox-nav {
    font-size: 1.8rem;
    padding: 0 0px;
  }

  .activities-wrapper {
    max-width: 100%;
  }

  .transport-airports {
    flex-direction: column;
    gap: 15px;
    margin: 0 auto;
  }

  .transport-airports-left,
  .transport-airports-right {
    flex: 1 1 100%;
    text-align: center;
  }

  .card-text {
    width: 100%;
    max-width: 100%;
    margin-left: 0;
    margin-right: 0;
    box-sizing: border-box;
  }

  .transport-text {
    margin: 0 auto;
  }
}

@media (max-width: 445px) {
  .visit-gallery img {
    width: 150px;
    height: 150px
  }

  .visit {
    padding-bottom: 0px;
  }

  .visit-gallery img {
    margin-top: 0;
  }

  .visit-map iframe {
    height: 200px;
  }
}

@media (max-width: 380px) {
  .visit-gallery img {
    width: 125px;
    height: 125px
  }

  .activities-wrapper {
    gap: 0;
  }

  .full {
    display: none;
  }

  .short {
    display: inline;
  }
}