/* ============================================================
   AUSZEIT REISEN — Angebots-Cards (Cruise Compass)
   ============================================================ */

.section-angebote {
  padding-block: var(--space-3xl, 80px);
  background-color: var(--color-dark-bg, #0A1628);
}

.section-angebote .eyebrow {
  display: block;
  text-align: center;
  color: var(--color-gold, #C9A84C);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  margin-bottom: 12px;
}

.section-angebote h2 {
  text-align: center;
  color: #fff;
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  margin-bottom: 12px;
}

.section-angebote .section-subtitle {
  text-align: center;
  color: rgba(255, 255, 255, 0.65);
  font-size: 1rem;
  max-width: 640px;
  margin: 0 auto var(--space-xl, 40px);
  line-height: 1.6;
}

.angebote-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  max-width: 1200px;
  margin: 0 auto;
}

@media (min-width: 640px) {
  .angebote-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (min-width: 1024px) {
  .angebote-grid {
    grid-template-columns: 1fr 1fr 1fr;
  }
}

.angebot-card {
  display: block;
  background: #0F1418;
  border: 1px solid rgba(201, 168, 76, 0.2);
  border-radius: 12px;
  overflow: hidden;
  text-decoration: none;
  color: #F5F3EF;
  transition: all 0.4s ease;
}

.angebot-card:hover {
  border-color: #C9A84C;
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.4);
}

.angebot-card__image {
  position: relative;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: #1a1f25;
}

.angebot-card__image > img:first-child {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.angebot-card:hover .angebot-card__image > img:first-child {
  transform: scale(1.05);
}

.angebot-card__logo {
  position: absolute;
  top: 12px;
  right: 12px;
  height: 28px;
  width: auto;
  background: rgba(255, 255, 255, 0.92);
  border-radius: 4px;
  padding: 4px 8px;
  object-fit: contain;
}

.angebot-card__content {
  padding: 20px;
}

.angebot-card__reederei {
  display: block;
  color: #C9A84C;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 4px;
}

.angebot-card__title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.15rem;
  font-weight: 600;
  margin: 0 0 8px;
  line-height: 1.3;
  color: #fff;
}

.angebot-card__text {
  color: #B8C4D0;
  font-size: 0.85rem;
  line-height: 1.5;
  margin: 0 0 12px;
}

.angebot-card__preis {
  color: #C9A84C;
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 8px;
}

.angebot-card__kabinen {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 12px;
}

.angebot-kabine {
  font-size: 0.7rem;
  color: #B8C4D0;
  background: rgba(201, 168, 76, 0.1);
  border: 1px solid rgba(201, 168, 76, 0.2);
  padding: 3px 8px;
  border-radius: 4px;
  white-space: nowrap;
}

.angebot-card__cta {
  display: inline-block;
  color: #C9A84C;
  font-size: 0.85rem;
  font-weight: 500;
  transition: opacity 0.2s;
}

.angebot-card:hover .angebot-card__cta {
  opacity: 0.8;
}

/* Trust hint below Angebote */
.angebote-trust {
  text-align: center;
  font-size: 0.8rem;
  color: #B8C4D0;
  margin-top: 24px;
  line-height: 1.6;
}
