/* Hero Section */
.hero-banner {
  background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('../images/topview.jpg');
  background-size: cover;
  background-position: center;
  height: 300px;
  display: flex;

  align-items: center;
  justify-content: center;
  color: white;
  margin-top: -120px; /* Offset the body padding-top */
  padding-top: 120px; /* Add padding to compensate for the navbar height */
}

.hero-title {
  font-family: 'Playfair Display', serif;
  font-size: 3rem;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

/* Reviews Section */
.reviews-container {
  padding: 60px 0;
  background-color: #f9f9f9;
}

.review-card {
  background-color: white;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  height: 400px;
  margin: 20px 0;
}

.review-image {
  height: 100%;
  overflow: hidden;
}

.review-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.review-content {
  height: 100%;
  padding: 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.review-quote {
  font-size: 1.8rem;
  color: #f0b429;
  margin-bottom: 10px;
}

.review-text {
  font-size: 1rem;
  color: #555;
  line-height: 1.7;
  margin-bottom: 20px;
  font-style: italic;
}

.review-info {
  margin-top: auto;
}

.review-name {
  font-weight: 600;
  font-size: 1.1rem;
  color: #333;
  margin-bottom: 5px;
  font-family: 'Montserrat', sans-serif;
}

.review-rating {
  color: #f0b429;
  font-size: 1.2rem;
  margin-bottom: 5px;
}

.review-tag {
  display: inline-block;
  padding: 3px 10px;
  background-color: #f0b42920;
  color: #c07d00;
  border-radius: 30px;
  font-size: 0.8rem;
  font-weight: 600;
  margin-top: 10px;
}

/* Carousel Controls */
.carousel-indicators {
  position: relative;
  margin-top: 20px;
  margin-bottom: 0;
  display: flex;
  justify-content: flex-start;
  gap: 10px;
}

.carousel-indicators [data-bs-target] {
  width: 50px;
  height: 3px;
  border-radius: 0;
  background-color: #e0e0e0;
  opacity: 1;
  margin: 0;
  padding: 0;
  border: 0;
}

.carousel-indicators .active {
  background-color: #f0b429;
}

/* Submit Review Section */
.submit-review-section {
  padding: 60px 0;
}

.review-form {
  background-color: white;
  padding: 40px;
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.star-rating {
  display: flex;
  flex-direction: row-reverse;
  justify-content: flex-end;
}

.star-rating input {
  display: none;
}

.star-rating label {
  cursor: pointer;
  width: 30px;
  height: 30px;
  background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24'%3e%3cpath d='M12 .587l3.668 7.568 8.332 1.151-6.064 5.828 1.48 8.279-7.416-3.967-7.417 3.967 1.481-8.279-6.064-5.828 8.332-1.151z' fill='%23dadada'/%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}

.star-rating input:checked ~ label,
.star-rating label:hover,
.star-rating label:hover ~ label {
  background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24'%3e%3cpath d='M12 .587l3.668 7.568 8.332 1.151-6.064 5.828 1.48 8.279-7.416-3.967-7.417 3.967 1.481-8.279-6.064-5.828 8.332-1.151z' fill='%23f0b429'/%3e%3c/svg%3e");
}

/* Animation Classes */
.hero-fade-in {
  animation: fadeIn 1s ease-in-out forwards;
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

/* Pagination Styles */
.pagination .page-link {
  color: #f0b429;
  border-color: #f0b429;
  background-color: white;
}

.pagination .page-link:hover {
  color: white;
  background-color: #f0b429;
  border-color: #f0b429;
}

.pagination .page-item.active .page-link {
  color: white;
  background-color: #f0b429;
  border-color: #f0b429;
}

.pagination .page-item.disabled .page-link {
  color: #6c757d;
  background-color: white;
  border-color: #dee2e6;
}

@media (max-width: 768px) {
  .hero-title {
    font-size: 2.5rem;
  }
  
  .review-card {
    height: auto;
  }
  
  .review-image {
    height: 250px;
  }
  
  .review-content {
    padding: 30px;
  }
}