/* Tailwind CSS Custom Styles */
/* Only custom animations and special effects that Tailwind doesn't cover */

/* Custom animations and transitions */
.sidebar-transition {
  transition: left 0.3s ease-in-out;
}

.content-shift {
  transition: margin-left 0.3s ease-in-out;
}

/* Background image utilities */
.hero-bg {
  background-image: url(./assets/images/meadow-with-mountain-seen-from-wooden-table.jpg);
  background-size: cover;
  background-position: center;
}

/* Smooth scroll behavior */
html {
  scroll-behavior: smooth;
}

/* Custom hover effects for navigation */
.nav-hover-effect {
  position: relative;
  transition: all 0.3s ease;
}

.nav-hover-effect:hover {
  background-color: rgba(0, 0, 0, 0.1);
  border-radius: 5px;
}

/* Testimonial card styling */
.testimonial-card {
  background: #ffffff;
  border-radius: 10px;
  padding: 20px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.testimonial-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

/* Carousel enhancements */
.carousel-inner {
  touch-action: pan-y pinch-zoom;
  cursor: grab;
}

.carousel-inner:active {
  cursor: grabbing;
}

.carousel-item {
  transition: opacity 0.3s ease-in-out;
}

.carousel-dot {
  cursor: pointer;
}

.carousel-dot:hover {
  transform: scale(1.2);
}

/* Modal backdrop */
.modal-backdrop {
  background-color: rgba(0, 0, 0, 0.7);
}

/* Disclaimer overlay */
#disclaimer-overlay {
  display: flex;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.8);
  z-index: 9999;
  justify-content: center;
  align-items: center;
}

#disclaimer-popup {
  background: white;
  padding: 30px;
  border-radius: 10px;
  max-width: 600px;
  text-align: center;
}
