/* ===== DESTINATION GRID - IMAGE ONLY CARDS ===== */
.destination-section {
  background: #f8fafc;
  padding: 80px 20px;
}

.destination-header {
  text-align: center;
  margin-bottom: 50px;
}

.subtitle {
  font-size: 0.9rem;
  color: #9f0808;
  font-weight: 700;
  letter-spacing: 2px;
  margin-bottom: 15px;
}

.title {
  font-size: 2.5rem;
  color: #1a202c;
  font-weight: 800;
  margin-bottom: 15px;
}

.description {
  color: #64748b;
  font-size: 1.1rem;
  max-width: 700px;
  margin: 0 auto;
}

/* Grid Layout */
.destinations-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  max-width: 1400px;
  margin: 0 auto;
  padding: 20px;
}

/* Image Card */
.destination-card-img {
  position: relative;
  display: block;
  height: 350px;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
}

.destination-card-img::before {

  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(180deg, transparent 0%, rgba(159, 8, 8, 0.2) 100%);
  opacity: 0;
  transition: opacity 0.4s ease;
  z-index: 1;
}

.destination-card-img:hover::before {
  opacity: 1;
}

.destination-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Country label shown on the top-left of each image */
.destination-card-img .destination-label {
  position: absolute;
  top: 12px;
  left: 12px;
  background: rgba(88, 4, 4, 0.75);
  color: #fff;
  padding: 6px 10px;
  border-radius: 6px;
  font-size: 0.9rem;
  font-weight: 700;
  z-index: 2;
  text-transform: uppercase;
  letter-spacing: 0.6px;
}

/* .destination-card-img:hover .destination-label {
  background: rgba(88, 4, 4, 0.75);
} */

.destination-card-img:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: 0 20px 40px rgba(159, 8, 8, 0.25);
}

.destination-card-img:hover img {
  transform: scale(1.15);
}

/* Responsive Design */
@media (max-width: 1200px) {
  .destinations-grid {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
  }

  .destination-card-img {
    height: 320px;
  }
}

@media (max-width: 768px) {
  .destination-section {
    padding: 60px 15px;
  }

  .title {
    font-size: 2rem;
  }

  .destinations-grid {
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
    padding: 10px;
  }

  .destination-card-img {
    height: 280px;
    border-radius: 12px;
  }
}

@media (max-width: 480px) {
  .destinations-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .destination-card-img {
    height: 260px;
  }

  .title {
    font-size: 1.7rem;
  }

  .description {
    font-size: 1rem;
  }
}

.course-title {
  color: #9f0808;
}