
/* DESTINATIONS CAROUSEL */
.destinations-carousel-wrapper {
  position: relative;
  width: 100%;
  max-width: 1400px;
  margin: 2rem auto 1.5rem;
  padding: 0 60px;
}

.destinations-carousel {
  overflow: hidden;
  width: 100%;
}

.destinations-track {
  display: flex;
  gap: 1.5rem;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.destination-card {
  min-width: calc(25% - 1.125rem);
  height: 300px;
  position: relative;
  border-radius: 1rem;
  overflow: hidden;
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.9), rgba(20, 15, 0, 0.85));
  border: 2px solid rgba(255, 215, 0, 0.3);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.6), 0 0 0 1px rgba(255, 215, 0, 0.2);
  transition: all 0.4s ease;
  cursor: pointer;
}

.destination-card:hover {
  transform: translateY(-10px);
  border-color: rgba(255, 215, 0, 0.6);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.8), 0 0 30px rgba(255, 215, 0, 0.3);
}

.destination-image {
  width: 100%;
  height: 100%;
  position: relative;
  overflow: hidden;
}

.destination-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.destination-card:hover .destination-image img {
  transform: scale(1.1);
}

.destination-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.95) 0%, rgba(0, 0, 0, 0.5) 50%, transparent 100%);
  z-index: 1;
}

.destination-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 1.2rem;
  z-index: 2;
  color: #fff;
}

.destination-content h3 {
  font-size: 1.4rem;
  font-weight: 800;
  margin-bottom: 0.4rem;
  background: linear-gradient(135deg, #ffd700 0%, #ffed4e 50%, #ffd700 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  filter: drop-shadow(0 2px 8px rgba(255, 215, 0, 0.4));
}

.destination-content .highlight {
  color: #ffd700;
  font-weight: 600;
  font-size: 0.9rem;
  margin-bottom: 0.3rem;
  text-shadow: 0 0 10px rgba(255, 215, 0, 0.5);
}

.destination-content p {
  color: #d4d4d4;
  font-size: 0.85rem;
  line-height: 1.4;
  margin: 0;
}

.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.9), rgba(20, 15, 0, 0.8));
  border: 2px solid rgba(255, 215, 0, 0.5);
  border-radius: 50%;
  color: #ffd700;
  font-size: 1.2rem;
  cursor: pointer;
  transition: all 0.3s ease;
  z-index: 10;
  backdrop-filter: blur(10px);
  display: flex;
  align-items: center;
  justify-content: center;
}

.carousel-btn:hover {
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.4), rgba(255, 215, 0, 0.3));
  border-color: rgba(255, 215, 0, 0.9);
  box-shadow: 0 0 30px rgba(255, 215, 0, 0.5);
  transform: translateY(-50%) scale(1.1);
}

.carousel-btn-left {
  left: 0;
}

.carousel-btn-right {
  right: 0;
}

.carousel-btn:disabled {
  opacity: 0.3;
  cursor: not-allowed;
}

.carousel-btn:disabled:hover {
  transform: translateY(-50%) scale(1);
  box-shadow: none;
}

/* Responsive */
@media (max-width: 1200px) {
  .destination-card {
    min-width: calc(33.333% - 1rem);
  }
}

@media (max-width: 768px) {
  .destinations-carousel-wrapper {
    padding: 0 50px;
  }
  
  .destination-card {
    min-width: calc(50% - 0.75rem);
    height: 300px;
  }
  
  .destination-content h3 {
    font-size: 1.3rem;
  }
  
  .carousel-btn {
    width: 40px;
    height: 40px;
    font-size: 1rem;
  }
}

@media (max-width: 480px) {
  .destination-card {
    min-width: 100%;
    height: 350px;
  }
  
  .destinations-carousel-wrapper {
    padding: 0 45px;
  }
}
