/* Variables for colors and fonts (optional but recommended) */
/* Styles for .showTop */
.showTop {
  position: fixed;
  display: flex;
  width: 100vw;
  height: 100vh;
  top: 0;
  left: 0;
  justify-content: center;
  align-items: center;
  transition: all 1s ease;
}

/* Background image container */
.bg_lp {
  display: flex;
  background: #256356;
  overflow: hidden;
  position: relative;
  width: 100%;
  height: 100%;
}
.bg_lp img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.bg_lp h1 {
  position: relative;
  z-index: 2;
  color: #fff;
}

.frame-click {
  position: absolute;
  bottom: -8%;
  display: flex;
  left: 50%;
  transform: translate(-50%);
  flex-direction: column;
  align-items: center;
}

/* Trigger button */
.triggerHide {
  width: 10vw;
  height: 10vw;
  bottom: -5vw;
  left: 50%;
  z-index: 2;
  background: #fff;
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1vh;
  overflow: hidden;
  user-select: none;
  cursor: pointer;
}
.triggerHide:hover {
  background: rgba(255, 255, 255, 0.41);
}
.triggerHide:active {
  background: #fff;
}
.triggerHide > * {
  z-index: 3;
}
.triggerHide > div {
  font-size: 1.7em;
  font-family: "Montserrat", sans-serif;
  font-weight: 600;
}

/* Main layout styles */
.main_lp {
  width: 100vw;
  height: 100vh;
  position: fixed;
  display: flex;
  justify-content: space-between;
}

/* Trips container */
.trips {
  width: 33.3333333333%;
  background: rgb(203, 203, 203);
  height: 100%;
  overflow: hidden;
  transition: all 0.5s ease;
  display: flex;
  justify-content: center;
}
.trips img {
  height: 100%;
  filter: grayscale(100%);
  transition: filter 0.3s ease;
}
.trips img:hover {
  filter: grayscale(0%);
}
.trips img:active {
  opacity: 50%;
}

.trips:hover {
  width: 70%;
}

/* Links styling */
.links {
  z-index: 2;
  font-size: 2em;
  color: #fff;
  text-decoration: none;
}
.links:hover {
  color: #00cbf9;
  text-decoration: underline;
}
.links:active {
  color: #fff;
  text-decoration: none;
}
.links:visited {
  color: #fff;
}

/* Modal styles */
.modal {
  position: fixed;
  z-index: -10;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0);
  padding-top: 60px;
  transition: background-color 0.3s ease;
}
.modal .modal-content {
  position: absolute;
  top: -100vh;
  left: 50%;
  transform: translateX(-50%);
  background-color: #fff;
  margin: 5% auto;
  padding: 20px;
  border: 1px solid #888;
  width: 80%;
  max-width: 600px;
  transition: all 0.3s ease-in;
}
.modal .modal-content .modal-title {
  font-size: 3em;
}
.modal h2,
.modal p {
  text-align: center;
}

.show {
  background-color: rgba(0, 0, 0, 0.5) !important;
  z-index: 3 !important;
}

.showModal {
  top: 5vh !important;
}

@media screen and (max-width: 1024px) {
  .mid_logo {
    width: 50% !important;
  }
  /* Styles for .showTop */
  .showTop {
    justify-content: flex-start; /* Align content towards the top */
  }
  .triggerHide {
    height: 15vh;
    width: 15vh;
    bottom: -7.5vh;
    border-radius: 50%;
  }
  /* Styles for .bg_lp */
  /* Adjust .main_lp */
  .main_lp {
    flex-direction: column; /* Stack elements vertically */
    justify-content: flex-start; /* Align content to the top */
    height: 100%; /* Allow flexible height */
  }
  .trips:hover {
    width: 100%;
  }
  /* Trips container adjustments */
  .trips {
    width: 100%; /* Full width for single-column layout */
    overflow: visible; /* Ensure visibility */
  }
  .trips img {
    height: auto; /* Adjust height for smaller screens */
    width: 100%; /* Ensure full width coverage */
  }
  /* Links styling adjustments */
  .links {
    font-size: 1.5em; /* Scale down font size */
    margin: 1vh 0; /* Add spacing */
  }
  .bot_text {
    font-size: 1em;
  }
  /* Modal adjustments */
  .modal {
    padding-top: 10vh; /* Adjust padding */
  }
  .modal .modal-content {
    width: 90vw; /* Reduce modal width for smaller screens */
    padding: 5vw; /* Add padding */
  }
  .modal .modal-title {
    font-size: 2.5em; /* Scale title font size */
  }
  .modal h2, .modal p {
    font-size: 1em; /* Scale text size */
  }
  /* Adjust .showModal */
  .showModal {
    top: 10vh !important; /* Adjust position */
  }
}

/*# sourceMappingURL=landing_page.css.map */
