:root {
  /* Dark Mode (Default) "Campfire Night" */
  --bg-dark: #0f172a;
  --bg-card: rgba(30, 41, 59, 0.7);
  /* Glassy */
  --text: #f1f5f9;
  --text-muted: #94a3b8;
  --accent: #eab308;
  --accent-light: #fde047;
  --border: rgba(255, 255, 255, 0.1);
  --glass-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.3);
  --backdrop: blur(12px);
  --gradient-bg: radial-gradient(circle at top right, #1e293b, #0f172a);

  /* Kids Colors */
  --kids-mission: #f97316;
  /* Orange */
  --kids-sensory: #22c55e;
  /* Green */
  --kids-culture: #a78bfa;
  /* Purple */
}

/* Light Mode "Himalaya Day" */
[data-theme="light"] {
  --bg-dark: #f8fafc;
  /* Very light blue-grey */
  --bg-card: rgba(255, 255, 255, 0.75);
  --text: #1e293b;
  /* Dark Slate */
  --text-muted: #64748b;
  --accent: #d97706;
  /* Darker amber for contrast */
  --accent-light: #f59e0b;
  --border: rgba(0, 0, 0, 0.08);
  --glass-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.15);
  --gradient-bg: linear-gradient(to bottom, #eff6ff, #f8fafc);
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  background: var(--bg-dark);
  background-image: var(--gradient-bg);
  background-attachment: fixed;
  color: var(--text);
  font-family: 'Outfit', sans-serif;
  transition: background 0.5s ease, color 0.3s ease;
  min-height: 100vh;
  line-height: 1.6;
}

/* --- Utilities --- */

.glass-card {
  background: var(--bg-card);
  backdrop-filter: var(--backdrop);
  -webkit-backdrop-filter: var(--backdrop);
  border: 1px solid var(--border);
  box-shadow: var(--glass-shadow);
  border-radius: 16px;
}

img {
  border-radius: 12px;
  transition: transform 0.3s ease, filter 0.3s ease;
}

img:hover {
  transform: scale(1.02) rotate(1deg);
  filter: brightness(1.1);
}

button {
  transition: transform 0.1s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.2s ease;
  cursor: pointer;
  border: none;
  font-family: inherit;
}

button:active {
  transform: scale(0.95);
}

.reveal-on-scroll {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.reveal-on-scroll.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* Note: Specific checkbox/item styles for lists are handled in component sections */

/* --- Theme Toggle --- */
.theme-toggle {
  position: fixed;
  top: 12px;
  right: 16px;
  width: 40px;
  height: 40px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  backdrop-filter: blur(8px);
  padding: 0;
  border-radius: 50%;
  cursor: pointer;
  z-index: 9999;
  font-size: 18px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
}

.theme-toggle:hover {
  transform: rotate(15deg);
}

/* On mobile, move theme toggle into nav area properly */
@media (max-width: 768px) {
  .theme-toggle {
    top: 10px;
    right: 12px;
    width: 36px;
    height: 36px;
    font-size: 16px;
  }

  /* Give nav-links space for the toggle */
  .nav-links {
    margin-right: 40px;
  }
}

/* --- Hamburger Menu for Mobile --- */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 32px;
  height: 32px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 4px;
  z-index: 1002;
}

.hamburger span {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: all 0.3s ease;
}

.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

.mobile-menu {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(15, 23, 42, 0.98);
  z-index: 1001;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 24px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

[data-theme="light"] .mobile-menu {
  background: rgba(248, 250, 252, 0.98);
}

.mobile-menu.active {
  opacity: 1;
  visibility: visible;
}

.mobile-menu a {
  font-size: 24px;
  font-weight: 600;
  color: var(--text);
  text-decoration: none;
  padding: 12px 24px;
  transition: color 0.2s;
}

.mobile-menu a:hover,
.mobile-menu a.active {
  color: var(--accent-light);
}

[data-theme="light"] .mobile-menu a:hover,
[data-theme="light"] .mobile-menu a.active {
  color: var(--accent);
}

/* Mobile: show hamburger, hide nav-links */
@media (max-width: 600px) {
  .hamburger {
    display: flex;
  }

  .mobile-menu {
    display: flex;
  }

  .nav-links {
    display: none;
  }

  .nav-content {
    justify-content: space-between;
  }

  .theme-toggle {
    right: 54px;
  }

  /* Tighter content spacing on mobile */
  .card {
    padding: 20px;
  }

  .content-grid {
    gap: 16px;
  }

  .kids-card {
    padding: 16px;
  }

  .card-title {
    font-size: 16px;
    margin-bottom: 12px;
    padding-bottom: 10px;
  }

  .extra-card {
    padding: 12px;
    margin-bottom: 10px;
  }
}

/* --- Navigation (Shared) --- */
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(10, 15, 26, 0.8);
  /* Slightly more transparent */
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  padding: 12px 20px;
}

[data-theme="light"] nav {
  background: rgba(255, 255, 255, 0.8);
}

.nav-content {
  max-width: 1000px;
  /* Reduced max-width for consistency */
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.nav-logo {
  font-weight: 700;
  font-size: 18px;
  color: var(--text);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 8px;
}

.nav-flag {
  width: 24px;
  height: 24px;
}

.nav-links {
  display: flex;
  gap: 24px;
}

.nav-links a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  transition: color 0.2s;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--accent-light);
}

[data-theme="light"] .nav-links a:hover,
[data-theme="light"] .nav-links a.active {
  color: var(--accent);
}

/* --- Layout & Footer --- */
.container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 20px;
  padding-top: 100px;
}

main {
  /* Default main padding and width constraint */
  max-width: 1000px;
  margin: 0 auto;
  padding: 100px 20px 60px;
}

footer {
  text-align: center;
  padding: 40px 20px;
  color: var(--text-muted);
  font-size: 13px;
  background: rgba(0, 0, 0, 0.2);
}

[data-theme="light"] footer {
  background: rgba(0, 0, 0, 0.05);
}

footer a {
  color: var(--accent-light);
  text-decoration: none;
}

/* --- Reiseplan Layout --- */
.grid-layout {
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 40px;
  align-items: start;
}

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

  .day-sidebar {
    display: none;
  }
}

.day-sidebar {
  position: sticky;
  top: 100px;
  max-height: calc(100vh - 120px);
  overflow-y: auto;
  padding: 0;
}

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

.day-item {
  padding: 16px 20px;
  border-bottom: 1px solid var(--border);
  cursor: pointer;
  display: flex;
  gap: 12px;
  transition: background 0.2s;
}

.day-item:hover {
  background: rgba(255, 255, 255, 0.05);
}

[data-theme="light"] .day-item:hover {
  background: rgba(0, 0, 0, 0.05);
}

.day-item.active {
  background: rgba(234, 179, 8, 0.1);
  border-left: 3px solid var(--accent);
}

.day-number {
  font-weight: 800;
  color: var(--text-muted);
  font-size: 14px;
  width: 24px;
}

.day-item.active .day-number {
  color: var(--accent);
}

.day-info h4 {
  margin: 0 0 4px 0;
  font-size: 16px;
  font-weight: 600;
  color: var(--text);
}

.day-info p {
  margin: 0;
  font-size: 13px;
  color: var(--text-muted);
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.day-content {
  min-width: 0;
}

.hero-image-container {
  width: 100%;
  height: 600px;
  border-radius: 24px;
  overflow: hidden;
  position: relative;
  margin-bottom: 24px;
  box-shadow: 0 20px 50px -10px rgba(0, 0, 0, 0.5);
}

.hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 40px 30px 30px;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.85) 0%, rgba(0, 0, 0, 0.4) 60%, transparent 100%);
}

.hero-overlay h1 {
  font-size: 2.5rem;
  font-weight: 800;
  color: #fff;
  margin: 0 0 16px 0;
  line-height: 1.1;
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.5);
}

.hero-overlay .tags {
  margin-bottom: 0;
}

.hero-overlay .tag {
  background: rgba(255, 255, 255, 0.15);
  border-color: rgba(255, 255, 255, 0.3);
  color: #fff;
  backdrop-filter: blur(4px);
}

.day-nav-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-bottom: 12px;
}

.day-nav-row .kicker {
  text-transform: uppercase;
  font-weight: 700;
  letter-spacing: 1.5px;
  color: var(--accent);
  font-size: 13px;
}

[data-theme="light"] .day-nav-row .kicker {
  color: var(--accent);
}

.day-nav-btn {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 50%;
  color: var(--text);
  cursor: pointer;
  font-size: 20px;
  font-weight: 300;
  transition: all 0.2s;
}

.day-nav-btn:hover {
  background: var(--accent);
  border-color: var(--accent);
  color: #fff;
}

.day-nav-btn:disabled {
  opacity: 0.3;
  cursor: not-allowed;
}

.day-nav-btn:disabled:hover {
  background: var(--bg-card);
  border-color: var(--border);
  color: var(--text);
}

.day-summary {
  font-size: 18px;
  line-height: 1.6;
  color: var(--text-muted);
  margin-bottom: 24px;
  max-width: 800px;
  overflow-wrap: break-word;
}

.tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 30px;
}

.tag {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border);
  padding: 6px 12px;
  border-radius: 100px;
  font-size: 13px;
  font-weight: 500;
  color: var(--text-muted);
  white-space: nowrap;
  line-height: 1.4;
}

[data-theme="light"] .tag {
  background: rgba(0, 0, 0, 0.05);
  color: var(--text);
}

.content-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 24px;
  margin-bottom: 40px;
}

.card {
  background: var(--bg-card);
  backdrop-filter: var(--backdrop);
  -webkit-backdrop-filter: var(--backdrop);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 30px;
  word-wrap: break-word;
}

.card-title {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 20px;
  padding-bottom: 15px;
  border-bottom: 1px solid var(--border);
}

.kids-card {
  border: 1px solid rgba(234, 179, 8, 0.3);
  position: relative;
  overflow: hidden;
}

.kids-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--kids-mission), var(--kids-sensory), var(--kids-culture));
}

.map-container {
  height: 350px;
  border-radius: 20px;
  overflow: hidden;
  margin-top: 40px;
  margin-bottom: 24px;
  border: 1px solid var(--border);
}

.video-container {
  width: 100%;
  aspect-ratio: 16/9;
  background: #000;
  border-radius: 16px;
  overflow: hidden;
  margin-bottom: 40px;
  position: relative;
}

.gallery-strip {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  padding-bottom: 20px;
  scrollbar-width: thin;
}

.gallery-strip img {
  height: 200px;
  border-radius: 12px;
  transition: transform 0.2s;
}

.weather-header {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 12px;
  font-size: 13px;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.weather-data {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}

.weather-item {
  display: flex;
  align-items: center;
  gap: 8px;
}

.weather-item .icon {
  font-size: 24px;
}

.weather-item .value {
  font-size: 18px;
  font-weight: 600;
  color: var(--text);
}

.weather-item .label {
  font-size: 11px;
  color: var(--text-muted);
  margin-left: 4px;
}

.route-stats {
  display: flex;
  gap: 16px;
  margin-top: 16px;
  flex-wrap: wrap;
}

.route-stat {
  background: rgba(249, 115, 22, 0.1);
  border: 1px solid rgba(249, 115, 22, 0.3);
  border-radius: 8px;
  padding: 10px 14px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.route-stat .icon {
  font-size: 18px;
}

.route-stat .text {
  font-size: 13px;
  color: var(--text);
}

.route-stat .text strong {
  color: var(--accent-light);
}

.elevation-profile {
  margin-top: 16px;
  background: rgba(255, 255, 255, 0.03);
  border-radius: 8px;
  padding: 12px;
}

.elevation-label {
  font-size: 11px;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 8px;
}

.elevation-bar {
  height: 40px;
  display: flex;
  align-items: flex-end;
  gap: 2px;
}

.elevation-bar span {
  flex: 1;
  background: linear-gradient(to top, var(--accent), var(--accent-light));
  border-radius: 2px 2px 0 0;
  transition: height 0.3s;
}

.bullet-list {
  list-style: none;
  padding: 0;
}

.bullet-list li {
  margin-bottom: 8px;
  padding-left: 1.5em;
  position: relative;
  color: var(--text-muted);
  font-size: 16px;
}

.bullet-list li:before {
  content: "•";
  color: var(--accent);
  font-weight: bold;
  font-size: 1.2em;
  position: absolute;
  left: 0;
  top: -2px;
}

.extra-card {
  background: rgba(255, 255, 255, 0.03);
  border-radius: 12px;
  padding: 15px;
  margin-bottom: 12px;
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.extra-header {
  font-size: 12px;
  text-transform: uppercase;
  font-weight: 700;
  letter-spacing: 1px;
  margin-bottom: 8px;
}

.extra-content {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.5;
}

.word-main {
  font-size: 20px;
  font-weight: 700;
  color: var(--text);
  display: block;
}

.word-pron {
  font-size: 12px;
  color: var(--text-muted);
  font-style: italic;
}

/* --- Packliste Specifics --- */
.pack-header {
  text-align: center;
  margin-bottom: 40px;
}

.pack-header h1 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 12px;
}

.pack-header h1 span {
  color: var(--accent-light);
}

.subtitle {
  color: var(--text-muted);
  font-size: 1.1rem;
}

.progress-bar {
  background: var(--bg-card);
  backdrop-filter: var(--backdrop);
  -webkit-backdrop-filter: var(--backdrop);
  border: 1px solid var(--border);
  box-shadow: var(--glass-shadow);
  border-radius: 16px;
  padding: 20px 24px;
  margin-bottom: 32px;
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

.progress-track {
  height: 12px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 6px;
  overflow: hidden;
  width: 100%;
}

.progress-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--accent), var(--kids-sensory));
  border-radius: 6px;
  transition: width 0.3s ease;
}

.progress-info {
  flex: 1;
  min-width: 200px;
}

.progress-stats {
  display: flex;
  gap: 24px;
}

.stat-value {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--accent-light);
}

.stat-label {
  font-size: 12px;
  color: var(--text-muted);
}

.reset-btn {
  background: transparent;
  border: 1px solid var(--border);
  color: var(--text-muted);
  padding: 8px 16px;
  border-radius: 8px;
  font-size: 13px;
  cursor: pointer;
  transition: all 0.2s;
}

.reset-btn:hover {
  border-color: #ef4444;
  color: #ef4444;
}

.categories {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
}

.category {
  background: var(--bg-card);
  backdrop-filter: var(--backdrop);
  -webkit-backdrop-filter: var(--backdrop);
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
  transition: transform 0.2s ease;
}

.category:hover {
  transform: translateY(-2px);
}

.category-header {
  padding: 16px 20px;
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  gap: 12px;
  background: rgba(255, 255, 255, 0.02);
}

.category-title {
  font-weight: 600;
  flex: 1;
}

.category-count {
  font-size: 13px;
  color: var(--text-muted);
  background: rgba(255, 255, 255, 0.05);
  padding: 4px 10px;
  border-radius: 50px;
}

.items {
  padding: 12px;
}

.item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 12px;
  border-radius: 8px;
  cursor: pointer;
  transition: background 0.2s;
}

.item:hover {
  background: rgba(255, 255, 255, 0.05);
}

.item.checked {
  opacity: 0.5;
}

.item.checked .item-text {
  text-decoration: line-through;
}

.checkbox {
  width: 22px;
  height: 22px;
  border: 2px solid var(--border);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s;
  flex-shrink: 0;
}

.item.checked .checkbox {
  background: var(--kids-sensory);
  border-color: var(--kids-sensory);
}

.checkbox svg {
  width: 14px;
  height: 14px;
  stroke: white;
  stroke-width: 3;
  opacity: 0;
  transition: opacity 0.2s;
}

.item.checked .checkbox svg {
  opacity: 1;
}

.kids-badge {
  background: linear-gradient(135deg, #8b5cf6, #6366f1);
  color: white;
  font-size: 10px;
  font-weight: 600;
  padding: 3px 8px;
  border-radius: 50px;
}

.tip {
  background: rgba(249, 115, 22, 0.1);
  border: 1px solid rgba(249, 115, 22, 0.3);
  border-radius: 12px;
  padding: 16px 20px;
  margin-bottom: 24px;
  font-size: 14px;
  color: var(--accent-light);
}

/* --- Home / Index Specifics --- */
.hero {
  min-height: 100vh;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 20px;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to bottom, rgba(10, 15, 26, 0.3) 0%, rgba(10, 15, 26, 0.5) 50%, rgba(10, 15, 26, 0.95) 100%),
    url('https://images.unsplash.com/photo-1544735716-392fe2489ffa?w=1920&q=80') center/cover no-repeat;
  z-index: -1;
}

[data-theme="light"] .hero::before {
  background:
    linear-gradient(to bottom, rgba(255, 255, 255, 0.4) 0%, rgba(255, 255, 255, 0.7) 100%),
    url('https://images.unsplash.com/photo-1544735716-392fe2489ffa?w=1920&q=80') center/cover no-repeat;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(249, 115, 22, 0.3);
  border: 1px solid var(--accent);
  padding: 8px 16px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 500;
  color: var(--accent-light);
  margin-bottom: 24px;
  animation: pulse 2s infinite;
}

[data-theme="light"] .hero-badge {
  background: rgba(249, 115, 22, 0.1);
  color: var(--accent);
}

@keyframes pulse {

  0%,
  100% {
    box-shadow: 0 0 0 0 rgba(249, 115, 22, 0.3);
  }

  50% {
    box-shadow: 0 0 20px 5px rgba(249, 115, 22, 0.3);
  }
}

.hero h1 {
  font-size: clamp(2.5rem, 8vw, 5rem);
  font-weight: 700;
  margin-bottom: 16px;
  text-shadow: 0 4px 30px rgba(0, 0, 0, 0.5);
}

[data-theme="light"] .hero h1 {
  text-shadow: none;
  color: var(--text);
}

.hero h1 span {
  background: linear-gradient(135deg, var(--accent) 0%, #fbbf24 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-subtitle {
  font-size: clamp(1.1rem, 3vw, 1.5rem);
  color: var(--text-muted);
  max-width: 600px;
  margin-bottom: 40px;
}

.countdown-container {
  margin-bottom: 48px;
}

.countdown-label {
  font-size: 14px;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 16px;
}

.countdown {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}

.countdown-item {
  background: rgba(15, 23, 42, 0.6);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  padding: 20px 24px;
  min-width: 90px;
}

[data-theme="light"] .countdown-item {
  background: rgba(255, 255, 255, 0.6);
  border: 1px solid rgba(0, 0, 0, 0.1);
}

.countdown-number {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--accent-light);
  line-height: 1;
}

[data-theme="light"] .countdown-number {
  color: var(--accent);
}

.countdown-unit {
  font-size: 12px;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-top: 4px;
}

.family {
  display: flex;
  gap: 16px;
  justify-content: center;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.family-member {
  text-align: center;
}

.avatar {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--bg-card);
  border: 3px solid var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  margin-bottom: 8px;
}

.family-member span {
  font-size: 13px;
  color: var(--text-muted);
}

.cta-group {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: center;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 16px 32px;
  border-radius: 12px;
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
}

.btn-primary {
  background: linear-gradient(135deg, var(--accent) 0%, #ea580c 100%);
  color: white;
  box-shadow: 0 4px 20px rgba(249, 115, 22, 0.3);
  /* accent glow */
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(249, 115, 22, 0.3);
}

.btn-secondary {
  background: var(--bg-card);
  border: 1px solid var(--border);
  color: var(--text);
}

.btn-secondary:hover {
  border-color: var(--accent);
  background: rgba(249, 115, 22, 0.1);
}

.scroll-indicator {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  animation: bounce 2s infinite;
}

@keyframes bounce {

  0%,
  20%,
  50%,
  80%,
  100% {
    transform: translateX(-50%) translateY(0);
  }

  40% {
    transform: translateX(-50%) translateY(-10px);
  }

  60% {
    transform: translateX(-50%) translateY(-5px);
  }
}

.scroll-indicator svg {
  width: 32px;
  height: 32px;
  color: var(--text-muted);
}

.highlights,
.phrases-section {
  padding: 80px 20px;
  max-width: 1200px;
  margin: 0 auto;
}

.section-title {
  text-align: center;
  font-size: 2rem;
  margin-top: 64px;
  margin-bottom: 48px;
}

.section-title:first-of-type {
  margin-top: 0;
}

.highlights-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
}

.highlight-card {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  aspect-ratio: 4/3;
  cursor: pointer;
  transition: transform 0.3s ease;
  border: 1px solid var(--border);
  text-decoration: none;
}

.highlight-card:hover {
  transform: scale(1.02);
}

.highlight-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.highlight-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.8) 0%, transparent 60%);
}

.highlight-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 24px;
  z-index: 1;
}

.highlight-tag {
  display: inline-block;
  background: var(--accent);
  color: white;
  font-size: 11px;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 50px;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 8px;
}

.highlight-card h3 {
  font-size: 1.3rem;
  margin-bottom: 4px;
  color: #fff;
}

.highlight-card p {
  font-size: 14px;
  color: #cbd5e1;
}

.video-indicator {
  position: absolute;
  top: 16px;
  right: 16px;
  background: rgba(220, 38, 38, 0.9);
  color: white;
  font-size: 11px;
  font-weight: 600;
  padding: 6px 12px;
  border-radius: 50px;
  z-index: 2;
  opacity: 0;
  transform: translateY(-10px);
  transition: all 0.3s;
}

.highlight-card:hover .video-indicator {
  opacity: 1;
  transform: translateY(0);
}

.phrases-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 16px;
}

.phrase-card {
  background: var(--bg-card);
  backdrop-filter: blur(12px);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 24px;
  text-align: center;
  cursor: pointer;
  transition: all 0.3s;
  position: relative;
  overflow: hidden;
}

.phrase-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(249, 115, 22, 0.2), transparent);
  opacity: 0;
  transition: opacity 0.3s;
}

.phrase-card:hover {
  transform: translateY(-4px);
  border-color: var(--accent);
  box-shadow: 0 8px 30px rgba(249, 115, 22, 0.2);
}

.phrase-card:hover::before {
  opacity: 1;
}

.phrase-nepali {
  display: block;
  font-size: 2rem;
  margin-bottom: 8px;
  position: relative;
  z-index: 1;
  color: var(--text);
}

.phrase-text {
  display: block;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--accent-light);
  margin-bottom: 4px;
  position: relative;
  z-index: 1;
}

[data-theme="light"] .phrase-text {
  color: var(--accent);
}

.phrase-meaning {
  display: block;
  font-size: 13px;
  color: var(--text-muted);
  position: relative;
  z-index: 1;
}

.phrase-speaker {
  position: absolute;
  top: 12px;
  right: 12px;
  font-size: 20px;
  opacity: 0.5;
  transition: opacity 0.3s, transform 0.3s;
}

.phrase-card:hover .phrase-speaker {
  opacity: 1;
  transform: scale(1.2);
}

.phrase-card.speaking {
  animation: speakPulse 0.5s ease;
}

@keyframes speakPulse {

  0%,
  100% {
    box-shadow: 0 0 0 0 var(--accent);
  }

  50% {
    box-shadow: 0 0 30px 10px rgba(249, 115, 22, 0.3);
  }
}

/* Quick Facts (Home) & Nepal Fakten (Merged) */
.facts {
  background: transparent;
  padding: 60px 20px;
  max-width: 1200px;
  margin: 0 auto;
}

.facts-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}

.fact-card,
.fact-item {
  padding: 24px;
  background: var(--bg-card);
  border-radius: 16px;
  backdrop-filter: blur(8px);
  border: 1px solid var(--border);
  transition: transform 0.3s;
  text-align: center;
}

.fact-card:hover,
.fact-item:hover {
  transform: translateY(-4px);
  border-color: var(--accent);
}

.fact-icon {
  font-size: 2.5rem;
  margin-bottom: 12px;
}

.fact-value {
  font-size: 2rem;
  font-weight: 700;
  color: var(--accent-light);
}

.fact-label {
  font-size: 14px;
  color: var(--text-muted);
}

.fact-title {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 8px;
  color: var(--text);
}

.fact-text {
  font-size: 15px;
  color: var(--text-muted);
}

.fact-highlight {
  color: var(--accent-light);
  font-weight: 600;
}

/* Nepal Fakten Specifics */
.kids-intro {
  background: rgba(249, 115, 22, 0.1);
  border: 1px solid rgba(249, 115, 22, 0.3);
  padding: 24px;
  border-radius: 16px;
  margin-bottom: 32px;
  display: flex;
  gap: 16px;
  align-items: start;
}

.kids-intro h2 {
  color: var(--kids-culture);
  font-size: 1.3rem;
  margin-bottom: 8px;
}

.kids-intro p {
  color: var(--text-muted);
}

.video-intro {
  margin-bottom: 48px;
}

.video-wrapper {
  max-width: 800px;
  margin: 0 auto;
}

.video-placeholder {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background-size: cover;
  background-position: center;
  cursor: pointer;
  transition: all 0.3s;
}

.video-placeholder::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.4);
  transition: background 0.3s;
}

.video-placeholder:hover::before {
  background: rgba(0, 0, 0, 0.2);
}

.video-placeholder>* {
  position: relative;
  z-index: 1;
}

.play-btn {
  width: 80px;
  height: 80px;
  background: #dc2626;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  box-shadow: 0 4px 20px rgba(220, 38, 38, 0.4);
  transition: transform 0.3s;
}

.video-placeholder:hover .play-btn {
  transform: scale(1.1);
}

.play-btn::after {
  content: '';
  border-style: solid;
  border-width: 14px 0 14px 24px;
  border-color: transparent transparent transparent white;
  margin-left: 6px;
}

.mountain-comparison {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 24px;
}

.mountains {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: 24px;
  height: 250px;
  padding: 20px;
}

.mountain {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.mountain-bar {
  width: 60px;
  background: linear-gradient(to top, #475569, #94a3b8, #f1f5f9);
  border-radius: 8px 8px 0 0;
  position: relative;
}

.mountain-bar.everest {
  height: 200px;
  background: linear-gradient(to top, #475569, #94a3b8, var(--accent-light));
}

.mountain-bar.matterhorn {
  height: 102px;
}

.mountain-bar.zugspitze {
  height: 67px;
}

.mountain-bar.vaalserberg {
  height: 7px;
  min-height: 7px;
  background: linear-gradient(to top, #f97316, #fb923c);
}

.mountain-height {
  font-size: 11px;
  color: var(--text-muted);
  text-align: center;
}

.mountain-name {
  font-size: 13px;
  font-weight: 600;
  text-align: center;
}

.nepal-flag {
  display: flex;
  justify-content: center;
  margin: 24px 0;
}

.nepal-flag svg {
  height: 120px;
}

.animal-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}

.animal-card {
  display: flex;
  flex-direction: column;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 20px;
  overflow: hidden;
  transition: transform 0.3s, box-shadow 0.3s;
}

.animal-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3);
}

.animal-card .animal-name {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text);
  padding: 16px 20px 12px;
  margin: 0;
  background: rgba(255, 255, 255, 0.03);
  border-bottom: 1px solid var(--border);
}

.animal-card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: 0;
}

.animal-card img:hover {
  transform: none;
  filter: brightness(1.05);
}

.animal-card .animal-desc {
  font-size: 14px;
  color: var(--text-muted);
  padding: 16px 20px;
  margin: 0;
  line-height: 1.5;
  flex: 1;
}

.food-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 16px;
}

.food-item {
  text-align: center;
  padding: 16px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 12px;
  transition: transform 0.2s;
}

.food-item:hover {
  transform: scale(1.05);
}

.food-icon {
  font-size: 3rem;
  margin-bottom: 8px;
}

.food-name {
  font-weight: 600;
  color: var(--text);
  margin-bottom: 4px;
}

.food-desc {
  font-size: 12px;
  color: var(--text-muted);
}

.quiz-section {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 32px;
}

.quiz-title {
  text-align: center;
  margin-bottom: 24px;
}

.quiz-question {
  margin-bottom: 24px;
}

.question-text {
  font-size: 1.1rem;
  margin-bottom: 16px;
}

.question-num {
  color: var(--accent-light);
  font-weight: 600;
}

.options {
  display: grid;
  gap: 10px;
}

.option {
  background: rgba(255, 255, 255, 0.05);
  border: 2px solid var(--border);
  border-radius: 10px;
  padding: 14px 18px;
  cursor: pointer;
  transition: all 0.2s;
  font-size: 15px;
  color: var(--text);
  font-family: inherit;
}

.option:hover {
  border-color: var(--accent);
  background: rgba(249, 115, 22, 0.1);
}

.option.correct {
  border-color: #22c55e;
  background: rgba(34, 197, 94, 0.2);
}

.option.wrong {
  border-color: #ef4444;
  background: rgba(239, 68, 68, 0.2);
}

.quiz-result {
  text-align: center;
  padding: 24px;
  display: none;
}

.quiz-result.show {
  display: block;
}

.result-score {
  font-size: 3rem;
  font-weight: 700;
  color: var(--accent-light);
}

.restart-btn {
  background: var(--accent);
  color: white;
  border: none;
  padding: 12px 24px;
  border-radius: 10px;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
}

/* --- Reiseplan Header & Layout --- */
header {
  padding: 100px 20px 40px;
  text-align: center;
}

header h1 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 12px;
}

/* Header content container */
.header-content {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
  text-align: left;
}

header h1 span {
  color: var(--accent-light);
}

.header-info {
  color: var(--text-muted);
  font-size: 15px;
  line-height: 1.6;
}

.header-badge {
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(249, 115, 22, 0.2);
  border: 1px solid var(--accent);
  padding: 10px 16px;
  border-radius: 50px;
  font-size: 14px;
  color: var(--accent-light);
}

/* Reiseplan Main Layout - wider for sidebar */
main:has(.sidebar) {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 30px;
  padding: 100px 20px 60px;
}

@media (max-width: 1024px) {
  main:has(.sidebar) {
    grid-template-columns: 1fr;
  }

  .sidebar {
    display: block;
    position: static;
    max-height: none;
    overflow: visible;
  }

  .days-list {
    display: flex;
    gap: 8px;
    overflow-x: auto;
    padding: 6px 4px;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
  }

  .day-btn {
    min-width: 170px;
    border: 1px solid var(--border);
    border-radius: 10px;
    border-bottom: none;
    scroll-snap-align: start;
  }

  .day-place {
    white-space: normal;
  }

  .hero-image-container {
    height: 420px;
    border-radius: 20px;
  }
}

/* Reiseplan Sidebar */
.sidebar {
  position: sticky;
  top: 80px;
  max-height: calc(100vh - 100px);
  overflow-y: auto;
}

.days-list {
  /* No max-height - show all 16 days */
}

.day-btn {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 2px;
  padding: 8px 12px;
  background: transparent;
  border: none;
  border-bottom: 1px solid var(--border);
  color: var(--text);
  cursor: pointer;
  transition: all 0.2s;
  text-align: left;
  font-family: inherit;
}

.day-btn:hover {
  background: rgba(255, 255, 255, 0.05);
}

[data-theme="light"] .day-btn:hover {
  background: rgba(0, 0, 0, 0.05);
}

.day-btn.active {
  background: rgba(234, 179, 8, 0.1);
  border-left: 3px solid var(--accent);
}

.day-num {
  font-weight: 700;
  font-size: 13px;
  color: var(--text);
}

.day-btn.active .day-num {
  color: var(--accent);
}

.day-date {
  color: var(--text-muted);
  font-size: 11px;
}

.day-place {
  color: var(--text-muted);
  font-size: 11px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  max-width: 100%;
}

.nav-buttons {
  display: flex;
  gap: 6px;
}

.nav-btn {
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border);
  border-radius: 6px;
  color: var(--text);
  cursor: pointer;
  transition: all 0.2s;
  font-size: 11px;
}

.nav-btn:hover {
  background: var(--accent);
  border-color: var(--accent);
}

/* Reiseplan Content Section */
.content {
  min-width: 0;
}

.day-detail {
  animation: fadeIn 0.3s ease;
}

.day-detail.day-changed {
  animation: slideIn 0.4s ease;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes slideIn {
  from {
    opacity: 0;
    transform: translateX(20px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* Info Grid */
.info-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
  margin-top: 30px;
}

.info-card {
  background: var(--bg-card);
  backdrop-filter: var(--backdrop);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 24px;
}

.info-card h3 {
  font-size: 18px;
  margin-bottom: 16px;
  color: var(--accent-light);
}

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

.info-card li {
  padding: 8px 0;
  border-bottom: 1px solid var(--border);
  color: var(--text-muted);
  font-size: 14px;
}

.info-card li:last-child {
  border-bottom: none;
}

.info-card li strong {
  color: var(--text);
}

/* Map Card */
.map-card {
  background: var(--bg-card);
  backdrop-filter: var(--backdrop);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 24px;
  margin-top: 30px;
}

.map-card #map {
  height: 350px;
  border-radius: 12px;
  overflow: hidden;
}

.map-tip {
  margin-top: 16px;
  font-size: 14px;
  color: var(--text-muted);
  text-align: center;
}

/* Weather Widget */
.weather-widget {
  margin-top: 24px;
  padding: 20px;
  background: rgba(255, 255, 255, 0.03);
  border-radius: 12px;
  border: 1px solid var(--border);
}

/* Video Section */
.video-section {
  background: var(--bg-card);
  backdrop-filter: var(--backdrop);
  border: 1px solid var(--border);
  border-radius: 16px;
  margin-top: 30px;
}

.video-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}

.video-badge {
  background: linear-gradient(135deg, #dc2626, #ef4444);
  color: white;
  font-size: 11px;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 50px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.video-container iframe {
  width: 100%;
  height: 100%;
  border: none;
  border-radius: 16px;
}

/* Interactive Checkmarks for Kids */
.interactive-check {
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  padding-left: 2em !important;
}

.interactive-check::before {
  content: "○";
  position: absolute;
  left: 0;
  color: var(--text-muted);
  transition: all 0.2s;
}

.interactive-check.checked {
  color: var(--kids-sensory) !important;
  text-decoration: line-through;
}

.interactive-check.checked::before {
  content: "✓";
  color: var(--kids-sensory);
}

/* Guide Text */
.guide-text {
  color: var(--text-muted);
  font-size: 15px;
  line-height: 1.7;
}

.guide-section {
  margin-bottom: 16px;
}

.guide-section:last-child {
  margin-bottom: 0;
}

.guide-section-title {
  color: var(--accent-light);
  font-weight: 600;
  font-size: 14px;
  margin-bottom: 6px;
  display: flex;
  align-items: center;
  gap: 6px;
}

.guide-section-title .emoji {
  font-size: 16px;
}

.guide-section-content {
  color: var(--text-muted);
  font-size: 14px;
  line-height: 1.6;
}

/* Background & Logistics Card */
.background-intro {
  color: var(--text-muted);
  font-size: 14px;
  line-height: 1.6;
  margin: 0 0 12px 0;
}

.background-divider {
  height: 1px;
  background: var(--border);
  margin: 16px 0;
}

.background-subtitle {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--text-muted);
  margin-bottom: 8px;
}

/* Kids List */
.kids-list li {
  color: var(--text-muted);
}

/* Quiz Header with Language Toggle */
.quiz-header {
  display: flex;
  justify-content: center;
  margin-bottom: 20px;
}

.lang-toggle {
  display: flex;
  gap: 8px;
  background: rgba(255, 255, 255, 0.05);
  padding: 4px;
  border-radius: 10px;
}

.lang-btn {
  background: transparent;
  border: 1px solid transparent;
  color: var(--text-muted);
  padding: 8px 16px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s;
  font-family: inherit;
}

.lang-btn:hover {
  color: var(--text);
}

.lang-btn.active {
  background: var(--accent);
  color: white;
  border-color: var(--accent);
}

/* Food Emoji */
.food-emoji {
  font-size: 2.5rem;
  display: block;
  margin-bottom: 12px;
}

/* Section Subtitle */
.section-subtitle {
  text-align: center;
  color: var(--text-muted);
  margin-top: -32px;
  margin-bottom: 32px;
}

/* Card Header for Reiseplan */
.card-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 14px;
  border-bottom: 1px solid var(--border);
}

.card-header .card-title {
  font-size: 14px;
  font-weight: 600;
}

/* Footer Flag */
.footer-flag {
  width: 18px;
  height: 18px;
  vertical-align: middle;
  margin-right: 6px;
}

/* Item Text and Note */
.item-text {
  flex: 1;
  color: var(--text);
}

.item-note {
  color: var(--text-muted);
  font-size: 13px;
}

/* Progress Label */
.progress-label {
  font-size: 13px;
  color: var(--text-muted);
  margin-bottom: 8px;
}

/* Category Icon */
.category-icon {
  font-size: 1.5rem;
}

/* === MOBILE HAMBURGER MENU (must be at end for cascade) === */
@media (max-width: 600px) {
  .hamburger {
    display: flex !important;
  }

  .mobile-menu {
    display: flex !important;
  }

  .nav-links {
    display: none !important;
  }

  .theme-toggle {
    right: 54px;
  }

  /* Reduce top spacing on mobile */
  main {
    padding-top: 70px;
  }

  header {
    padding-top: 70px;
    padding-bottom: 24px;
  }

  header h1 {
    font-size: 1.8rem;
  }

  /* Kids intro: stack on mobile instead of side-by-side */
  .kids-intro {
    flex-direction: column;
    padding: 16px;
    gap: 8px;
  }

  .kids-intro h2 {
    font-size: 1.1rem;
    white-space: nowrap;
  }

  .kids-intro p {
    font-size: 14px;
  }

  /* Section titles smaller on mobile */
  .section-title {
    font-size: 1.4rem;
    margin-bottom: 24px;
  }

  /* Tighter spacing for video section */
  .video-intro {
    margin-bottom: 32px;
  }

  /* Fix content grid for narrow screens */
  .content-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  /* Reduce card padding on mobile */
  .card {
    padding: 16px;
  }

  .card-title {
    font-size: 16px;
    gap: 8px;
    margin-bottom: 12px;
    padding-bottom: 10px;
  }

  /* Kids card tighter on mobile */
  .kids-card {
    padding: 16px;
  }

  .bullet-list li {
    font-size: 14px;
    padding-left: 1.2em;
  }

  .extra-card {
    padding: 12px;
    margin-bottom: 8px;
  }

  .extra-header {
    font-size: 11px;
    margin-bottom: 6px;
  }

  .extra-content {
    font-size: 13px;
  }

  /* Ensure nav stays fixed */
  nav {
    position: fixed !important;
    top: 0 !important;
  }

  /* Hide scroll indicator on mobile - scrolling is obvious */
  .scroll-indicator {
    display: none;
  }

  /* Reiseplan: touch friendly on small screens */
  .days-list {
    padding: 4px 2px;
  }

  .day-btn {
    min-width: 140px;
    padding: 10px;
  }

  .day-num {
    font-size: 12px;
  }

  .day-date,
  .day-place {
    font-size: 10px;
  }

  .day-nav-btn {
    width: 40px;
    height: 40px;
    font-size: 22px;
  }

  .nav-btn {
    width: 34px;
    height: 34px;
  }

  .hero-image-container {
    height: 300px;
    border-radius: 16px;
  }

  .hero-overlay {
    padding: 24px 20px 20px;
  }

  .hero-overlay h1 {
    font-size: 1.6rem;
  }
}

/* ===========================================
   HOTEL SECTION
   =========================================== */

.hotel-section {
  margin-top: 30px;
}

.hotel-card {
  background: linear-gradient(135deg, rgba(30, 41, 59, 0.8), rgba(30, 41, 59, 0.6));
  border: 1px solid rgba(249, 115, 22, 0.2);
}

.hotel-content {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 24px;
  margin-top: 16px;
  align-items: start;
}

/* Left column: Details */
.hotel-info {
  min-width: 0;
}

.hotel-name {
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 4px;
}

.hotel-type {
  font-size: 0.9rem;
  color: var(--accent-light);
  margin-bottom: 16px;
}

.hotel-details {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 16px;
}

.hotel-detail {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9rem;
  color: var(--text-muted);
}

.hotel-detail a {
  color: var(--accent);
  text-decoration: none;
}

.hotel-detail a:hover {
  color: var(--accent-light);
  text-decoration: underline;
}

.hotel-icon {
  font-size: 1rem;
  width: 20px;
  text-align: center;
  flex-shrink: 0;
}

.hotel-website-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 16px;
  background: rgba(249, 115, 22, 0.15);
  border: 1px solid rgba(249, 115, 22, 0.3);
  border-radius: 8px;
  color: var(--accent);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 500;
  transition: all 0.2s ease;
}

.hotel-website-btn:hover {
  background: rgba(249, 115, 22, 0.25);
  color: var(--accent-light);
  transform: translateY(-2px);
}

/* Center column: Image */
.hotel-image-container {
  flex-shrink: 0;
  width: 200px;
  height: 150px;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.hotel-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.hotel-image-container:hover .hotel-image {
  transform: scale(1.05);
}

/* Right column: Description */
.hotel-description {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.6;
}

.hotel-description-title {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--accent);
  margin-bottom: 8px;
  font-weight: 500;
}

/* Mobile responsive */
@media (max-width: 900px) {
  .hotel-content {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto auto;
  }

  .hotel-image-container {
    grid-column: 1 / -1;
    grid-row: 1;
    width: 100%;
    height: 180px;
    margin-bottom: 8px;
  }

  .hotel-info {
    grid-column: 1;
    grid-row: 2;
  }

  .hotel-description-wrapper {
    grid-column: 2;
    grid-row: 2;
  }
}

@media (max-width: 600px) {
  .hotel-content {
    grid-template-columns: 1fr;
  }

  .hotel-image-container {
    grid-column: 1;
    height: 160px;
  }

  .hotel-info,
  .hotel-description-wrapper {
    grid-column: 1;
  }
}
