html,
body {
  /* height: 100%; */
  margin: 0;
}

.fwb {
  font-weight: bold;
}

.font-title {
  font-size: 2rem;
}

.font-sub-title {
  font-size: 1.5rem;
}

.font-list,
.font-text {
  font-size: 1.25rem;
}

section {
  height: 100vh;
  display: flex;
  flex-direction: column;
}

.home-background-image {
  background-image: url("..//img/snorkeling.jpg");
  background-size: cover;
}

.mobile-top {
  display: none;
}

.socials-navbar {
  display: flex;
  align-items: center;
  justify-content: space-evenly;
  flex: 0 0 10%;
  /* background-color: red; */
  background-color: rgba(144, 238, 144, 0.9);
}

.socials-navbar .item {
  display: flex;
  justify-content: center;
  flex: 1;
}

.socials-navbar button i {
  font-size: 1.5rem;
}

.content-container {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  flex: 0 0 80%;
}

.content-container .logo img {
  width: 200px;
  height: auto;
}

.content-container .buttons-container {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 1rem;
  box-sizing: border-box;
}

.content-container .buttons-container button {
  font-size: 1.5rem;
  border-radius: 1rem;
  padding: 0.5rem;
  color: white;
  background-color: inherit;
}

.content-container .buttons-container button:hover {
  cursor: pointer;
}

.main-navbar {
  display: flex;
  justify-content: center;
  align-items: center;
  flex: 0 0 10%;
  position: relative;
  /* background-color: blue; */
  background-color: rgba(135, 206, 235, 0.9);
}

.primary-navbar {
  /* padding: 0 1rem 0 1rem; */
  padding: 0 1rem 0 1rem;
  width: 100%;
}

.primary-navbar ul {
  list-style: none;
  display: flex;
  justify-content: space-evenly;
  padding: 0;
  border: 1px solid;
  border-radius: 1rem 1rem 0 0;
  overflow: hidden;
}

.primary-navbar li {
  display: flex;
  justify-content: center;
  text-align: center;
  flex: 1;
}

.primary-navbar li:not(:first-child):not(:last-child) {
  border-left: 1px solid;
  border-right: 1px solid;
}

.primary-navbar li button {
  background-color: transparent;
  border: none;
  cursor: pointer;
  font-weight: bold;
  font-size: 1.5rem;
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
}

.secondary-navbar {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  height: 0;
  /* Initially hidden */
  overflow: hidden;
  transition: all 0.3s ease-in-out;
  /* background-color: red; */
  background-color: rgba(135, 206, 235, 1);
  z-index: 1000;
}

/* Show secondary navbar */
.secondary-navbar.active {
  height: 50vh;
}

.full-nav-item {
  display: none;
}

.full-nav-item.active {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  box-sizing: border-box;
  padding: 1rem;
  gap: 1rem;
}

.full-nav-item.active.left {
  text-align: left;
}

.full-nav-item.active.center {
  text-align: center;
}

.full-nav-item.active.right {
  text-align: right;
}

.gallery-section-container {
  display: flex;
  flex-direction: column;
  width: 100%;
  box-sizing: border-box;
  padding: 1rem;
}

.gallery-section-container .title {
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 1.5rem;
  font-weight: bold;
}

.swiper {
  /* width: 50%; */
  /* height: auto; */
  width: 70%;
  height: 500px;
}

.swiper-slide {
  text-align: center;
  font-size: 18px;
  background: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
}

.swiper-slide img {
  display: block;
  width: 100%;
  height: 100%;
  /* object-fit: cover; */
  object-fit: contain;
}

.swiper-pagination-bullet {
  width: 20px;
  height: 20px;
  text-align: center;
  line-height: 20px;
  font-size: 12px;
  color: #000;
  opacity: 1;
  background: white;
  /* background: rgba(0, 0, 0, 0.2); */
}

.swiper-pagination-bullet-active {
  color: #fff;
  background: #007aff;
}

.info-card-container {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  width: 100%;
}

.info-card-container .info-card {
  display: flex;
  flex-direction: column;
  justify-content: center;
  /* align-items: center; */
  box-sizing: border-box;
  padding: 1rem;
  width: 50%;
}

.info-card-container .title {
  display: flex;
  justify-content: center;
  align-items: center;
}

.info-card-container .content {
  display: flex;
  justify-content: center;
  /* height: 500px; */
  /* width: 50%; */
  overflow-y: auto;
}

.location-container {
  display: flex;
  box-sizing: border-box;
  padding: 1rem;
}

.location-container .content {
  width: 100%;
  height: 500px;
}

@media only screen and (max-device-width: 1024px) {
  section {
    width: 100vw;
    height: auto;
  }

  .mobile-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem;
    box-sizing: border-box;
  }

  .mobile-top .side-nav-toggler {
    font-size: 30px;
    color: lightgreen;
    background-color: rgba(0, 0, 0, 0.5);
    padding: 0.5rem;
    border: none;
    border-radius: 0.25rem;
    box-sizing: border-box;
  }

  .mobile-top .logo {
    display: flex;
  }

  .mobile-top .logo img {
    width: 100px;
    height: auto;
  }

  .socials-navbar {
    display: none;
  }

  .content-container .logo {
    display: none;
  }

  .main-navbar {
    display: none;
  }

  .swiper {
    width: 100%;
  }

  .info-card-container .info-card {
    width: 100%;
    height: 400px;
  }

  .page-logo {
    display: none !important;
  }

  .page-info {
    flex-direction: column;
    padding: 1rem;
  }

  .footer .contact-info {
    flex-direction: column;
  }

  .font-title {
    font-size: 1.5rem;
  }

  .font-sub-title {
    font-size: 1.25rem;
  }

  .font-list,
  .font-text {
    font-size: 1rem;
  }
}

.full-screen-nav {
  position: fixed;
  top: 0;
  left: 0;
  display: none;
  box-sizing: border-box;
  padding: 1rem;
  width: 0%;
  transition: all 0.3s ease-in-out;
  background-color: white;
}

.full-screen-nav.active {
  display: flex;
  width: 100vw;
  height: 100vh;
}

.full-screen-nav .nav-content {
  flex: 0 0 90%;
  flex-wrap: wrap;
}

.full-screen-nav .nav-close {
  display: flex;
  justify-content: flex-end;
  flex: 0 0 10%;
  height: fit-content;
}

.full-screen-nav .nav-item {
  padding-bottom: 1rem;
}

.full-screen-nav .nav-item a {
  text-decoration: none;
  color: black;
}

.full-screen-nav .nav-item .item-title {
  font-size: 1.5rem;
  font-weight: bold;
}

.full-screen-nav .nav-item .item-title:hover {
  cursor: pointer;
}

.full-screen-nav .dropdown-container {
  display: none;
}

.full-screen-nav .dropdown-container.active {
  display: flex;
  flex-direction: column;
  padding-top: 0.5rem;
  gap: 1rem;
}

.full-screen-nav .dropdown-container .dropdown-element .title {
  font-size: 1.25rem;
  font-weight: bold;
}

.full-screen-nav .dropdown-container .dropdown-element a {
  font-weight: bold;
}

.page-logo {
  display: flex;
  justify-content: center;
}

.page-logo img {
  width: 200px;
  height: auto;
}

.social-buttons {
  display: flex;
  gap: 1rem;
}

.social-buttons .btn {
  font-size: 1.5rem;
  font-weight: bold;
  border: none;
  padding: 0;
  margin: 0;
  background-color: transparent;
}

.social-buttons .btn i {
  color: grey;
}

.custom-btn a {
  text-decoration: none;
  color: inherit;
}

.full-nav-item a {
  text-decoration: none;
  color: black;
}

.full-nav-item a:hover {
  color: white;
}

.card-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  padding: 1rem;
  gap: 1rem;
}

.card-container.centered {
  justify-content: center;
}

.card {
  flex-basis: 15%;
  /* width: auto;
  height: auto; */
  /* width: 200px;
  height: 250px; */
  background-color: #f0f0f0;
  border: 1px solid #ccc;
  border-radius: 0.25rem;
}

.card .side {
  display: none;
  flex-direction: column;
  width: 100%;
  height: 100%;
}

.card .side.active {
  display: flex;
}

.card-header {
  flex: 0 0 45%;
  overflow: hidden;
  /* width: 100%;
  height: 100%; */
  /* flex: 1 1 50%; */
}

.card-body {
  flex: 0 0 45%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border-bottom: 1px solid dimgray;
  font-weight: bold;
}

.card-description {
  flex: 0 0 90%;
  border-bottom: 1px solid dimgray;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: 0 0.5rem 0 0.5rem;
  /* justify-content: space-between; */
}

.card-footer {
  flex: 0 0 10%;
  display: flex;
  justify-content: center;
}

.card-img-container {
  max-width: 100%;
  max-height: 100%;
}

.card-img-container img {
  max-width: 100%;
  max-height: 100%;
  /* object-fit: cover; */
}

.card-titles {
  padding: 0 0.25rem;
}

.card-titles .main {
  font-size: 1.25rem;
}

.card-info {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 0 0.25rem;
}

.card-list .title {
  font-weight: bold;
  font-size: 1.25rem;
}

.card-list ul {
  padding-top: 0;
  padding-bottom: 0;
  margin: 0;
}

.card-footer .page-link {
  display: flex;
  justify-content: center;
  align-items: center;
}

.card-footer .page-link a {
  text-decoration: none;
  color: black;
}

.full-page-tours-link {
  display: block;
}

.mobile-page-tours-link {
  display: none;
}

@media (max-width: 768px) {
  .card {
    /* flex: 1 0 calc(50% - 1rem); */
  flex-basis: 100%;
  }

  .card-header, .card-body, .card-footer {
    flex: 1 1 auto;
  }

  .custom-btn {
    display: none;
  }

  .full-page-tours-link {
    display: none;
  }

  .mobile-page-tours-link {
    display: block;
  }
}

.centered-container {
  display: flex;
  justify-content: center;
  width: 100%;
}

.custom-btn.lg {
  font-size: 1.5rem;
}

.custom-btn {
  background-color: transparent;
  border: 1px solid blue;
  border-radius: 0.25rem;
  color: blue;
}
