/* =========================
   Resort & Umgebung lebendiger
   ========================= */

.spot-card {
  position: relative;
  overflow: hidden;
  border-radius: 20px;
  cursor: pointer;
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.spot-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.45s ease;
}

.spot-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.18);
}

.spot-card:hover img {
  transform: scale(1.05);
}

.spot-gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(3, 16, 19, 0.10) 0%,
    rgba(3, 16, 19, 0.20) 40%,
    rgba(3, 16, 19, 0.72) 100%
  );
}

.spot-view-btn {
  position: absolute;
  right: 18px;
  top: 18px;
  z-index: 3;
  border: 0;
  border-radius: 999px;
  padding: 10px 16px;
  background: rgba(241, 194, 50, 0.92);
  color: #ffffff;
  font-weight: 700;
  font-size: 0.85rem;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.18);
  transition: 0.25s ease;
}

.spot-view-btn:hover {
  background: #f1c232;
  transform: translateY(-2px);
}

.spot-tags {
  position: absolute;
  top: 18px;
  left: 18px;
  z-index: 3;
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.tag-pill {
  display: inline-flex;
  align-items: center;
  padding: 7px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.14);
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.25);
  font-size: 0.76rem;
  font-weight: 700;
  backdrop-filter: blur(4px);
}

.tag-pill.vibrant {
  background: rgba(241, 194, 50, 0.92);
  border-color: rgba(241, 194, 50, 0.95);
}

.tag-pill.special {
  background: rgba(255, 255, 255, 0.92);
  color: #b88900;
  border-color: rgba(255, 255, 255, 0.95);
}

.spot-details {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 3;
  padding: 24px;
  color: #ffffff;
}

.spot-details h3 {
  color: #ffffff;
  margin-bottom: 8px;
}

.spot-details p {
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 0;
}

.trip-count {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 12px;
  font-size: 0.86rem;
  font-weight: 700;
  color: #f1c232;
}

/* =========================
   Lightbox
   ========================= */

.image-lightbox {
  position: fixed;
  inset: 0;
  z-index: 999999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  opacity: 0;
  visibility: hidden;
  transition: 0.28s ease;
}

.image-lightbox.active {
  opacity: 1;
  visibility: visible;
}

.lightbox-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(3, 16, 19, 0.84);
  backdrop-filter: blur(6px);
}

.lightbox-content {
  position: relative;
  z-index: 2;
  width: min(100%, 1100px);
  max-height: 90vh;
  overflow: hidden;
  border-radius: 22px;
  background: #ffffff;
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.32);
}

.lightbox-content img {
  display: block;
  width: 100%;
  max-height: 72vh;
  object-fit: cover;
}

.lightbox-caption {
  padding: 22px 24px;
  background: #fffaf0;
}

.lightbox-caption h4 {
  margin-bottom: 6px;
  color: #7a5c00;
}

.lightbox-caption p {
  margin-bottom: 0;
  color: #8a6800;
}

.lightbox-close {
  position: absolute;
  top: 14px;
  right: 14px;
  z-index: 3;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 0;
  background: rgba(3, 16, 19, 0.72);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: 0.2s ease;
}

.lightbox-close:hover {
  background: rgba(241, 194, 50, 0.95);
}

/* Mobile */
@media (max-width: 768px) {
  .spot-view-btn {
    top: auto;
    bottom: 18px;
    right: 18px;
    padding: 9px 14px;
    font-size: 0.8rem;
  }

  .spot-details {
    padding: 20px;
  }

  .lightbox-content img {
    max-height: 55vh;
  }

  .lightbox-caption {
    padding: 18px;
  }
}
/* Resort & Umgebung – gelber 3D Look */
.featured-destinations .spot-card {
  position: relative;
  overflow: hidden;
  border-radius: 18px;
  cursor: pointer;
  box-shadow:
    0 18px 45px rgba(0, 0, 0, 0.14),
    0 0 0 1px rgba(241, 194, 50, 0.18),
    0 0 34px rgba(241, 194, 50, 0.18);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.featured-destinations .spot-card:hover {
  transform: translateY(-6px);
  box-shadow:
    0 24px 55px rgba(0, 0, 0, 0.20),
    0 0 0 1px rgba(241, 194, 50, 0.35),
    0 0 45px rgba(241, 194, 50, 0.32);
}

.featured-destinations .spot-card img {
  transition: transform 0.45s ease;
}

.featured-destinations .spot-card:hover img {
  transform: scale(1.05);
}

.featured-destinations .spot-card::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  background: radial-gradient(
    circle at 80% 15%,
    rgba(241, 194, 50, 0.22),
    transparent 32%
  );
}

.featured-destinations .spot-gradient {
  z-index: 1;
}

.featured-destinations .spot-tags,
.featured-destinations .spot-details {
  z-index: 3;
}

.featured-destinations .spot-details h3 {
  color: #ffffff;
}

.featured-destinations .spot-details p {
  color: rgba(255, 255, 255, 0.88);
}

.featured-destinations .trip-count {
  color: #f1c232;
}

.featured-destinations .tag-pill.vibrant {
  background: #f1c232;
  color: #ffffff;
}

.featured-destinations .tag-pill.special {
  background: rgba(255, 255, 255, 0.92);
  color: #b88900;
}
/* Gelber 3D-/Glow-Effekt für Bilderkarten */
.yellow-glow-card {
  box-shadow:
    0 18px 45px rgba(0, 0, 0, 0.14),
    0 0 0 1px rgba(241, 194, 50, 0.18),
    0 0 34px rgba(241, 194, 50, 0.18);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.yellow-glow-card:hover {
  transform: translateY(-6px);
  box-shadow:
    0 24px 55px rgba(0, 0, 0, 0.20),
    0 0 0 1px rgba(241, 194, 50, 0.35),
    0 0 45px rgba(241, 194, 50, 0.32);
}

.yellow-glow-card::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  background: radial-gradient(
    circle at 82% 15%,
    rgba(241, 194, 50, 0.22),
    transparent 34%
  );
}
.image-lightbox {
  position: fixed;
  inset: 0;
  z-index: 999999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  opacity: 0;
  visibility: hidden;
  transition: 0.25s ease;
}

.image-lightbox.active {
  opacity: 1;
  visibility: visible;
}

.lightbox-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(3, 16, 19, 0.86);
  backdrop-filter: blur(6px);
}

.lightbox-content {
  position: relative;
  z-index: 2;
  width: min(100%, 1100px);
  max-height: 90vh;
  overflow: hidden;
  border-radius: 22px;
  background: #fffaf0;
  box-shadow:
    0 30px 90px rgba(0, 0, 0, 0.40),
    0 0 0 1px rgba(241, 194, 50, 0.35),
    0 0 50px rgba(241, 194, 50, 0.22);
}

.lightbox-content img {
  display: block;
  width: 100%;
  max-height: 72vh;
  object-fit: contain;
  background: #031013;
}

.lightbox-caption {
  padding: 20px 24px;
}

.lightbox-caption h4 {
  margin: 0 0 6px;
  color: #7a5c00;
}

.lightbox-caption p {
  margin: 0;
  color: #8a6800;
}

.lightbox-close {
  position: absolute;
  top: 14px;
  right: 14px;
  z-index: 3;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid #ffffff;
  background: rgba(241, 194, 50, 0.94);
  color: #ffffff;
  font-size: 22px;
  line-height: 1;
  cursor: pointer;
}
.lightbox-nav {
  position: absolute;
  top: 45%;
  z-index: 4;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid #ffffff;
  background: rgba(241, 194, 50, 0.92);
  color: #ffffff;
  font-size: 34px;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: 0.2s ease;
}

.lightbox-nav:hover {
  background: #f1c232;
  transform: translateY(-2px);
}

.lightbox-prev {
  left: 16px;
}

.lightbox-next {
  right: 16px;
}

.lightbox-counter {
  position: absolute;
  left: 50%;
  bottom: 16px;
  z-index: 5;

  transform: translateX(-50%);

  padding: 6px 14px;
  border-radius: 999px;

  background: rgba(3, 16, 19, 0.65);
  color: #ffffff;
  font-size: 0.85rem;
  font-weight: 700;
  line-height: 1;

  border: 1px solid rgba(255, 255, 255, 0.35);
  backdrop-filter: blur(6px);
}

@media (max-width: 768px) {
  .lightbox-nav {
    width: 38px;
    height: 38px;
    font-size: 28px;
  }

  .lightbox-prev {
    left: 10px;
  }

  .lightbox-next {
    right: 10px;
  }
}
.yellow-soft-glow {
  box-shadow:
    0 24px 55px rgba(0, 0, 0, 0.16),
    0 0 0 2px rgba(241, 194, 50, 0.45),
    0 0 70px rgba(241, 194, 50, 0.55) !important;
}

.yellow-soft-glow::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: radial-gradient(
    circle at 18% 88%,
    rgba(241, 194, 50, 0.34),
    transparent 42%
  );
  z-index: 2;
}

.yellow-soft-glow img {
  display: block;
  width: 100%;
  border-radius: 18px;
}
/* Gelber Glow beim Sankt-Englmar-Bild */
#why-us .image-block {
  position: relative;
  overflow: visible !important;
  border-radius: 18px;
  box-shadow:
    0 24px 55px rgba(0, 0, 0, 0.16),
    0 0 0 2px rgba(241, 194, 50, 0.35),
    0 0 65px rgba(241, 194, 50, 0.45) !important;
}

#why-us .image-block img {
  position: relative;
  z-index: 2;
  display: block;
  border-radius: 18px;
}

/* warmer gelber Schein im Bild */
#why-us .image-block::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 3;
  pointer-events: none;
  border-radius: 18px;
  background: radial-gradient(
    circle at 18% 88%,
    rgba(241, 194, 50, 0.36),
    transparent 42%
  );
}

/* Icon-Kachel über dem Glow halten */
#why-us .image-block .experience-tag {
  position: absolute;
  z-index: 4;
}
/* Resort & Umgebung – stärkerer gelber Glow */
.featured-destinations .yellow-glow-card {
  box-shadow:
    0 24px 55px rgba(0, 0, 0, 0.18),
    0 0 0 2px rgba(241, 194, 50, 0.42),
    0 0 70px rgba(241, 194, 50, 0.48) !important;
}

.featured-destinations .yellow-glow-card:hover {
  transform: translateY(-6px);
  box-shadow:
    0 30px 70px rgba(0, 0, 0, 0.24),
    0 0 0 2px rgba(241, 194, 50, 0.62),
    0 0 90px rgba(241, 194, 50, 0.62) !important;
}

.featured-destinations .yellow-glow-card::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  background: radial-gradient(
    circle at 82% 16%,
    rgba(241, 194, 50, 0.30),
    transparent 36%
  );
}
#featured-destinations .section-title h2 {
  color: #f1c232;
}
#sankt .image-block {
  position: relative;
  overflow: visible !important;
  border-radius: 18px;
  box-shadow:
    0 24px 55px rgba(0, 0, 0, 0.16),
    0 0 0 2px rgba(241, 194, 50, 0.35),
    0 0 65px rgba(241, 194, 50, 0.45) !important;
}

#sankt .image-block img {
  position: relative;
  z-index: 2;
  display: block;
  border-radius: 18px;
}

#sankt .image-block::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 3;
  pointer-events: none;
  border-radius: 18px;
  background: radial-gradient(circle at 18% 88%, rgba(241,194,50,.36), transparent 42%);
}

#sankt .image-block .experience-tag {
  position: absolute;
  z-index: 4;
}
/* Gelber Glow auf den Fewo-Seiten */
.fewo-schoenblick-page .fewo-intro .hero-visual,
.fewo-harmonia-page .fewo-intro .hero-visual {
  position: relative;
  overflow: visible !important;
  border-radius: 18px;
  box-shadow:
    0 24px 55px rgba(0, 0, 0, 0.16),
    0 0 0 2px rgba(241, 194, 50, 0.38),
    0 0 70px rgba(241, 194, 50, 0.48) !important;
}

.fewo-schoenblick-page .fewo-intro .hero-visual img,
.fewo-harmonia-page .fewo-intro .hero-visual img {
  position: relative;
  z-index: 2;
  display: block;
  border-radius: 18px;
}

.fewo-schoenblick-page .fewo-intro .hero-visual::after,
.fewo-harmonia-page .fewo-intro .hero-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 3;
  pointer-events: none;
  border-radius: 18px;
  background: radial-gradient(
    circle at 18% 88%,
    rgba(241, 194, 50, 0.34),
    transparent 42%
  );
}

.fewo-schoenblick-page .fewo-intro .hero-visual .badge-overlay,
.fewo-harmonia-page .fewo-intro .hero-visual .badge-overlay {
  position: absolute;
  z-index: 4;
}