html {
  scroll-behavior: smooth;
}

/* Smooth fade background for navbar */
.navbar-blur {
  background-color: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(8px);
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.animate-fadeIn {
  animation: fadeIn 0.3s ease-out forwards;
}

/* Reviews Section */
.reviews {
  position: relative;
  background: url("assets/review_bg.png") center/cover no-repeat;
  padding: 80px 20px;
  color: white;
  text-align: center;
}

.reviews::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  z-index: 1;
}

.reviews h2 {
  position: relative;
  z-index: 2;
  font-size: 2.5rem;
  color: #b8956a;
  margin-bottom: 40px;
  letter-spacing: 2px;
}

.rating-info {
  position: relative;
  z-index: 2;
  margin-bottom: 60px;
}

.rating-info h3 {
  font-size: 1.8rem;
  margin-bottom: 10px;
}

.stars {
  color: #ffc107;
  font-size: 1.5rem;
  margin-bottom: 5px;
}

.rating-score {
  font-size: 3rem;
  font-weight: bold;
  margin: 10px 0;
}

.review-count {
  font-size: 1.1rem;
  color: #ccc;
}

/* Reviews Slider */
.reviews-slider {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
  overflow: hidden;
}

.reviews-container {
  display: flex;
  gap: 30px;
  overflow-x: auto;
  scroll-behavior: smooth;
  padding-bottom: 10px;
}

.reviews-container::-webkit-scrollbar {
  display: none;
}

.review-card {
  min-width: 300px;
  background-color: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(5px);
  color: white;
  padding: 30px 20px;
  border-radius: 12px;
  text-align: center;
  flex-shrink: 0;
  transition: transform 0.3s ease;
}

.review-card:hover {
  transform: translateY(-5px);
}

.review-avatar {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background-color: #b8956a;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 15px;
  font-size: 1.5rem;
  font-weight: bold;
  color: white;
}

.review-text {
  font-style: italic;
  margin-bottom: 15px;
  font-size: 1rem;
  line-height: 1.6;
}

.review-author {
  font-weight: bold;
  font-size: 0.9rem;
  color: #ccc;
}

/* Slider Dots */
.slider-dots {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 25px;
  position: relative;
  z-index: 2;
}

.dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.5);
  cursor: pointer;
}

.dot.active {
  background-color: #b8956a;
}

/* Responsive */
@media (max-width: 768px) {
  .review-card {
    min-width: 250px;
  }
}
