/* Image Carousel Styles */
.image-carousel {
  height: 100%;
  min-height: 550px;
  overflow: hidden;
  position: relative;
  width: 100%;
}

.carousel-images {
  display: flex;
  height: 100%;
  transition: transform 0.5s ease-in-out;
}

.carousel-slide {
  align-items: center;
  background: linear-gradient(135deg, #f5f3f0, #e8e5e0);
  display: flex;
  height: 100%;
  justify-content: center;
  min-width: 100%;
  position: relative;
}

.carousel-slide::before {
  background: radial-gradient(circle at 30% 50%, rgba(44, 95, 45, 0.03) 0%, transparent 50%);
  content: "";
  height: 100%;
  position: absolute;
  width: 100%;
}

.carousel-slide img {
  height: 100%;
  object-fit: cover;
  position: relative;
  width: 100%;
  z-index: 1;
}

.carousel-btn {
  align-items: center;
  background: rgba(255, 255, 255, 0.9);
  border: none;
  border-radius: 50%;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  cursor: pointer;
  display: flex;
  height: 40px;
  justify-content: center;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  transition: all 0.3s;
  width: 40px;
  z-index: 10;
}

.carousel-btn:hover {
  background: white;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.carousel-btn.prev {
  left: 10px;
}

.carousel-btn.next {
  right: 10px;
}

.carousel-indicators {
  bottom: 15px;
  display: flex;
  gap: 8px;
  left: 50%;
  position: absolute;
  transform: translateX(-50%);
  z-index: 10;
}

.carousel-indicator {
  background: rgba(255, 255, 255, 0.5);
  border: none;
  border-radius: 50%;
  cursor: pointer;
  height: 10px;
  padding: 0;
  transition: all 0.3s;
  width: 10px;
}

.carousel-indicator.active {
  background: white;
  border-radius: 5px;
  width: 30px;
}

@media (max-width: 768px) {
  .image-carousel {
    min-height: 300px;
  }

  .carousel-btn {
    height: 35px;
    width: 35px;
  }
}

/* Dropdown Menu Styles */
.dropdown {
  position: relative;
}

.dropdown-toggle {
  cursor: pointer;
}

.dropdown-content {
  background: white;
  border-radius: 0 0 8px 8px;
  border-top: 3px solid #2c5f2d;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
  display: none;
  left: 0;
  min-width: 280px;
  opacity: 0;
  pointer-events: none;
  position: absolute;
  top: calc(100% + 1rem);
  transform: translateY(-10px);
  transition: opacity 0.3s, transform 0.3s;
  z-index: 1001;
}

.dropdown.open .dropdown-content {
  display: block;
  opacity: 1;
  pointer-events: all;
  transform: translateY(0);
}

.dropdown-content a {
  border-bottom: 1px solid #f0f0f0;
  color: #3a3a3a;
  display: block;
  font-size: 0.9rem;
  letter-spacing: 0.5px;
  padding: 1rem 1.5rem;
  text-decoration: none;
  text-transform: none;
  transition: all 0.3s;
}

.dropdown-content a:last-child {
  border-bottom: none;
  border-radius: 0 0 8px 8px;
}

.dropdown-content a:hover {
  background: #faf9f7;
  color: #2c5f2d;
  padding-left: 2rem;
}

/* Mobile dropdown */
@media (max-width: 768px) {
  .dropdown-content {
    background: #f8f9fa;
    border: none;
    border-radius: 0;
    box-shadow: none;
    margin-top: 0.5rem;
    position: static;
  }

  .dropdown.open .dropdown-content {
    transform: none;
  }

  .dropdown-content a {
    font-size: 0.75rem;
    padding: 0.7rem 1rem;
  }
}
