#destinations { background: var(--sand-light); }
.dest-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 28px; margin-top: 60px; }
.dest-card {
  border-radius: var(--radius); overflow: hidden;
  background: var(--white); box-shadow: 0 4px 30px rgba(27,94,122,0.08);
  transition: transform 0.35s, box-shadow 0.35s; cursor: pointer;
}
.dest-card:hover { transform: translateY(-8px); box-shadow: 0 16px 50px rgba(27,94,122,0.15); }
.dest-img { height: 260px; overflow: hidden; position: relative; }
.dest-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s; }
.dest-card:hover .dest-img img { transform: scale(1.06); }

/* taghazout slideshow */
.dest-img-slideshow {
  position: absolute; inset: 0;
}
.dest-img-slideshow img {
  position: absolute; top: 0; left: 0;
  width: 100%; height: 100%; object-fit: cover;
  opacity: 0;
  animation: taghaFade 12s infinite;
}
.dest-img-slideshow img:nth-child(1) { animation-delay: 0s; }
.dest-img-slideshow img:nth-child(2) { animation-delay: 4s; }
.dest-img-slideshow img:nth-child(3) { animation-delay: 8s; }
.dest-card:hover .dest-img-slideshow img {
  animation-play-state: paused;
  transform: scale(1.06);
}

@keyframes taghaFade {
  0%   { opacity: 0; }
  5%   { opacity: 1; }
  28%  { opacity: 1; }
  33%  { opacity: 0; }
  100% { opacity: 0; }
}
.dest-img-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(13,53,71,0.6) 0%, transparent 50%);
}
.dest-badge {
  position: absolute; top: 16px; left: 16px;
  background: var(--sunset); color: var(--white);
  padding: 5px 14px; border-radius: 50px; font-size: 0.7rem;
  font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase;
}
.dest-badge--ocean { background: var(--ocean); }
.dest-badge--green { background: #1a7a4a; }
.dest-wave-rating {
  position: absolute; bottom: 14px; left: 16px;
  display: flex; align-items: center; gap: 6px;
  color: var(--white); font-size: 0.75rem; font-weight: 600;
}
.dest-wave-rating svg { width: 14px; height: 14px; color: var(--sunset-gold); }
.wave-dots { display: flex; gap: 3px; }
.wave-dot { width: 8px; height: 8px; border-radius: 50%; background: rgba(255,255,255,0.3); }
.wave-dot.active { background: var(--sunset-gold); }
.dest-body { padding: 28px; }
.dest-body h3 {
  font-family: 'Bebas Neue', sans-serif; font-size: 2rem;
  color: var(--ocean-deep); letter-spacing: 0.04em; margin-bottom: 12px;
}
.dest-body p { color: var(--text-mid); font-size: 0.92rem; line-height: 1.65; margin-bottom: 16px; }
.dest-tags { display: flex; flex-wrap: wrap; gap: 8px; }
.dest-tag {
  display: flex; align-items: center; gap: 5px;
  background: var(--sand); color: var(--ocean); padding: 5px 12px;
  border-radius: 50px; font-size: 0.72rem; font-weight: 600; letter-spacing: 0.06em;
}
.dest-tag svg { width: 12px; height: 12px; }

/* gallery strip */
#gallery { padding: 0; overflow: hidden; }
.gallery-strip { display: flex; gap: 4px; height: 320px; }
.gallery-strip-item { flex: 1; overflow: hidden; position: relative; min-width: 0; transition: flex 0.4s ease; cursor: pointer; }
.gallery-strip-item:hover { flex: 2.5; }
.gallery-strip-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s; }
.gallery-strip-item:hover img { transform: scale(1.05); }
.gallery-strip-label {
  position: absolute; bottom: 0; left: 0; right: 0;
  padding: 20px 16px 14px;
  background: linear-gradient(to top, rgba(13,53,71,0.8) 0%, transparent 100%);
  color: var(--white); font-size: 0.75rem; font-weight: 600;
  letter-spacing: 0.1em; text-transform: uppercase;
  opacity: 0; transition: opacity 0.3s;
}
.gallery-strip-item:hover .gallery-strip-label { opacity: 1; }

@media(max-width:900px){
  .gallery-strip { height: 200px; }
}
@media(max-width:680px){
  .gallery-strip { height: 140px; }
  .gallery-strip-item { flex: 0 0 100px; }
  .gallery-strip-item:hover { flex: 0 0 140px; }
}
