:root {
  --bg: #f7f2ea;
  --bg-soft: #fffaf3;
  --card: #ffffff;
  --card-soft: #fdf5ea;
  --accent: #f48a6a;
  --accent-soft: #b0543c;
  --accent-light: #ffe0d3;
  --text: #2c2720;
  --muted: #7b7165;
  --border-soft: #e2d7c9;
  --radius-lg: 18px;
  --radius-pill: 999px;
  --shadow-soft: 0 12px 26px rgba(181, 153, 120, 0.35);
}

* { box-sizing: border-box; }

body {
  margin: 0;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "SF Pro Text", sans-serif;
  background:
    radial-gradient(circle at top left, #ffe9d7 0, transparent 55%),
    radial-gradient(circle at bottom right, #f3e5cf 0, transparent 60%),
    var(--bg);
  color: var(--text);
  -webkit-font-smoothing: antialiased;
}

.app-shell {
  max-width: 720px;
  margin: 0 auto;
  padding: 18px 16px 90px;
}

header {
  padding: 10px 0 18px;
}

/* Hero Bild */
.hero {
  margin: 0 0 14px;
  border-radius: 22px;
  overflow: hidden;
  border: 1px solid var(--border-soft);
  box-shadow: var(--shadow-soft);
  background: #d7d0c4;
}

.hero-inner {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  background: #d7d0c4;
}

.hero-inner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(0,0,0,0.15) 0%,
    rgba(0,0,0,0.35) 65%,
    rgba(0,0,0,0.55) 100%
  );
  pointer-events: none;
}

.hero-caption {
  position: absolute;
  left: 12px;
  bottom: 12px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 5px 11px;
  border-radius: var(--radius-pill);
  background: rgba(0,0,0,0.62);
  color: #fff;
  font-size: 0.78rem;
}

.hero-caption span.icon {
  font-size: 1rem;
}

.title {
  font-size: 1.4rem;
  font-weight: 650;
  margin: 0 0 4px;
  letter-spacing: 0.02em;
  color: #2b241d;
}

.subtitle {
  font-size: 0.9rem;
  color: var(--muted);
  margin-bottom: 14px;
  line-height: 1.4;
}

.meta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 14px;
}

.pill {
  padding: 5px 11px;
  border-radius: var(--radius-pill);
  border: 1px solid var(--border-soft);
  background: rgba(255, 255, 255, 0.9);
  font-size: 0.78rem;
  color: var(--muted);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.pill.accent {
  border-color: #f2b093;
  background: #ffe9dd;
  color: var(--accent-soft);
  font-weight: 500;
}

.pill span.icon {
  font-size: 1.05rem;
}

.quick-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0,1fr));
  gap: 8px;
  margin-bottom: 14px;
}

.quick-card {
  background: rgba(255, 255, 255, 0.9);
  border-radius: 14px;
  border: 1px solid var(--border-soft);
  padding: 8px 6px;
  text-align: center;
  font-size: 0.75rem;
  color: var(--muted);
  box-shadow: 0 6px 12px rgba(200, 172, 137, 0.25);
}

.quick-card span.icon {
  display: block;
  font-size: 1.1rem;
  margin-bottom: 4px;
}

main {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

section {
  border-radius: var(--radius-lg);
  background: var(--card);
  border: 1px solid var(--border-soft);
  box-shadow: var(--shadow-soft);
  padding: 10px;
}

details {
  border-radius: 14px;
  background: var(--card-soft);
  padding: 10px 11px;
}

details + details {
  margin-top: 8px;
}

summary {
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  cursor: pointer;
}

summary::-webkit-details-marker {
  display: none;
}

.summary-left {
  display: flex;
  align-items: center;
  gap: 8px;
}

.summary-icon {
  width: 30px;
  height: 30px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #ffe1d0;
  font-size: 1rem;
  box-shadow: 0 3px 8px rgba(230, 164, 130, 0.5);
}

.summary-text {
  display: flex;
  flex-direction: column;
  gap: 1px;
}

.summary-title {
  font-size: 0.92rem;
  font-weight: 580;
  color: #3a3127;
}

.summary-sub {
  font-size: 0.77rem;
  color: var(--muted);
}

.summary-chevron {
  font-size: 1rem;
  color: var(--muted);
  transition: transform 0.15s ease-out;
}

details[open] .summary-chevron {
  transform: rotate(90deg);
}

.content {
  margin-top: 10px;
  border-top: 1px solid rgba(222, 208, 190, 0.8);
  padding-top: 10px;
  font-size: 0.86rem;
  color: var(--muted);
}

.content h3 {
  margin: 0 0 6px;
  font-size: 0.9rem;
  color: #3a3127;
}

.info-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.info-list li {
  display: flex;
  gap: 7px;
  margin-bottom: 6px;
}

.info-list .bullet {
  font-size: 0.95rem;
  margin-top: 2px;
}

.info-list strong {
  color: var(--accent-soft);
}

.two-col {
  display: grid;
  grid-template-columns: minmax(0,1fr);
  gap: 10px;
}

@media (min-width: 640px) {
  .two-col {
    grid-template-columns: minmax(0,1.05fr) minmax(0,1fr);
  }
}

.day-card {
  background: #fff;
  border-radius: 12px;
  padding: 8px 9px;
  border: 1px solid #ebdfd0;
  box-shadow: 0 7px 14px rgba(205, 177, 139, 0.35);
}

.day-title {
  font-size: 0.9rem;
  font-weight: 580;
  margin-bottom: 4px;
  color: #3a3127;
}

.spot-list {
  list-style: none;
  padding: 0;
  margin: 4px 0 0;
}

.spot-list li {
  margin-bottom: 4px;
}

.tag-row {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
  margin-top: 6px;
}

.tag {
  font-size: 0.72rem;
  padding: 3px 8px;
  border-radius: var(--radius-pill);
  background: #fffaf4;
  border: 1px solid #ebdfd0;
  color: var(--muted);
}

.tag.accent {
  border-color: #f3b294;
  background: #ffe3d5;
  color: var(--accent-soft);
}

.phrase-grid {
  display: grid;
  grid-template-columns: minmax(0,1fr);
  gap: 7px;
}

@media (min-width: 520px) {
  .phrase-grid {
    grid-template-columns: minmax(0,1fr) minmax(0,1fr);
  }
}

.phrase-card {
  background: #fff;
  border-radius: 10px;
  padding: 7px 8px;
  border: 1px solid #ebdfd0;
  display: flex;
  flex-direction: column;
  gap: 3px;
  box-shadow: 0 5px 10px rgba(205, 177, 139, 0.25);
}

.phrase-de {
  font-size: 0.8rem;
  color: var(--muted);
}

.phrase-sr {
  font-size: 0.9rem;
  font-weight: 580;
  color: #3a3127;
}

.phrase-phon {
  font-size: 0.78rem;
  color: var(--muted);
  font-style: italic;
}

.phrase-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 6px;
  margin-top: 4px;
}

.phrase-label {
  font-size: 0.72rem;
  color: var(--muted);
}

.copy-btn {
  font-size: 0.72rem;
  padding: 3px 8px;
  border-radius: var(--radius-pill);
  border: 1px solid #f3b294;
  background: #ffe4d9;
  color: var(--accent-soft);
  cursor: pointer;
}

.copy-btn.copied {
  background: #e4f5e8;
  border-color: #8cb79a;
  color: #41654d;
}

.tip-box {
  margin-top: 8px;
  padding: 7px 9px;
  border-radius: 10px;
  background: #fffaf4;
  border: 1px dashed #e0d0bc;
  font-size: 0.8rem;
  color: var(--muted);
}

a {
  color: var(--accent-soft);
  text-decoration: none;
  border-bottom: 1px dotted rgba(240, 138, 106, 0.6);
}

a:hover {
  border-bottom-style: solid;
}

footer {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 12px;
  display: flex;
  justify-content: center;
  pointer-events: none;
}

.footer-chip {
  pointer-events: all;
  max-width: 720px;
  width: 100%;
  padding: 0 16px;
}

.footer-inner {
  border-radius: var(--radius-pill);
  background: rgba(255, 250, 243, 0.96);
  border: 1px solid var(--border-soft);
  padding: 6px 10px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  font-size: 0.75rem;
  color: var(--muted);
  box-shadow: 0 8px 20px rgba(181, 153, 120, 0.6);
}

.footer-inner button {
  border: 1px solid #f3b294;
  border-radius: var(--radius-pill);
  background: #ffe3d6;
  padding: 3px 9px;
  font-size: 0.72rem;
  color: var(--accent-soft);
  cursor: pointer;
}