@import url('helper.css');

/* BACKGROUND */
.mainBackground {
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  background-attachment: fixed;
}

/* HEADINGS */
h1 {
  font-size: 70px;
  color: #2e2e2e;
  text-align: center;
  font-weight: bold;
}

h2 {
  font-size: 30px;
  color: #fff;
  text-align: center;
  font-weight: bold;
}

h3 {
  font-size: 25px;
  color: #2e2e2e;
  text-align: center;
}

p {
  font-size: 20px;
  color: #fff;
  text-align: center;
}


/* SWIPER SECTION */
.hero-section .swiper {
  width: 100%;
  max-width: 70vw;
  height: 500px;
}

.hero-section .swiper-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.swiper-button-prev,
.swiper-button-next {
  width: 45px;
  height: 45px;
}

.swiper-button-prev::after,
.swiper-button-next::after {
  font-size: 20px;
  color: #af483e;
}

.swiper-pagination-bullet {
  background: #fff !important;
}

.swiper-pagination-bullet-active {
  background: #af483e !important;
  opacity: 1;
}

/* SERVICE CARDS */
.service-card {
  position: relative;
  overflow: hidden;
  min-height: 300px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 1rem;
  text-align: center;
}

.card-bg-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
  opacity: 0.8;
  filter: brightness(0.4);
}

.card-content {
  position: relative;
  z-index: 2;
  color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 100%;
  padding: 1rem;
}

.animate-on-scroll {
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.6s ease-out;
}

.fade-in-up {
  opacity: 1 !important;
  transform: translateY(0) !important;
}

/* BUTTONS */
.homeButtons {
  color: #fff;
  background-color: #2e2e2e;
  padding: 0.6rem 1.4rem;
  border-radius: 8px;
  font-weight: 500;
  transition: all 0.3s ease-in-out;
}

.homeButtons:hover {
  background-color: #af483e;
  color: #fff;
  text-decoration: none;
  transform: translateY(-2px);
}

.exploreButtons {
  background-color: #af483e;
  color: #fff;
  padding: 0.6rem 1.4rem;
  border-radius: 8px;
  font-weight: 500;
  transition: all 0.3s ease-in-out;
  margin-top: 1rem;
  width: auto;
}

.exploreButtons:hover {
  background-color: #2e2e2e;
  color: #fff;
  text-decoration: none;
  transform: translateY(-2px);
}

/* TIPS SECTION */
#tips-preview ul {
  padding-left: 1rem;
  text-align: left;
}

.tipsCard {
  border: none;
  border-radius: 1rem;
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(6px);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

/* MAP SECTION */
.location-card {
  border-radius: 1rem;
  overflow: hidden;
}

.contactBackground {
  color: #fff;
  background-color: #2e2e2e;
}

.location-card .map-container {
  height: 100%;
  min-height: 300px;
}

.location-card .map {
  width: 100%;
  height: 100%;
  border: 0;
}

/* REVIEW SECTION */
#review-container {
  max-width: 900px;
  margin: 2rem auto;
  padding: 20px;
  border-radius: 16px;
  background: url('/img/kudu_result.webp');
  backdrop-filter: blur(10px);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.reviews-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.review-card {
  backdrop-filter: blur(8px);
  background-color: rgba(255, 255, 255, 0.70);
  border-radius: 12px;
  padding: 15px;
  transition: transform 0.3s ease, opacity 0.3s ease;
  min-height: 200px;
  max-height: 3000px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  overflow: hidden;
}

.blockquote {
  background-color: transparent;
}

.blockquote-footer {
  color: #af483e;
}


/* Mobile Screens */
@media (max-width: 768px) {

  .reviews-grid {
    grid-template-columns: 1fr;
  }

  .hero-section .swiper {
    max-width: 100% !important;
    height: 300px;
  }

  .swiper-slide img {
    object-fit: cover;
  }

  .swiper-slide {
    height: 100%;
  }

  .logo {
    max-height: 300px;
    width: 50%;
  }

  h1 {
    font-size: 40px;
    padding: 5px;
  }

  h2 {
    font-size: 28px;
  }

  h3 {
    font-size: 20px;
    padding: 5px;
    margin-left: 5px;
    margin-right: 5px;
  }

  h4 {
    font-size: 20px;
    text-align: center;
  }

  p {
    font-size: 20px;
  }

  #backToTopButton {
    font-size: 14px;
  }

}