/* CSS-based placeholder images for destinations */
.destination-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  color: white;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
  position: relative;
  overflow: hidden;
}

.destination-placeholder::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  opacity: 0.8;
  z-index: -1;
}

/* Bali - Tropical theme */
.bali-placeholder {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.bali-placeholder::before {
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="20" cy="20" r="2" fill="rgba(255,255,255,0.1)"/><circle cx="80" cy="30" r="1.5" fill="rgba(255,255,255,0.1)"/><circle cx="60" cy="70" r="2.5" fill="rgba(255,255,255,0.1)"/><circle cx="30" cy="80" r="1" fill="rgba(255,255,255,0.1)"/></svg>');
}

/* Paris - Elegant theme */
.paris-placeholder {
  background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
}

/* Tokyo - Modern theme */
.tokyo-placeholder {
  background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
}

/* Rome - Historic theme */
.rome-placeholder {
  background: linear-gradient(135deg, #43e97b 0%, #38f9d7 100%);
}

/* New York - Urban theme */
.newyork-placeholder {
  background: linear-gradient(135deg, #fa709a 0%, #fee140 100%);
}

/* Sydney - Coastal theme */
.sydney-placeholder {
  background: linear-gradient(135deg, #a8edea 0%, #fed6e3 100%);
}
