/* ==========================================================
   sculpture-select.css — Auswahlbildschirm der Skulpturen
   ========================================================== */

.sculpture-select {
  position: fixed;
  inset: 0;
  background: var(--color-bg-dark);
  z-index: 90;
  display: none;
  flex-direction: column;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  padding: 24px 16px 32px;
}
.sculpture-select.show { display: flex; }

.sculpture-select-header {
  text-align: center;
  margin-bottom: 22px;
  padding-top: 56px;
}
@media (min-width: 768px) {
  .sculpture-select-header { padding-top: 64px; }
}
.sculpture-select-title {
  color: var(--color-white);
  font-size: 22px;
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 6px;
}
.sculpture-select-subtitle {
  color: rgba(255, 247, 237, 0.65);
  font-size: 14px;
  line-height: 1.45;
}

.sculpture-cards {
  display: flex;
  flex-direction: column;
  gap: 12px;
  max-width: 480px;
  width: 100%;
  margin: 0 auto;
}

.sculpture-card {
  position: relative;
  height: 130px;
  border-radius: var(--radius-card, 18px);
  overflow: hidden;
  cursor: pointer;
  border: none;
  padding: 0;
  background: #2A1810;
  transition: transform 0.15s;
  text-align: left;
}
.sculpture-card:active { transform: scale(0.98); }

.sculpture-card-bg {
  position: absolute;
  inset: 0;
  background-position: center;
  background-size: cover;
  filter: saturate(1.55) contrast(1.3) brightness(1.05) hue-rotate(-3deg);
  transition: filter 0.3s;
}

.sculpture-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(20, 12, 8, 0.55) 0%,
    rgba(20, 12, 8, 0.35) 50%,
    rgba(20, 12, 8, 0.15) 100%
  );
}

.sculpture-card-inner {
  position: relative;
  padding: 16px 18px;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  color: var(--color-white);
}

.sculpture-card-name {
  font-size: 22px;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 4px;
  text-shadow: 0 1px 2px rgba(0,0,0,0.4);
}
.sculpture-card-place {
  font-size: 13px;
  font-weight: 500;
  line-height: 1.3;
  opacity: 0.85;
  text-shadow: 0 1px 2px rgba(0,0,0,0.4);
}

.sculpture-card-arrow {
  position: absolute;
  right: 16px;
  top: 50%;
  transform: translateY(-50%);
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(255, 247, 237, 0.18);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  color: var(--color-white);
}
.sculpture-card-arrow svg { width: 14px; height: 14px; }

.sculpture-card-icon {
  position: absolute;
  right: 18px;
  bottom: 12px;
  font-size: 28px;
  opacity: 0.85;
  filter: drop-shadow(0 1px 3px rgba(0,0,0,0.5));
}

/* === Coming Soon-Variante === */
.sculpture-card.coming-soon {
  cursor: default;
}
.sculpture-card.coming-soon:active { transform: none; }

.sculpture-card.coming-soon .sculpture-card-bg {
  filter: saturate(0.7) contrast(0.95) brightness(0.85);
}

.sculpture-card.coming-soon .sculpture-card-overlay {
  background: linear-gradient(
    135deg,
    rgba(20, 12, 8, 0.6) 0%,
    rgba(20, 12, 8, 0.4) 100%
  );
}

.sculpture-card.coming-soon .sculpture-card-name,
.sculpture-card.coming-soon .sculpture-card-place {
  opacity: 0.75;
}

.coming-soon-badge {
  position: absolute;
  top: 12px;
  right: 12px;
  padding: 5px 10px;
  background: rgba(255, 247, 237, 0.92);
  color: var(--color-text);
  border-radius: var(--radius-pill, 12px);
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  display: flex;
  align-items: center;
  gap: 5px;
}
.coming-soon-badge svg { width: 10px; height: 10px; }

.sculpture-select-footer {
  text-align: center;
  margin-top: 24px;
  padding: 0 12px;
  color: rgba(255, 247, 237, 0.45);
  font-size: 12px;
  line-height: 1.5;
}

/* ========== Karten-Icon oben rechts (Startseite) ========== */
.sculpture-select-mapbtn {
  position: absolute;
  top: 18px;
  right: 18px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255, 247, 237, 0.10);
  border: 1px solid rgba(255, 247, 237, 0.18);
  color: var(--color-white, #FFF7ED);
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: background 0.18s, transform 0.18s, border-color 0.18s;
  z-index: 5;
  -webkit-tap-highlight-color: transparent;
}
.sculpture-select-mapbtn:hover,
.sculpture-select-mapbtn:focus {
  background: rgba(198, 215, 106, 0.22);
  border-color: rgba(198, 215, 106, 0.55);
  transform: scale(1.06);
  outline: none;
}
.sculpture-select-mapbtn:active { transform: scale(0.96); }
.sculpture-select-mapbtn svg { width: 22px; height: 22px; }

/* ========== Wrapper damit Karten-Pin ueber der Card schwebt ========== */
.sculpture-card-wrap {
  position: relative;
}
.sculpture-card-wrap > .sculpture-card { width: 100%; }

/* ========== Karten-Pin pro Skulptur ========== */
.sculpture-card-map {
  position: absolute;
  top: 10px;
  right: 10px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.55);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  border: 1px solid rgba(255, 247, 237, 0.25);
  color: #FFF7ED;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: background 0.15s, transform 0.15s, border-color 0.15s;
  z-index: 4;
  -webkit-tap-highlight-color: transparent;
}
.sculpture-card-map:hover,
.sculpture-card-map:focus {
  background: rgba(198, 215, 106, 0.85);
  border-color: rgba(255, 255, 255, 0.6);
  color: #035126;
  transform: scale(1.08);
  outline: none;
}
.sculpture-card-map:active { transform: scale(0.94); }
.sculpture-card-map svg { width: 18px; height: 18px; }

/* Mobile: kleinere Icons damit bei kleinen Cards nichts ueberlappt */
@media (max-width: 480px) {
  .sculpture-select-mapbtn { width: 40px; height: 40px; top: 14px; right: 14px; }
  .sculpture-select-mapbtn svg { width: 20px; height: 20px; }
  .sculpture-card-map { width: 32px; height: 32px; top: 8px; right: 8px; }
  .sculpture-card-map svg { width: 16px; height: 16px; }
}

.sculpture-card-latin {
  font-style: italic;
  font-weight: 400;
  font-size: 1.0em;
  opacity: 0.85;
  margin-top: -4px;
  margin-bottom: 8px;
  line-height: 1.2;
}
