/* Fonts: Cinzel for elegance (logo feel), Lato for body */
@import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@400;700&family=Lato:wght@300;400;700&family=Playfair+Display:ital,wght@0,400;0,600;1,400&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Lato:wght@300;400;700&display=swap');

body {
  font-family: 'Inter', sans-serif;
  background-color: #F9F7F2;
}

/* Apply Lato font to all heading tags */
/* h1, h2, h3, h4, h5, h6 {
  font-family: 'Lato', sans-serif;
} */

/* Apply Inter font to all paragraph tags */
p {
  font-family: 'Inter', sans-serif;
}

/* Utility class for applying Inter font */
.font-inter {
  font-family: 'Inter', sans-serif;
}

/* Utility class for applying Lato font to headings */
.font-lato {
  font-family: 'Lato', sans-serif;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: #F9F7F2;
}

::-webkit-scrollbar-thumb {
  background: #C5A059;
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background: #B48E43;
}

/* Owl Carousel Custom Styles */
.testimonial-slider.owl-carousel .owl-nav button.owl-prev,
.testimonial-slider.owl-carousel .owl-nav button.owl-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: #C5A059 !important;
  color: white !important;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}
.owl-carousel {
    z-index: -1 !important;
}
.testimonial-slider.owl-carousel .owl-nav button.owl-prev {
  left: -60px;
}

.testimonial-slider.owl-carousel .owl-nav button.owl-next {
  right: -60px;
}

.testimonial-slider.owl-carousel .owl-nav button.owl-prev:hover,
.testimonial-slider.owl-carousel .owl-nav button.owl-next:hover {
  background: #B48E43 !important;
  transform: translateY(-50%) scale(1.1);
}

.testimonial-slider.owl-carousel .owl-dots {
  text-align: center;
  margin-top: 2rem;
}

.testimonial-slider.owl-carousel .owl-dots .owl-dot {
  display: inline-block;
  margin: 0 5px;
}

.testimonial-slider.owl-carousel .owl-dots .owl-dot span {
  width: 12px;
  height: 12px;
  background: #D4AF37;
  border-radius: 50%;
  display: block;
  transition: all 0.3s ease;
}

.testimonial-slider.owl-carousel .owl-dots .owl-dot.active span {
  background: #C5A059;
  transform: scale(1.2);
}

.testimonial-slider.owl-carousel .owl-dots .owl-dot:hover span {
  background: #B48E43;
}

@media (max-width: 768px) {
  .testimonial-slider.owl-carousel .owl-nav button.owl-prev {
    left: -40px;
  }
  
  .testimonial-slider.owl-carousel .owl-nav button.owl-next {
    right: -40px;
  }
  
  .testimonial-slider.owl-carousel .owl-nav button.owl-prev,
  .testimonial-slider.owl-carousel .owl-nav button.owl-next {
    width: 40px;
    height: 40px;
  }
}