/**
 * Destination Images Styling
 */

/* Header-Bild Styling */
.destination-header-image {
  position: relative;
  height: 400px;
  width: 100%;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.destination-header-image::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: linear-gradient(rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.6));
  z-index: 1;
}

.destination-header-image .hero-body {
  position: relative;
  z-index: 2;
}

/* Card Bild Styling */
.destination-card .card-image {
  position: relative;
  overflow: hidden;
}

.destination-card .card-image figure {
  transition: transform 0.5s ease;
}

.destination-card:hover .card-image figure {
  transform: scale(1.05);
}

.destination-card .card-image img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

/* Fallback für Karten ohne Bilder */
.destination-card-no-image {
  background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
  height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #4a4a4a;
  font-weight: bold;
  text-transform: uppercase;
  letter-spacing: 1px;
}