@charset "UTF-8";
/* Use the Inter font family */
body {
  font-family: "Inter", sans-serif;
}

html {
  scroll-behavior: smooth;
}

/* Accordion button styling from index.html */
.tab-btn.active {
  background-color: white;
  color: #d97706;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}

/* Button hover effect from index.html */
.learn-more-btn {
  cursor: pointer;
  position: relative;
  overflow: hidden;
}
.learn-more-btn:hover .learn-more-arrow {
  transform: translateX(4px);
}
.learn-more-btn:active {
  transform: scale(0.98);
}
.learn-more-btn .learn-more-arrow {
  transition: all 0.3s ease;
}

/* Social card hover effect from socials.html */
.social-card {
  transition: all 0.3s ease;
}
.social-card:hover {
  transform: translateY(-8px);
}
.social-card:hover .social-icon {
  transform: scale(1.1);
}
.social-card .social-icon {
  transition: all 0.3s ease;
}

/* Tour card styling from group.html */
.tour-card {
  transition: all 0.3s ease;
}
.tour-card:hover {
  transform: translateY(-4px);
}
.tour-card:hover .feature-icon {
  transform: scale(1.1);
}

.feature-icon {
  transition: all 0.3s ease;
}

.price-tag {
  background: linear-gradient(135deg, #d97706, #fbbf24);
}

/* Bókun button general styling from group.html */
.bokunButton {
  display: inline-block;
  padding: 12px 24px;
  background: #f3f4f6;
  border-radius: 5px;
  box-shadow: none;
  font-weight: 600;
  font-size: 16px;
  text-decoration: none;
  text-align: center;
  color: #1f2937;
  border: none;
  cursor: pointer;
  transition: background 0.2s ease;
}
.bokunButton:hover {
  background: #c7ccd5;
}
.bokunButton:active {
  background: #d6d9e0;
}

/* Specific Bókun button styling from group.html */
#bokun_daea833d_7e30_4aec_98a3_a4924e76b4c6 {
  display: inline-block;
  padding: 12px 24px;
  background: #d97706;
  border-radius: 5px;
  box-shadow: none;
  font-weight: 600;
  font-size: 16px;
  text-decoration: none;
  text-align: center;
  color: #ffffff;
  border: none;
  cursor: pointer;
  transition: background 0.2s ease;
}
#bokun_daea833d_7e30_4aec_98a3_a4924e76b4c6:hover {
  background: #8f4e04;
}
#bokun_daea833d_7e30_4aec_98a3_a4924e76b4c6:active {
  background: #a75c05;
}

/* Tour details page styling from borjomi.html */
.sticky-card {
  position: sticky;
  top: 2rem;
}

.modal {
  display: none;
  position: fixed;
  z-index: 50;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  background-color: rgba(0, 0, 0, 0.85);
  -webkit-backdrop-filter: blur(5px);
  backdrop-filter: blur(5px);
  justify-content: center;
  align-items: center;
}
.modal .modal-container {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
}
.modal .modal-content {
  display: block;
  width: auto;
  height: auto;
  max-width: 90vw;
  max-height: 90vh;
  border-radius: 0.5rem;
}
.modal .modal-close {
  position: absolute;
  top: 15px;
  right: 35px;
  color: #f1f1f1;
  font-size: 40px;
  font-weight: bold;
  transition: 0.3s;
  cursor: pointer;
  z-index: 60;
}
.modal .carousel-btn {
  padding: 1rem;
}

.gallery-img {
  cursor: pointer;
  transition: opacity 0.3s ease-in-out;
}

.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background-color: rgba(0, 0, 0, 0.5);
  color: white;
  border: none;
  padding: 0.5rem;
  cursor: pointer;
  border-radius: 9999px;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background-color 0.2s ease;
}
@media (min-width: 768px) {
  .carousel-btn {
    padding: 0.75rem;
  }
}
.carousel-btn:hover {
  background-color: rgba(0, 0, 0, 0.8);
}
.carousel-btn.prev {
  left: 0.5rem;
}
@media (min-width: 768px) {
  .carousel-btn.prev {
    left: 1rem;
  }
}
.carousel-btn.next {
  right: 0.5rem;
}
@media (min-width: 768px) {
  .carousel-btn.next {
    right: 1rem;
  }
}

.hidden-until-loaded {
  display: none;
}

#itinerary-list ul {
  list-style-type: disc;
  padding-left: 20px;
  margin-top: 8px;
}/*# sourceMappingURL=main.css.map */