/* ============================================
   YogaNTravel — Yoga ohne Grenzen & In Nature We Trust
   Light, airy design with beige & soft green gradients
   ============================================ */

/* ---------- Reset & Variables ---------- */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  /* Yoga palette */
  --yoga-primary: #f8f5f0;
  --yoga-accent: #8a6f4e;
  --yoga-accent-light: #c0a07a;
  --yoga-gradient: linear-gradient(160deg, #fbf9f6 0%, #f2ece4 100%);

  /* Blog palette */
  --blog-primary: #f0f5ef;
  --blog-accent: #4e6e4e;
  --blog-accent-light: #7fa07f;
  --blog-gradient: linear-gradient(160deg, #f5f9f4 0%, #e8f0e6 100%);

  /* Shared */
  --text-dark: #1a1a1a;
  --text-medium: #4f4f4f;
  --text-light: #8a8a8a;
  --white: #ffffff;
  --shadow-sm: 0 1px 2px rgba(0,0,0,0.04), 0 1px 3px rgba(0,0,0,0.06);
  --shadow-md: 0 2px 4px rgba(0,0,0,0.04), 0 4px 16px rgba(0,0,0,0.08);
  --shadow-lg: 0 4px 8px rgba(0,0,0,0.04), 0 12px 40px rgba(0,0,0,0.1);
  --shadow-xl: 0 8px 16px rgba(0,0,0,0.06), 0 24px 64px rgba(0,0,0,0.12);
  --radius-sm: 10px;
  --radius-md: 14px;
  --radius-lg: 22px;
  --radius-xl: 30px;
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 0.6s cubic-bezier(0.4, 0, 0.2, 1);

  /* Typography */
  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  color: var(--text-dark);
  background: #faf8f5;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
  letter-spacing: -0.01em;
}

/* ---------- Skip Links (Accessibility) ---------- */
.skip-link {
  position: absolute;
  top: -100%;
  left: 50%;
  transform: translateX(-50%);
  background: var(--text-dark);
  color: var(--white);
  padding: 0.75rem 1.5rem;
  border-radius: 0 0 var(--radius-sm) var(--radius-sm);
  z-index: 9999;
  font-size: 0.85rem;
  font-weight: 500;
  text-decoration: none;
  transition: top 0.2s ease;
}

.skip-link:focus {
  top: 0;
  outline: 3px solid var(--yoga-accent);
  outline-offset: 2px;
}

/* ---------- Focus Styles (Accessibility) ---------- */
*:focus-visible {
  outline: 2px solid var(--yoga-accent);
  outline-offset: 3px;
  border-radius: 3px;
}

button:focus-visible,
a:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 2px solid var(--yoga-accent);
  outline-offset: 3px;
}

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(20px) saturate(1.2);
  -webkit-backdrop-filter: blur(20px) saturate(1.2);
  border-bottom: 1px solid rgba(0, 0, 0, 0.04);
}

.header-split {
  display: flex;
  align-items: stretch;
  max-width: 1440px;
  margin: 0 auto;
}

.header-half {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 1.25rem 1.5rem 0.75rem;
}

.header-divider {
  width: 1px;
  background: linear-gradient(to bottom, transparent 15%, rgba(0,0,0,0.06) 50%, transparent 85%);
  align-self: center;
}

/* Brand */
.brand {
  text-align: center;
  margin-bottom: 0.75rem;
  text-decoration: none;
  color: inherit;
  display: block;
  transition: var(--transition);
}

.brand:hover {
  transform: translateY(-1px);
}

.brand-icon {
  color: var(--yoga-accent);
  margin-bottom: 0.25rem;
  opacity: 0.7;
}

.brand-icon-blog {
  color: var(--blog-accent);
}

.brand-title {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 400;
  letter-spacing: 0.5px;
  color: var(--text-dark);
  line-height: 1.2;
  display: block;
}

.brand-subtitle {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: var(--yoga-accent-light);
  font-weight: 500;
  margin-top: 0.15rem;
  display: block;
}

.brand-subtitle-blog {
  color: var(--blog-accent-light);
}

/* Navigation */
.nav-list {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.nav-list > li > a {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  text-decoration: none;
  color: var(--text-medium);
  font-size: 0.85rem;
  font-weight: 450;
  padding: 0.5rem 0.75rem;
  border-radius: var(--radius-sm);
  transition: var(--transition);
}

.nav-list > li > a:hover {
  color: var(--text-dark);
  background: rgba(0, 0, 0, 0.03);
}

.chevron-icon {
  transition: transform var(--transition);
  opacity: 0.5;
}

.has-dropdown:hover .chevron-icon {
  transform: rotate(180deg);
}

/* Nav Button (Kontakt) */
.nav-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--yoga-gradient) !important;
  border: 1px solid rgba(139, 115, 85, 0.15);
  border-radius: 50px !important;
  padding: 0.45rem 1rem !important;
  font-size: 0.8rem !important;
}

.nav-btn:hover {
  border-color: rgba(139, 115, 85, 0.3) !important;
  box-shadow: var(--shadow-sm);
}

.nav-btn-blog {
  background: var(--blog-gradient) !important;
  border-color: rgba(90, 122, 90, 0.15) !important;
}

.nav-btn-blog:hover {
  border-color: rgba(90, 122, 90, 0.3) !important;
}

/* Header Center Contact Button */
.header-center {
  flex: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 -0.5rem;
  z-index: 10;
}

.header-contact-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: linear-gradient(135deg, rgba(138, 111, 78, 0.06), rgba(78, 110, 78, 0.06));
  border: 1px solid rgba(107, 114, 107, 0.15);
  border-radius: 50px;
  padding: 0.55rem 1.3rem;
  font-size: 0.84rem;
  font-weight: 500;
  color: var(--text-dark);
  text-decoration: none;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  white-space: nowrap;
}

.header-contact-btn:hover {
  background: linear-gradient(135deg, rgba(138, 111, 78, 0.1), rgba(78, 110, 78, 0.1));
  border-color: rgba(107, 114, 107, 0.3);
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
  transform: translateY(-1px);
}

/* Dropdowns */
.has-dropdown {
  position: relative;
}

.dropdown {
  display: none;
  position: absolute;
  top: calc(100% + 4px);
  left: 50%;
  transform: translateX(-50%);
  background: rgba(255,255,255,0.96);
  backdrop-filter: blur(16px) saturate(1.2);
  -webkit-backdrop-filter: blur(16px) saturate(1.2);
  border: 1px solid rgba(0,0,0,0.06);
  box-shadow: 0 8px 32px rgba(0,0,0,0.1);
  border-radius: var(--radius-md);
  min-width: 185px;
  padding: 0.5rem;
  list-style: none;
  z-index: 200;
  animation: dropdownIn 0.2s ease;
}

@keyframes dropdownIn {
  from { opacity: 0; transform: translateX(-50%) translateY(-4px); }
  to { opacity: 1; transform: translateX(-50%) translateY(0); }
}

.has-dropdown:hover > .dropdown {
  display: block;
}

.dropdown li a {
  display: block;
  padding: 0.5rem 0.75rem;
  color: var(--text-medium);
  text-decoration: none;
  font-size: 0.83rem;
  border-radius: 6px;
  transition: var(--transition);
}

.dropdown li a:hover {
  background: rgba(0, 0, 0, 0.03);
  color: var(--text-dark);
}

/* Mobile menu button (desktop: hidden) */
.mobile-menu-btn {
  display: none;
}

.hamburger-line {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text-dark);
  border-radius: 2px;
  transition: var(--transition);
}

/* ===== Mobile Header Bar ===== */
.mobile-header-bar {
  display: none;
}

/* ===== Mobile Nav ===== */
.mobile-nav {
  display: none;
}

@media (min-width: 769px) {
  .mobile-header-bar,
  .mobile-nav {
    display: none !important;
  }
}

/* ---------- Slideshow ---------- */
.slideshow-section {
  position: relative;
}

.slideshow-container {
  width: 100%;
  height: 70vh;
  min-height: 400px;
  max-height: 700px;
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #e8e4de 0%, #dde5db 100%);
}

.slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 1.2s ease-in-out;
  z-index: 1;
}

.slide.active {
  opacity: 1;
  z-index: 2;
}

.slideshow-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom,
    rgba(255,255,255,0.1) 0%,
    transparent 30%,
    transparent 70%,
    rgba(250,248,245,0.4) 100%
  );
  z-index: 3;
  pointer-events: none;
}

.slide-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: var(--text-dark);
  transition: var(--transition);
  opacity: 1;
}

.slide-btn:hover {
  background: rgba(255, 255, 255, 0.95);
  box-shadow: var(--shadow-md);
}

.slide-btn-prev { left: 1.5rem; }
.slide-btn-next { right: 1.5rem; }

.slide-dots {
  position: absolute;
  bottom: 1.5rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  display: flex;
  gap: 8px;
}

.slide-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  border: none;
  background: rgba(255, 255, 255, 0.5);
  cursor: pointer;
  transition: var(--transition);
  padding: 0;
}

.slide-dot.active {
  background: rgba(255, 255, 255, 0.95);
  transform: scale(1.3);
}

.slide-dot:hover {
  background: rgba(255, 255, 255, 0.8);
}

.slideshow-placeholder {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100%;
  color: var(--text-light);
  font-size: 1rem;
  gap: 0.5rem;
  z-index: 5;
  position: relative;
}

.slideshow-placeholder svg {
  opacity: 0.4;
}

/* ---------- Fade-in Animations ---------- */
.fade-in {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

.fade-in-delay {
  transition-delay: 0.2s;
}

/* ---------- Hero Sections ---------- */
.hero-section {
  padding: 6rem 2rem;
  overflow: hidden;
}

.hero-section .section-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 4rem;
  align-items: center;
}

.hero-title {
  font-family: var(--font-display);
  font-size: 3.8rem;
  font-weight: 300;
  line-height: 1.1;
  color: var(--text-dark);
  margin-bottom: 1.5rem;
  letter-spacing: -0.02em;
}

.hero-title em {
  font-style: italic;
  color: var(--yoga-accent);
}

.blog-hero .hero-title em {
  color: var(--blog-accent);
}

.hero-text {
  font-size: 1.1rem;
  line-height: 1.8;
  color: var(--text-medium);
  margin-bottom: 2rem;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  justify-content: center;
}

/* Hero Visual (floating card) */
.hero-visual {
  position: relative;
}

.floating-card {
  position: relative;
  z-index: 2;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
  transform: rotate(2deg);
  transition: transform var(--transition-slow);
}

.floating-card:hover {
  transform: rotate(0deg) scale(1.02);
}

.floating-card-blog {
  transform: rotate(-2deg);
}

.floating-card-blog:hover {
  transform: rotate(0deg) scale(1.02);
}

.floating-accent {
  position: absolute;
  top: -20px;
  right: -20px;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(196, 168, 130, 0.15) 0%, rgba(196, 168, 130, 0.05) 100%);
  z-index: 1;
}

.floating-accent-blog {
  background: linear-gradient(135deg, rgba(143, 173, 143, 0.15) 0%, rgba(143, 173, 143, 0.05) 100%);
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 0.75rem 1.75rem;
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 500;
  text-decoration: none;
  transition: var(--transition);
  cursor: pointer;
  border: none;
  font-family: var(--font-body);
}

.btn-primary {
  background: var(--yoga-accent);
  color: var(--white);
  box-shadow: 0 2px 8px rgba(138, 111, 78, 0.2);
}

.btn-primary:hover {
  background: #7a6148;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(138, 111, 78, 0.3);
}

.btn-blog {
  background: var(--blog-accent);
  box-shadow: 0 2px 8px rgba(78, 110, 78, 0.2);
}

.btn-blog:hover {
  background: #426042;
  box-shadow: 0 6px 20px rgba(78, 110, 78, 0.3);
}

.btn-ghost {
  background: transparent;
  color: var(--yoga-accent);
  border: 1.5px solid rgba(138, 111, 78, 0.25);
}

.btn-ghost:hover {
  background: rgba(138, 111, 78, 0.06);
  border-color: rgba(138, 111, 78, 0.5);
  transform: translateY(-2px);
}

.btn-ghost-blog {
  color: var(--blog-accent);
  border-color: rgba(78, 110, 78, 0.25);
}

.btn-ghost-blog:hover {
  background: rgba(78, 110, 78, 0.06);
  border-color: rgba(78, 110, 78, 0.5);
  transform: translateY(-2px);
}

/* ---------- Content Sections ---------- */
.content-section {
  padding: 6rem 2rem;
}

.section-alt {
  background: linear-gradient(180deg, rgba(255,255,255,0.6) 0%, rgba(240,235,227,0.15) 100%);
}

.section-inner {
  max-width: 1100px;
  margin: 0 auto;
}

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

/* Section Badge */
.section-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2.5px;
  padding: 0.4rem 1.1rem;
  border-radius: 50px;
  margin-bottom: 1.25rem;
}

.yoga-badge {
  background: var(--yoga-gradient);
  color: var(--yoga-accent);
  border: 1px solid rgba(138, 111, 78, 0.12);
}

.blog-badge {
  background: var(--blog-gradient);
  color: var(--blog-accent);
  border: 1px solid rgba(78, 110, 78, 0.12);
}

h2 {
  font-family: var(--font-display);
  font-size: 2.6rem;
  font-weight: 400;
  color: var(--text-dark);
  margin-bottom: 1.5rem;
  line-height: 1.15;
  letter-spacing: -0.02em;
}

h3 {
  font-family: var(--font-display);
  font-size: 1.45rem;
  font-weight: 500;
  color: var(--text-dark);
  margin-bottom: 0.5rem;
  letter-spacing: -0.01em;
}

.section-intro {
  color: var(--text-medium);
  font-size: 1.08rem;
  line-height: 1.75;
  max-width: 650px;
  margin-bottom: 3rem;
}

.section-header-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 2rem;
}

/* Placeholder Images */
.placeholder-img {
  background: linear-gradient(135deg, #e8e4de 0%, #dde5db 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-light);
  font-size: 0.85rem;
  font-weight: 400;
  border-radius: var(--radius-md);
  overflow: hidden;
  min-height: 120px;
}

.placeholder-tall {
  min-height: 400px;
}

.placeholder-wide {
  min-height: 280px;
}

.placeholder-hero {
  min-height: 360px;
}

/* ---------- About Section ---------- */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 4rem;
  align-items: start;
}

.about-image-stack {
  position: relative;
}

.about-img-main {
  aspect-ratio: 3/4;
  border-radius: var(--radius-xl);
  position: relative;
  z-index: 2;
}

.about-img-secondary {
  position: absolute;
  bottom: -30px;
  right: -30px;
  width: 55%;
  aspect-ratio: 1;
  border-radius: var(--radius-lg);
  border: 4px solid var(--white);
  box-shadow: var(--shadow-lg);
  z-index: 3;
}

.about-text .lead-text {
  font-size: 1.2rem;
  font-weight: 400;
  color: var(--text-dark);
  line-height: 1.7;
  margin-bottom: 1.25rem;
}

.about-text p {
  color: var(--text-medium);
  font-size: 0.95rem;
  line-height: 1.8;
  margin-bottom: 1rem;
}

/* Stats */
.stats-row {
  display: flex;
  gap: 2.5rem;
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(0,0,0,0.06);
}

.stat-item {
  text-align: center;
}

.stat-number {
  display: block;
  font-family: var(--font-display);
  font-size: 2.2rem;
  font-weight: 500;
  color: var(--yoga-accent);
  line-height: 1;
}

.stat-label {
  font-size: 0.75rem;
  color: var(--text-light);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-top: 0.3rem;
  display: block;
}

/* ---------- Philosophy Section ---------- */
.quote-title {
  margin-bottom: 1.5rem;
}

.big-quote {
  max-width: 700px;
  margin: 0 auto 3rem;
}

.big-quote p {
  font-family: var(--font-display);
  font-size: 1.7rem;
  font-style: italic;
  line-height: 1.55;
  color: var(--text-medium);
  letter-spacing: -0.01em;
}

.philosophy-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 2rem;
}

.phil-card {
  background: var(--white);
  border: 1px solid rgba(0,0,0,0.05);
  border-radius: var(--radius-lg);
  padding: 2.25rem 1.75rem;
  text-align: center;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.4s ease;
}

.phil-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 32px rgba(0,0,0,0.08);
}

.phil-icon {
  color: var(--yoga-accent-light);
  margin-bottom: 1rem;
}

.phil-card h3 {
  font-size: 1.25rem;
  margin-bottom: 0.75rem;
}

.phil-card p {
  color: var(--text-medium);
  font-size: 0.9rem;
  line-height: 1.7;
}

/* ---------- Offer Cards ---------- */
.offer-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
  margin-bottom: 4rem;
  padding: 2.25rem;
  background: var(--white);
  border: 1px solid rgba(0,0,0,0.05);
  border-radius: var(--radius-xl);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.4s ease;
}

.offer-card:last-child {
  margin-bottom: 0;
}

.offer-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(0,0,0,0.08);
}

.offer-card-reverse {
  direction: rtl;
}

.offer-card-reverse > * {
  direction: ltr;
}

.offer-image .placeholder-img {
  border-radius: var(--radius-md);
}

.offer-tag {
  display: inline-block;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  font-weight: 600;
  color: var(--yoga-accent);
  background: var(--yoga-gradient);
  padding: 0.25rem 0.75rem;
  border-radius: 4px;
  margin-bottom: 0.5rem;
}

.offer-tag-active {
  color: #8b5e3c;
  background: linear-gradient(160deg, #fef3e2, #fde8cc);
}

.offer-tag-special {
  color: #5a5a8b;
  background: linear-gradient(160deg, #f0eef7, #e6e2f0);
}

.offer-content h3 {
  font-size: 1.5rem;
  margin-bottom: 0.75rem;
}

.offer-content p {
  color: var(--text-medium);
  font-size: 0.92rem;
  line-height: 1.8;
  margin-bottom: 1rem;
}

.offer-details {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.offer-details li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.87rem;
  color: var(--text-medium);
}

.offer-details li svg {
  color: var(--yoga-accent-light);
  flex-shrink: 0;
}

.offer-details-relaxed {
  gap: 1rem;
}

/* ---------- CTA Actions ---------- */
.cta-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.section-intro-centered {
  margin: 0 auto 2rem;
}

/* ---------- World Divider ---------- */
.world-divider {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  padding: 2rem 2rem;
  max-width: 600px;
  margin: 0 auto;
}

.divider-line {
  flex: 1;
  height: 1px;
  background: linear-gradient(to right, transparent, rgba(0,0,0,0.08), transparent);
}

.divider-icon {
  color: var(--text-light);
  opacity: 0.5;
  display: flex;
}

/* ---------- Blog Featured ---------- */
.blog-featured {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 2.5rem;
  background: var(--white);
  border: 1px solid rgba(0,0,0,0.05);
  border-radius: var(--radius-xl);
  overflow: hidden;
  margin-bottom: 2rem;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.4s ease;
}

.blog-featured:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(0,0,0,0.08);
}

.featured-image .placeholder-img {
  border-radius: 0;
  min-height: 100%;
}

.featured-content {
  padding: 2.5rem 2.5rem 2.5rem 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.featured-content h3 {
  font-size: 1.6rem;
  line-height: 1.3;
  margin-bottom: 0.75rem;
}

.featured-content p {
  color: var(--text-medium);
  font-size: 0.92rem;
  line-height: 1.8;
  margin-bottom: 1rem;
}

/* Post Cards */
.posts-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.post-card {
  background: var(--white);
  border: 1px solid rgba(0, 0, 0, 0.05);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.4s ease;
}

.post-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 32px rgba(0,0,0,0.08);
}

.post-image {
  height: 200px;
  background: linear-gradient(135deg, #dde5db 0%, #e8e4de 100%);
  border-radius: 0;
}

.post-content {
  padding: 1.25rem;
}

.post-tag {
  display: inline-block;
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  font-weight: 600;
  color: var(--blog-accent);
  background: var(--blog-gradient);
  padding: 0.2rem 0.6rem;
  border-radius: 4px;
  margin-bottom: 0.5rem;
}

.post-content h3 {
  font-size: 1.15rem;
  margin-bottom: 0.4rem;
  line-height: 1.35;
}

.post-content p {
  color: var(--text-medium);
  font-size: 0.85rem;
  line-height: 1.6;
  margin-bottom: 0.75rem;
}

.read-more {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--blog-accent);
  text-decoration: none;
  font-size: 0.85rem;
  font-weight: 500;
  transition: var(--transition);
}

.read-more:hover {
  gap: 10px;
}

.read-more svg {
  transition: transform var(--transition);
}

.read-more:hover svg {
  transform: translateX(3px);
}

/* ---------- Destination Features ---------- */
.destination-feature {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  margin-bottom: 4rem;
  align-items: start;
}

.destination-feature:last-child {
  margin-bottom: 0;
}

.dest-feature-reverse {
  direction: rtl;
}

.dest-feature-reverse > * {
  direction: ltr;
}

.dest-gallery {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.dest-img-main {
  min-height: 280px;
  border-radius: var(--radius-lg);
}

.dest-img-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.75rem;
}

.dest-img-grid .placeholder-img {
  min-height: 100px;
  border-radius: var(--radius-sm);
  font-size: 0.75rem;
}

.dest-header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.5rem;
}

.dest-flag {
  font-size: 1.5rem;
}

.dest-header h3 {
  font-size: 1.8rem;
  margin-bottom: 0;
}

.dest-tagline {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.05rem;
  color: var(--text-medium);
  margin-bottom: 1rem;
}

.dest-content p {
  color: var(--text-medium);
  font-size: 0.92rem;
  line-height: 1.8;
  margin-bottom: 0.75rem;
}

.dest-highlights {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 1.25rem;
}

.highlight-tag {
  display: inline-block;
  padding: 0.4rem 0.9rem;
  background: rgba(90, 122, 90, 0.08);
  border: 1px solid rgba(90, 122, 90, 0.15);
  border-radius: 50px;
  color: var(--blog-accent);
  font-size: 0.8rem;
  font-weight: 500;
  transition: all var(--transition);
}

.highlight-tag:hover {
  background: rgba(90, 122, 90, 0.15);
  border-color: rgba(90, 122, 90, 0.25);
  transform: translateY(-2px);
}

/* ---------- Contact Section ---------- */
.contact-section {
  background: linear-gradient(180deg, rgba(255,255,255,0.3) 0%, rgba(247,243,238,0.5) 100%);
}

.contact-form {
  max-width: 600px;
  margin: 2rem auto 0;
  text-align: left;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.form-group {
  margin-bottom: 1.25rem;
}

.form-group label {
  display: block;
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--text-dark);
  margin-bottom: 0.4rem;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.8rem 1.1rem;
  border: 1.5px solid rgba(0,0,0,0.08);
  border-radius: var(--radius-md);
  font-family: var(--font-body);
  font-size: 0.9rem;
  color: var(--text-dark);
  background: rgba(255,255,255,0.8);
  transition: var(--transition);
  -webkit-appearance: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--yoga-accent);
  box-shadow: 0 0 0 4px rgba(138, 111, 78, 0.08);
  outline: none;
  background: var(--white);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--text-light);
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

.btn-submit {
  width: 100%;
  justify-content: center;
  padding: 0.85rem 2rem;
  font-size: 0.95rem;
}

/* ---------- Footer ---------- */
.site-footer {
  background: linear-gradient(180deg, #f5f2ec 0%, #eef3ec 100%);
  border-top: 1px solid rgba(0, 0, 0, 0.04);
  margin-top: 0;
  padding: 4rem 2rem 2rem;
}

.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
  padding-bottom: 2.5rem;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 0.75rem;
  color: var(--text-dark);
}

.footer-brand svg {
  opacity: 0.6;
}

.footer-col h4 {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 500;
  color: var(--text-dark);
}

.footer-col p {
  color: var(--text-medium);
  font-size: 0.85rem;
  line-height: 1.6;
  margin-bottom: 0.75rem;
}

.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: 0.3rem;
}

.footer-links a {
  color: var(--text-medium);
  text-decoration: none;
  font-size: 0.85rem;
  transition: var(--transition);
}

.footer-links a:hover {
  color: var(--text-dark);
}

.footer-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--yoga-accent);
  text-decoration: none;
  font-size: 0.85rem;
  font-weight: 500;
  padding: 0.5rem 1rem;
  background: var(--yoga-gradient);
  border: 1px solid rgba(139, 115, 85, 0.12);
  border-radius: 50px;
  transition: var(--transition);
}

.footer-cta:hover {
  border-color: rgba(139, 115, 85, 0.25);
  box-shadow: var(--shadow-sm);
}

.footer-bottom {
  max-width: 1100px;
  margin: 0 auto;
  padding-top: 1.5rem;
  text-align: center;
}

.footer-bottom p {
  color: var(--text-light);
  font-size: 0.78rem;
}

/* ---------- Back to Top ---------- */
.back-to-top {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: rgba(255,255,255,0.9);
  backdrop-filter: blur(12px) saturate(1.2);
  -webkit-backdrop-filter: blur(12px) saturate(1.2);
  border: 1px solid rgba(0,0,0,0.06);
  box-shadow: 0 4px 16px rgba(0,0,0,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: var(--text-dark);
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  opacity: 0;
  pointer-events: none;
  z-index: 100;
}

.back-to-top.visible {
  opacity: 1;
  pointer-events: all;
}

.back-to-top:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

/* ---------- Reduced Motion ---------- */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }

  .fade-in {
    opacity: 1;
    transform: none;
  }

  .floating-card {
    transform: none;
  }
}

/* ---------- Responsive ---------- */
@media (max-width: 1024px) {
  .hero-section .section-inner {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .hero-title {
    font-size: 3rem;
  }

  .philosophy-cards {
    grid-template-columns: 1fr 1fr;
  }

  .offer-card {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .offer-card-reverse {
    direction: ltr;
  }

  .destination-feature {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .dest-feature-reverse {
    direction: ltr;
  }

  .blog-featured {
    grid-template-columns: 1fr;
  }

  .featured-content {
    padding: 1.5rem;
  }

  .posts-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  /* Hide the two-column desktop header */
  .header-split {
    display: none;
  }

  /* Show mobile header bar */
  .mobile-header-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.75rem 1.25rem;
    min-height: 60px;
    z-index: 1001;
    position: relative;
  }

  .mobile-brand {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    color: var(--text-dark);
    font-family: var(--font-display);
    font-size: 1.15rem;
    font-weight: 400;
    letter-spacing: 0.3px;
  }

  .mobile-brand svg {
    color: var(--blog-accent);
    opacity: 0.85;
    flex-shrink: 0;
  }

  .mobile-brand-yoga svg {
    color: var(--yoga-accent);
  }

  /* Show burger button */
  .mobile-menu-btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 5px;
    width: 40px;
    height: 40px;
    background: rgba(0,0,0,0.04);
    border: 1px solid rgba(0,0,0,0.07);
    border-radius: var(--radius-sm);
    cursor: pointer;
    padding: 0.5rem;
    transition: var(--transition);
    flex-shrink: 0;
  }

  .mobile-menu-btn:hover {
    background: rgba(0,0,0,0.07);
  }

  .mobile-menu-btn.is-open .hamburger-line:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }
  .mobile-menu-btn.is-open .hamburger-line:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
  }
  .mobile-menu-btn.is-open .hamburger-line:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }

  /* Mobile Nav panel */
  .mobile-nav {
    display: block;
    overflow: hidden;
    max-height: 0;
    transition: max-height 0.42s cubic-bezier(0.4, 0, 0.2, 1);
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-top: 1px solid rgba(0, 0, 0, 0.04);
    z-index: 999;
  }

  .mobile-nav.open {
    max-height: 640px;
  }

  .mobile-nav-section {
    /* Section container */
  }

  .mobile-nav-toggle {
    display: flex;
    align-items: center;
    gap: 12px;
    width: 100%;
    padding: 1rem 1.25rem;
    background: none;
    border: none;
    cursor: pointer;
    text-align: left;
    transition: background var(--transition);
  }

  .mobile-nav-toggle:hover {
    background: rgba(0, 0, 0, 0.02);
  }

  .mobile-nav-icon {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
  }

  .mobile-nav-icon-yoga {
    background: var(--yoga-gradient);
    color: var(--yoga-accent);
  }

  .mobile-nav-icon-blog {
    background: var(--blog-gradient);
    color: var(--blog-accent);
  }

  .mobile-nav-text {
    flex: 1;
    min-width: 0;
  }

  .mobile-nav-title {
    display: block;
    font-family: var(--font-display);
    font-size: 1.1rem;
    font-weight: 400;
    color: var(--text-dark);
    line-height: 1.2;
  }

  .mobile-nav-subtitle {
    display: block;
    font-size: 0.68rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--text-light);
    margin-top: 3px;
    font-weight: 500;
  }

  .mobile-nav-chevron {
    color: var(--text-light);
    transition: transform var(--transition);
    flex-shrink: 0;
  }

  .mobile-nav-toggle[aria-expanded="true"] .mobile-nav-chevron {
    transform: rotate(180deg);
  }

  .mobile-nav-links {
    overflow: hidden;
    max-height: 0;
    transition: max-height 0.35s cubic-bezier(0.4, 0, 0.2, 1),
                padding 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    padding: 0 1.25rem;
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
  }

  .mobile-nav-links.open {
    max-height: 340px;
    padding: 0.15rem 1.25rem 1rem;
  }

  .mobile-nav-links a {
    display: block;
    padding: 0.6rem 0.85rem;
    color: var(--text-medium);
    text-decoration: none;
    font-size: 0.9rem;
    border-radius: var(--radius-sm);
    transition: var(--transition);
  }

  .mobile-nav-links a:hover {
    background: rgba(0, 0, 0, 0.03);
    color: var(--text-dark);
  }

  .mobile-nav-cta {
    background: var(--yoga-gradient) !important;
    color: var(--yoga-accent) !important;
    border: 1px solid rgba(139, 115, 85, 0.15) !important;
    border-radius: 50px !important;
    font-weight: 500 !important;
    text-align: center !important;
    margin-top: 0.35rem;
  }

  .mobile-nav-cta-blog {
    background: var(--blog-gradient) !important;
    color: var(--blog-accent) !important;
    border-color: rgba(90, 122, 90, 0.15) !important;
  }

  .mobile-nav-active {
    font-weight: 600;
    color: var(--yoga-accent);
  }

  .mobile-nav-active-blog {
    color: var(--blog-accent);
  }

  .mobile-nav-sep {
    height: 1px;
    background: linear-gradient(to right, transparent, rgba(0, 0, 0, 0.06), transparent);
    margin: 0 1.25rem;
  }

  /* Chapter nav sticky top on mobile */
  .chapter-nav {
    top: 60px;
  }

  .hero-section {
    padding: 3.5rem 1.25rem;
  }

  .hero-title {
    font-size: 2.4rem;
  }

  .about-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .about-img-secondary {
    position: relative;
    bottom: auto;
    right: auto;
    width: 60%;
    margin-top: -40px;
    margin-left: auto;
  }

  .stats-row {
    gap: 1.5rem;
  }

  .stat-number {
    font-size: 1.8rem;
  }

  .philosophy-cards,
  .posts-grid {
    grid-template-columns: 1fr;
  }

  .footer-inner {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 2rem;
  }

  .footer-brand {
    justify-content: center;
  }

  .content-section {
    padding: 3.5rem 1.25rem;
  }

  h2 {
    font-size: 2rem;
  }

  .big-quote p {
    font-size: 1.25rem;
  }

  .slideshow-container {
    height: 50vh;
    min-height: 280px;
  }

  .slide-btn {
    width: 36px;
    height: 36px;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .dest-img-main {
    min-height: 200px;
  }

  .dest-img-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 480px) {
  .brand-title {
    font-size: 1.3rem;
  }

  .nav-list > li > a {
    font-size: 0.75rem;
    padding: 0.35rem 0.5rem;
  }

  .hero-title {
    font-size: 1.8rem;
  }

  .floating-card {
    transform: none;
  }

  .placeholder-tall {
    min-height: 250px;
  }
}

/* ---------- Blog Page Styles ---------- */
.nav-active {
  color: var(--blog-accent) !important;
  font-weight: 600 !important;
}

/* Page Hero */
.page-hero {
  padding: 4rem 2rem 3rem;
  text-align: center;
}

.blog-page-hero {
  background: linear-gradient(180deg, var(--blog-primary) 0%, transparent 100%);
}

.yoga-page-hero {
  background: linear-gradient(180deg, var(--yoga-primary) 0%, transparent 100%);
}

.page-photo-wrap {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 2rem 3rem;
}

.page-photo {
  width: 100%;
  height: 420px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  display: block;
}

@media (max-width: 768px) {
  .page-photo {
    height: 260px;
  }
}

.info-block {
  background: var(--white);
  border: 1px solid rgba(0,0,0,0.05);
  border-radius: var(--radius-xl);
  padding: 2.25rem 2.75rem;
  box-shadow: var(--shadow-sm);
}

.page-hero-inner {
  max-width: 700px;
  margin: 0 auto;
}

.page-hero-title {
  font-family: var(--font-display);
  font-size: 3.2rem;
  font-weight: 300;
  color: var(--text-dark);
  margin: 0.5rem 0 1rem;
  line-height: 1.15;
  letter-spacing: -0.02em;
}

.page-hero-subtitle {
  color: var(--text-medium);
  font-size: 1.05rem;
  line-height: 1.7;
}

/* Chapter Navigation */
.chapter-nav {
  position: sticky;
  top: 95px;
  z-index: 50;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(16px) saturate(1.2);
  -webkit-backdrop-filter: blur(16px) saturate(1.2);
  border-bottom: 1px solid rgba(0,0,0,0.04);
  padding: 0.75rem 2rem;
  overflow-x: hidden;
  overflow-y: visible;
}

.chapter-nav-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 1rem;
}

.chapter-nav-label {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--text-light);
  white-space: nowrap;
}

.chapter-nav-links {
  display: flex;
  gap: 0.25rem;
  overflow-x: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
  -webkit-overflow-scrolling: touch;
  padding: 0.25rem 0;
}

.chapter-nav-links::-webkit-scrollbar {
  display: none;
}

.chapter-nav-links a {
  display: inline-block;
  padding: 0.35rem 0.75rem;
  font-size: 0.78rem;
  color: var(--text-medium);
  text-decoration: none;
  white-space: nowrap;
  border-radius: 50px;
  transition: var(--transition);
}

.chapter-nav-links a:hover {
  background: rgba(0,0,0,0.04);
  color: var(--text-dark);
}

/* Blog Chapters */
.blog-chapter {
  padding: 2.75rem;
  margin: 1.5rem 1rem;
  background: rgba(255, 255, 255, 0.7);
  border-radius: var(--radius-xl);
  border: 1px solid rgba(90, 122, 90, 0.06);
  box-shadow: var(--shadow-sm);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.4s ease;
}

.blog-chapter:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(0,0,0,0.06);
  border-color: rgba(90, 122, 90, 0.1);
}

.blog-chapter:last-of-type {
  margin-bottom: 3rem;
}

.chapter-inner {
  max-width: 900px;
  margin: 0 auto;
}

.chapter-header {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  margin-bottom: 1rem;
}

.chapter-number {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 300;
  color: var(--blog-accent-light);
  opacity: 0.5;
  line-height: 1;
}

.chapter-meta {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}

.chapter-date {
  font-size: 0.75rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--text-light);
}

.chapter-location {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 0.82rem;
  color: var(--blog-accent);
  font-weight: 500;
}

.blog-chapter h2 {
  font-size: 2rem;
  margin-bottom: 1.5rem;
}

/* Chapter Images */
.chapter-images {
  margin-bottom: 2rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid rgba(90, 122, 90, 0.08);
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.chapter-img-main {
  min-height: 300px;
  border-radius: var(--radius-lg);
  margin-bottom: 0.75rem;
}

img.chapter-img-main {
  width: 100%;
  height: 360px;
  object-fit: cover;
  display: block;
}

.chapter-img-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.75rem;
}

.chapter-img-row img {
  width: 100%;
  height: 120px;
  object-fit: cover;
  display: block;
  border-radius: var(--radius-sm);
}

.chapter-img-row .placeholder-img {
  min-height: 100px;
  border-radius: var(--radius-sm);
  font-size: 0.75rem;
}

/* Chapter Text */
.chapter-text p {
  color: var(--text-medium);
  font-size: 0.95rem;
  line-height: 1.85;
  margin-bottom: 0.75rem;
}

.chapter-lead {
  font-size: 1.05rem;
  color: var(--text-dark);
  line-height: 1.9;
  margin: 0 0 1rem;
}

.gallery-note {
  color: var(--text-medium);
  font-size: 0.9rem;
}

.chapter-gallery-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.75rem 1.25rem;
  margin-top: 0.5rem;
}

.mehr-lesen-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 0.6rem 1.35rem;
  background: linear-gradient(135deg, rgba(255,255,255,0.1), rgba(255,255,255,0));
  border: 1px solid rgba(90, 122, 90, 0.25);
  border-radius: 50px;
  color: var(--blog-accent);
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 600;
  cursor: pointer;
  transition: all var(--transition);
  margin-top: 0.75rem;
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  box-shadow: 0 2px 8px rgba(0,0,0,0.04);
}

.mehr-lesen-btn:hover {
  background: linear-gradient(135deg, rgba(255,255,255,0.2), rgba(255,255,255,0.05));
  border-color: rgba(90, 122, 90, 0.4);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

.mehr-lesen-btn:active {
  transform: translateY(0);
  box-shadow: 0 2px 8px rgba(0,0,0,0.04);
}

.mehr-lesen-btn svg {
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.mehr-lesen-btn[aria-expanded="true"] svg {
  transform: rotate(180deg);
}

.mehr-lesen-btn.is-open {
  background: linear-gradient(135deg, rgba(255,255,255,0.15), rgba(255,255,255,0.02));
  border-color: rgba(90, 122, 90, 0.3);
}

/* Chapter Tags */
.chapter-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(90, 122, 90, 0.08);
}

.highlight-tag {
  display: inline-block;
  padding: 0.4rem 0.9rem;
  background: rgba(90, 122, 90, 0.08);
  border: 1px solid rgba(90, 122, 90, 0.15);
  border-radius: 50px;
  color: var(--blog-accent);
  font-size: 0.8rem;
  font-weight: 500;
  transition: all var(--transition);
}

.highlight-tag:hover {
  background: rgba(90, 122, 90, 0.15);
  border-color: rgba(90, 122, 90, 0.25);
  transform: translateY(-2px);
}

/* ---------- Testimonials Grid ---------- */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.testimonial-card {
  padding: 2.25rem;
  background: var(--white);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(0,0,0,0.05);
  border-left: 3px solid var(--yoga-accent);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.4s ease;
}

.testimonial-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 32px rgba(0,0,0,0.08);
}

.testimonial-rating {
  font-size: 1.2rem;
  color: var(--yoga-accent);
  margin-bottom: 1rem;
  letter-spacing: 2px;
}

.testimonial-text {
  font-size: 1.05rem;
  line-height: 1.8;
  color: var(--text-dark);
  margin-bottom: 1.5rem;
  font-style: italic;
}

.testimonial-author {
  font-size: 0.95rem;
  color: var(--yoga-accent);
  font-weight: 500;
}

/* ---------- Inspiration Cards ---------- */
.inspiration-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.inspiration-card {
  padding: 2.5rem 2rem;
  text-align: center;
  background: var(--white);
  border-radius: var(--radius-xl);
  border: 1px solid rgba(0,0,0,0.05);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.4s ease;
}

.inspiration-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 16px 40px rgba(0,0,0,0.08);
}

.inspiration-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  background: linear-gradient(135deg, var(--yoga-accent) 0%, var(--yoga-accent-light) 100%);
  color: white;
  border-radius: 50%;
  margin: 0 auto 1.5rem;
}

.inspiration-card h3 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: var(--yoga-accent);
}

.inspiration-card p {
  color: var(--text-medium);
  line-height: 1.7;
}

/* ---------- Destination Slideshows ---------- */
.destination-slideshow {
  position: relative;
  width: 100%;
  height: 300px;
  overflow: hidden;
  margin: 2rem 0;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  background: linear-gradient(135deg, #0e1a11 0%, #102017 100%);
}

.blog-chapter .destination-slideshow {
  height: 460px;
}

.destination-slides {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.destination-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity var(--transition-slow);
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #1b2c23 0%, #0f1b13 100%);
}

.destination-slide.active {
  opacity: 1;
  z-index: 1;
  box-shadow: inset 0 0 0 1px rgba(255,255,255,0.04);
}

.destination-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: saturate(1.05);
}

.destination-slide img.clickable-img {
  cursor: pointer;
  transition: transform 0.2s ease;
  border-radius: 0;
}

.destination-slide img.clickable-img:hover {
  transform: scale(1.02);
  box-shadow: 0 10px 30px rgba(0,0,0,0.25);
}

.destination-slide-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 3;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.85);
  border: 1px solid rgba(0,0,0,0.06);
  box-shadow: var(--shadow-sm);
  color: var(--text-dark);
  font-size: 20px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition);
  font-weight: 300;
  line-height: 1;
}

.destination-slide-btn:hover {
  background: white;
  box-shadow: var(--shadow-md);
}

.destination-slide-prev {
  left: 12px;
}

.destination-slide-next {
  right: 12px;
}

.destination-slide-dots {
  position: absolute;
  bottom: 12px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  gap: 7px;
  flex-wrap: nowrap;
  justify-content: center;
  align-items: center;
  padding: 5px 10px;
  background: rgba(0,0,0,0.25);
  border-radius: 50px;
}

.destination-slide-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.3);
  background: rgba(255, 255, 255, 0.4);
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  padding: 0;
  flex-shrink: 0;
}

.destination-slide-dot:hover {
  background: rgba(255, 255, 255, 0.9);
  transform: scale(1.1);
}

.destination-slide-dot.active {
  background: white;
  transform: scale(1.3);
  border-color: rgba(255,255,255,0.8);
  box-shadow: 0 0 0 3px rgba(255,255,255,0.2);
}

/* Hide dots if there are too many */
.destination-slides[data-total-slides] .destination-slide-dot:nth-child(n+11) {
  display: none;
}

/* ---------- Image Modal Lightbox ---------- */
.image-modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.95);
  z-index: 9999;
  align-items: center;
  justify-content: center;
  padding: 20px;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.image-modal[aria-hidden="false"] {
  animation: fadeIn 0.2s ease;
}

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

.modal-container {
  position: relative;
  width: 100%;
  height: 100%;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
  gap: 10px;
  overflow-y: auto;
  padding: 20px;
}

#modal-image {
  display: none; /* Hidden by default (inside .modal-container) */
}

.modal-single-view #modal-image {
  display: block; /* Visible when moved into single view */
}

.modal-grid-item {
  height: 150px;
  border-radius: var(--radius-sm);
  overflow: hidden;
  cursor: pointer;
  box-shadow: 0 2px 5px rgba(0,0,0,0.2);
  transition: transform 0.2s;
}

.modal-grid-item:hover {
  transform: scale(1.05);
  z-index: 2;
}

.modal-grid-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.modal-close {
  position: absolute;
  top: 12px;
  right: 12px;
  z-index: 10000;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: white;
  font-size: 28px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition);
  line-height: 1;
  padding: 0;
}

.modal-close:hover {
  background: rgba(255, 255, 255, 0.3);
  border-color: rgba(255, 255, 255, 0.5);
}

.modal-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.95);
  z-index: 1;
}

.modal-content {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  padding: 20px;
}

.modal-prev,
.modal-next {
  display: none; /* Hide prev/next for grid view */
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10001;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: white;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition);
  padding: 0;
}

.modal-prev:hover,
.modal-next:hover {
  background: rgba(255, 255, 255, 0.3);
  border-color: rgba(255, 255, 255, 0.5);
  transform: translateY(-50%) scale(1.1);
}

.modal-prev {
  left: 20px;
}

.modal-next {
  right: 20px;
}


.modal-counter {
  position: absolute;
  bottom: 12px;
  right: 12px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.85rem;
  font-weight: 500;
  padding: 6px 12px;
  background: rgba(0, 0, 0, 0.3);
  border-radius: var(--radius-sm);
}

/* "Alle Bilder" Button Styling */
.btn-all-images {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 16px;
  padding: 10px 20px;
  background: linear-gradient(135deg, rgba(255,255,255,0.92), rgba(245,245,245,0.9));
  border: 1px solid rgba(0,0,0,0.05);
  color: var(--text-dark);
  border-radius: var(--radius-md);
  cursor: pointer;
  font-size: 0.95rem;
  font-weight: 500;
  transition: all var(--transition);
  box-shadow: var(--shadow-sm);
}

.btn-all-images:hover {
  border-color: var(--text-dark);
  background: var(--text-dark);
  color: white;
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

.btn-all-images:active {
  transform: translateY(0);
}

@media (max-width: 768px) {
  .destination-slide-btn {
    width: 32px;
    height: 32px;
    font-size: 18px;
  }

  .modal-prev,
  .modal-next {
    width: 40px;
    height: 40px;
  }

  .image-modal {
    padding: 12px;
  }

  .modal-container {
    max-width: 95vw;
    max-height: 90vh;
  }

  #modal-image {
    max-height: 90vh;
  }

  .blog-chapter .destination-slideshow {
    height: 320px;
  }

  .dior-title {
    font-size: 1.8rem;
  }
}

@media print {
  .site-header,
  .slideshow-section,
  .slide-btn,
  .back-to-top,
  .contact-form {
    display: none;
  }

  body {
    background: white;
    color: black;
  }

  .content-section {
    padding: 1rem 0;
  }
}

/* Chapter Expandable Content */
.chapter-expandable-content {
  max-height: 2000px;
  overflow: hidden;
  transition: max-height 0.6s ease, opacity 0.4s ease;
}

.chapter-expandable[data-collapsed="true"] .chapter-expandable-content {
  max-height: 0;
  opacity: 0;
}

/* Modal Grid & Single View Structure */
.modal-grid-view {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
  gap: 10px;
  width: 100%;
  height: 100%;
  overflow-y: auto;
  padding: 20px;
}

.modal-single-view {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
}

.modal-single-view img {
  max-width: 90vw;
  max-height: 80vh;
  object-fit: contain;
  box-shadow: 0 5px 20px rgba(0,0,0,0.5);
}

.modal-grid-item {
  height: 150px;
  border-radius: var(--radius-sm);
  overflow: hidden;
  cursor: pointer;
  box-shadow: 0 2px 5px rgba(0,0,0,0.2);
  transition: transform 0.2s;
}

.modal-grid-item:hover {
  transform: scale(1.05);
  z-index: 2;
}

.modal-grid-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Slideshow Dots - überschreibende Duplikat-Regeln entfernt */

/* ============================================
   NEUE SEITEN-TRENNUNG: Yoga- & Blog-Page
   ============================================ */

/* Header Active Side */
.header-active {
  position: relative;
}

.header-active::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 40px;
  height: 0px;
  border-radius: 0px;
}

.header-yoga.header-active::after {
  background: var(--yoga-accent);
}

.header-blog.header-active::after {
  background: var(--blog-accent);
}

/* ============================================
   BLOG LANDING PAGE
   ============================================ */

/* Blog Landing Hero */
.blog-landing-hero {
  position: relative;
  min-height: 100vh; /* Nimmt die volle Bildschirmhöhe ein */
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden; /* Verhindert, dass Bilder überstehen */
  color: white; /* Textfarbe für den Kontrast */
}

.blog-hero-slideshow {
  position: absolute !important;
  inset: 0;
  z-index: 0;
}

.blog-hero-slideshow .destination-slides {
  height: 100%;
  min-height: 100%;
}

.blog-hero-slideshow .destination-slide {
  position: absolute;
  inset: 0;
}

.blog-hero-slideshow .destination-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 35%;
}

.blog-hero-slideshow .destination-slide-btn {
  display: none;
}

.blog-hero-slideshow .destination-slide-dots {
  display: none;
}

.blog-landing-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,0.3) 0%, rgba(0,0,0,0.55) 60%, rgba(0,0,0,0.75) 100%);
  z-index: 1;
}

.blog-landing-hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: #fff;
  padding: 2rem;
  max-width: 800px;
}

.blog-landing-hero-content h1 {
  font-family: var(--font-display);
  font-size: clamp(3.5rem, 8vw, 7rem);
  font-weight: 300;
  line-height: 1.05;
  color: #fff;
  margin-bottom: 1.5rem;
}

.blog-landing-hero-content h1 em {
  font-style: italic;
  color: rgba(255,255,255,0.85);
}

.blog-landing-hero-content p {
  font-size: 1.15rem;
  font-weight: 300;
  color: rgba(255,255,255,0.88);
  max-width: 560px;
  margin: 0 auto 2rem;
  line-height: 1.7;
}

/* Hero ghost button — visible on dark background */
.blog-landing-hero .btn-ghost-blog {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.55);
}

.blog-landing-hero .btn-ghost-blog:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: #fff;
}

.section-badge-light,
.blog-badge-light {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 3px;
  font-weight: 500;
  color: rgba(255,255,255,0.75);
  border: 1px solid rgba(255,255,255,0.3);
  padding: 0.35rem 0.85rem;
  border-radius: 100px;
  margin-bottom: 1.5rem;
}

/* Blog Overview Grid */
.blog-overview-section {
  background: var(--blog-gradient);
}

.blog-overview-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.blog-overview-card {
  display: block;
  text-decoration: none;
  color: inherit;
  border-radius: var(--radius-xl);
  overflow: hidden;
  background: #fff;
  border: 1px solid rgba(0,0,0,0.04);
  box-shadow: var(--shadow-md);
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.5s ease;
}

.blog-overview-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 24px 64px rgba(0,0,0,0.12);
}

.blog-overview-card-img {
  position: relative;
  height: 280px;
  overflow: hidden;
  background: #ddd;
}

.destination-slideshow,
.blog-landing-hero-overlay {
  top: auto;
  bottom: auto;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0; /* Liegt ganz unten */
}

.blog-overview-card-img .destination-slides {
  height: 280px;
}

.blog-overview-card-img .destination-slide {
  position: absolute;
  inset: 0;
}

.blog-overview-card-img .destination-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.blog-overview-card:hover .blog-overview-card-img .destination-slide.active img {
  transform: scale(1.05);
}

.blog-overview-card-img .destination-slide-btn,
.blog-overview-card-img .destination-slide-dots {
  display: none;
}

.blog-overview-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.5) 0%, transparent 60%);
  z-index: 1;
}

.blog-overview-card-content {
  padding: 1.75rem;
}

.blog-overview-eyebrow {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 2.5px;
  font-weight: 500;
  color: var(--blog-accent);
  display: block;
  margin-bottom: 0.5rem;
}

.blog-overview-card h3 {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 400;
  margin-bottom: 0.75rem;
  color: var(--text-dark);
}

.blog-overview-card p {
  font-size: 0.88rem;
  color: var(--text-medium);
  line-height: 1.65;
  margin-bottom: 1.25rem;
}

.blog-overview-cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.82rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--blog-accent);
  transition: gap 0.2s ease;
}

.blog-overview-card:hover .blog-overview-cta {
  gap: 10px;
}

/* ============================================
   BLOG EUROPA — VOLLBILD HERO
   ============================================ */

.europa-hero-fullscreen {
  position: relative;
  height: 100vh;
  min-height: 600px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  overflow: hidden;
  background: #1a1a1a;
}

.europa-hero-slideshow {
  position: absolute !important;
  inset: 0;
  z-index: 0;
}

.europa-hero-slideshow .destination-slides {
  height: 100vh;
  min-height: 600px;
}

.europa-hero-slideshow .destination-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1.2s ease;
}

.europa-hero-slideshow .destination-slide.active {
  opacity: 1;
}

.europa-hero-slideshow .destination-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.europa-hero-slideshow .destination-slide-btn,
.europa-hero-slideshow .destination-slide-dots {
  display: none;
}

.europa-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0,0,0,0.15) 0%,
    rgba(0,0,0,0.25) 40%,
    rgba(0,0,0,0.65) 75%,
    rgba(0,0,0,0.85) 100%
  );
  z-index: 1;
}

.europa-hero-content {
  position: relative;
  z-index: 2;
  padding: 0 clamp(1.5rem, 5vw, 6rem) 5rem;
  max-width: 900px;
}

.europa-hero-eyebrow {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 3px;
  font-weight: 500;
  color: rgba(255,255,255,0.65);
  margin-bottom: 1.25rem;
}

.europa-hero-title {
  font-family: var(--font-display);
  font-size: clamp(4rem, 10vw, 8.5rem);
  font-weight: 300;
  line-height: 0.95;
  color: #fff;
  letter-spacing: -1px;
  margin-bottom: 1.5rem;
}

.europa-hero-title em {
  font-style: italic;
  color: rgba(255,255,255,0.8);
}

.europa-hero-sub {
  font-size: 1.05rem;
  font-weight: 300;
  color: rgba(255,255,255,0.8);
  line-height: 1.7;
  max-width: 480px;
}

.europa-hero-scroll {
  position: absolute;
  bottom: 2rem;
  right: clamp(1.5rem, 5vw, 6rem);
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: rgba(255,255,255,0.5);
  animation: scrollBounce 2s ease-in-out infinite;
}

@keyframes scrollBounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(4px); }
}

.europa-hero-stats {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 0;
  background: rgba(255,255,255,0.1);
  backdrop-filter: blur(12px);
  border-top: 1px solid rgba(255,255,255,0.12);
}

.europa-stat {
  flex: 1;
  text-align: center;
  padding: 1.25rem;
  border-right: 1px solid rgba(255,255,255,0.1);
}

.europa-stat:last-child {
  border-right: none;
}

.europa-stat-number {
  display: block;
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 400;
  color: #fff;
  line-height: 1;
}

.europa-stat-label {
  display: block;
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: rgba(255,255,255,0.55);
  margin-top: 0.25rem;
}

/* Europa Intro Section */
.europa-intro-section {
  background: var(--blog-gradient);
  padding: 4rem 0 2rem;
}

.europa-intro-inner {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 2rem;
  text-align: center;
}

.europa-intro-lead {
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 3vw, 2rem);
  font-weight: 300;
  font-style: italic;
  color: var(--text-dark);
  line-height: 1.5;
  margin-bottom: 2rem;
}

.europa-route-ribbon {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.35rem 0;
  font-size: 0.8rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--blog-accent);
  background: rgba(255,255,255,0.7);
  padding: 1rem 1.5rem;
  border-radius: var(--radius-xl);
  border: 1px solid rgba(90,122,90,0.2);
}

.route-arrow {
  color: var(--blog-accent-light);
  margin: 0 0.3rem;
  font-size: 1rem;
}

/* Europa Chapter Nav Override */
.europa-chapter-nav .chapter-nav-links {
  gap: 0.25rem;
}

.europa-chapter-nav .chapter-nav-links a {
  font-size: 0.75rem;
  padding: 0.3rem 0.6rem;
  white-space: nowrap;
}

/* Europa Chapter Images Override */
.europa-chapter-images .chapter-img-main {
  border-radius: var(--radius-md) var(--radius-md) 0 0;
}

.europa-chapter-images img.chapter-img-main {
  border-radius: var(--radius-md) var(--radius-md) 0 0;
  width: 100%;
  height: 380px;
  object-fit: cover;
}

.europa-chapter-images img {
  transition: transform 0.4s ease;
  cursor: pointer;
}

.europa-chapter-images img:hover {
  transform: scale(1.02);
}

/* Europa Dior Show */
.europa-dior-show {
  background: linear-gradient(160deg, #1a1f1a 0%, #0f140f 100%);
  color: #fff;
  padding: 6rem 0;
}

.europa-dior-show .section-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.europa-dior-show .dior-header {
  text-align: center;
  margin-bottom: 3rem;
}

.europa-dior-show .dior-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: rgba(255,255,255,0.5);
  margin-bottom: 1.5rem;
}

.europa-dior-show .dior-title {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 300;
  color: #fff;
  line-height: 1.15;
  margin-bottom: 1rem;
}

.europa-dior-show .dior-title em {
  font-style: italic;
  color: rgba(255,255,255,0.65);
}

.europa-dior-show .dior-subtitle {
  font-size: 0.95rem;
  color: rgba(255,255,255,0.55);
  max-width: 560px;
  margin: 0 auto;
  line-height: 1.7;
}

.dior-slideshow {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 30px 80px rgba(0,0,0,0.5);
  margin-bottom: 2.5rem;
}

.dior-slideshow .destination-slides {
  height: 520px;
}

.dior-slideshow .destination-slide {
  position: absolute;
  inset: 0;
}

.dior-slideshow .destination-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.dior-actions {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  justify-content: center;
  flex-wrap: wrap;
}

.dior-btn {
  background: #fff !important;
  color: #1a1f1a !important;
  border-color: rgba(255,255,255,0.2) !important;
  font-size: 0.9rem;
  padding: 0.9rem 2rem;
}

.dior-btn:hover {
  background: rgba(255,255,255,0.9) !important;
  transform: translateY(-2px);
}

.europa-dior-show .gallery-note {
  color: rgba(255,255,255,0.4);
  font-size: 0.78rem;
}

/* ============================================
   WORLDWIDE PAGE — HERO ENHANCEMENT
   ============================================ */

.blog-page-hero.worldwide-hero {
  background: linear-gradient(160deg, #0f1a0f 0%, #1a2a1a 100%);
  min-height: 45vh;
  display: flex;
  align-items: center;
}

/* ============================================
   CHAPTER ENHANCEMENTS (Both Blog Pages)
   ============================================ */

/* Europa chapter alternating bg */
.europa-chapter:nth-child(even) {
  background: var(--blog-gradient);
}

/* Bigger chapter numbers */
.europa-chapter .chapter-number {
  font-family: var(--font-display);
  font-size: 5rem;
  font-weight: 300;
  color: rgba(90,122,90,0.15);
  line-height: 1;
  min-width: 90px;
}

/* Chapter images full display */
.chapter-images.europa-chapter-images {
  margin-bottom: 2rem;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.chapter-images.europa-chapter-images .placeholder-img {
  background: linear-gradient(135deg, #c8dac0, #a8c4a0);
}

/* ============================================
   RESPONSIVE
   ============================================ */

@media (max-width: 768px) {
  .blog-landing-hero-content h1 {
    font-size: 3rem;
  }

  .europa-hero-title {
    font-size: 3.5rem;
  }

  .europa-hero-stats {
    flex-wrap: wrap;
  }

  .europa-stat {
    flex: 1 1 50%;
  }

  .blog-overview-grid {
    grid-template-columns: 1fr;
  }

  .europa-route-ribbon {
    font-size: 0.7rem;
    padding: 0.75rem 1rem;
  }

  .dior-slideshow .destination-slides {
    height: 300px;
  }

  .europa-chapter-nav .chapter-nav-links {
    gap: 0.15rem;
  }

  .europa-chapter-nav .chapter-nav-links a {
    font-size: 0.7rem;
    padding: 0.25rem 0.45rem;
  }
}

/* ============================================
   AKTUELLES — EDITORIAL REDESIGN
   ============================================ */

/* Section header */
#aktuelles .section-header-row {
  margin-bottom: 2.5rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid rgba(90, 122, 90, 0.1);
  position: relative;
}

#aktuelles h2 {
  margin-bottom: 0.25rem;
}

.aktuelles-eyebrow {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 3px;
  font-weight: 600;
  color: var(--blog-accent);
  margin-bottom: 0.5rem;
}

/* Featured post — magazine card */
.blog-featured {
  border-radius: var(--radius-xl) !important;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0,0,0,0.07) !important;
  border: none !important;
  margin-bottom: 2.5rem;
}

.blog-featured .featured-image {
  position: relative;
}

.featured-img-styled {
  width: 100%;
  height: 100%;
  min-height: 340px;
  background: linear-gradient(145deg, #d6e8d4 0%, #b8d4b6 40%, #c4a882 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.featured-img-styled::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(90,122,90,0.2) 0%, rgba(139,115,85,0.15) 100%);
}

.featured-img-icon {
  position: relative;
  z-index: 1;
  color: rgba(255,255,255,0.7);
  margin-bottom: 0.5rem;
}

.featured-img-label {
  position: relative;
  z-index: 1;
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 3px;
  font-weight: 600;
  color: rgba(255,255,255,0.65);
}

.featured-content {
  background: #fff;
  padding: 2.5rem !important;
}

.featured-date {
  display: block;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-weight: 500;
  color: var(--text-light);
  margin-bottom: 0.5rem;
}

/* Post cards — improved */
.posts-grid {
  gap: 1.25rem !important;
}

.post-card {
  border-radius: var(--radius-lg) !important;
  border: none !important;
  box-shadow: 0 2px 12px rgba(0,0,0,0.05) !important;
  background: #fff !important;
}

.post-card:hover {
  box-shadow: 0 8px 24px rgba(0,0,0,0.1) !important;
}

.post-image-styled {
  height: 190px;
  display: flex;
  align-items: flex-end;
  padding: 1rem;
  position: relative;
  overflow: hidden;
}

.post-image-styled::before {
  content: '';
  position: absolute;
  inset: 0;
  background: inherit;
}

.post-image-styled::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.35) 0%, transparent 60%);
}

.post-image-thailand { background: linear-gradient(135deg, #d4a869 0%, #a07038 100%); }
.post-image-portugal { background: linear-gradient(135deg, #6a9e8a 0%, #3d7060 100%); }
.post-image-norwegen { background: linear-gradient(135deg, #5b7fa3 0%, #2d5072 100%); }

.post-image-badge {
  position: relative;
  z-index: 1;
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: rgba(255,255,255,0.85);
  background: rgba(0,0,0,0.25);
  padding: 0.2rem 0.6rem;
  border-radius: 50px;
  backdrop-filter: blur(4px);
}

.post-content {
  padding: 1.25rem 1.5rem 1.5rem !important;
}

.post-date {
  display: block;
  font-size: 0.68rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  font-weight: 500;
  color: var(--text-light);
  margin-bottom: 0.3rem;
}

/* Aktuelles section divider */
.aktuelles-divider {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin: 2rem 0;
}

.aktuelles-divider-line {
  flex: 1;
  height: 1px;
  background: linear-gradient(to right, transparent, rgba(90,122,90,0.15), transparent);
}

.aktuelles-divider-label {
  font-size: 0.68rem;
  text-transform: uppercase;
  letter-spacing: 2.5px;
  font-weight: 600;
  color: var(--text-light);
  white-space: nowrap;
}

/* ============================================
   EUROPA CHAPTER — SLIDESHOW STYLE
   ============================================ */

/* Make Europa chapter slideshow look like WorldWide */
.europa-chapter .chapter-images {
  margin-bottom: 0.5rem;
}

.chapter-images .destination-slideshow {
  margin: 0 0 0.5rem;
}

/* ============================================
   REISEPERLEN AB 2024
   ============================================ */

.reiseperlen-section {
  padding: 6rem 2rem;
  background: linear-gradient(160deg, #1a1d2e 0%, #0f1219 50%, #151a24 100%);
  color: #fff;
  position: relative;
  overflow: hidden;
}

.reiseperlen-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 20% 0%, rgba(90, 122, 160, 0.08) 0%, transparent 60%),
              radial-gradient(ellipse at 80% 100%, rgba(160, 120, 80, 0.06) 0%, transparent 50%);
  pointer-events: none;
}

.reiseperlen-inner {
  max-width: 1100px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.reiseperlen-header {
  text-align: center;
  margin-bottom: 3.5rem;
}

.reiseperlen-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: rgba(255,255,255,0.5);
  border: 1px solid rgba(255,255,255,0.15);
  padding: 0.4rem 1rem;
  border-radius: 100px;
  margin-bottom: 1.5rem;
}

.reiseperlen-title {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 6vw, 4.5rem);
  font-weight: 300;
  line-height: 1.05;
  color: #fff;
  letter-spacing: -0.02em;
  margin-bottom: 1.25rem;
}

.reiseperlen-title em {
  font-style: italic;
  color: rgba(255,255,255,0.55);
}

.reiseperlen-subtitle {
  font-size: 1.05rem;
  font-weight: 300;
  color: rgba(255,255,255,0.55);
  max-width: 540px;
  margin: 0 auto;
  line-height: 1.7;
}

/* Reiseperlen Grid */
.reiseperlen-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  gap: 2rem;
}

/* Reiseperlen Card */
.reiseperlen-card {
  border-radius: var(--radius-xl);
  overflow: hidden;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.5s ease;
}

.reiseperlen-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 24px 64px rgba(0,0,0,0.3);
}

.reiseperlen-card-visual {
  position: relative;
  height: 320px;
  overflow: hidden;
}

.reiseperlen-card-visual .destination-slideshow {
  border-radius: 0;
  height: 100%;
}

.reiseperlen-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.5) 0%, transparent 50%);
  z-index: 1;
  pointer-events: none;
}

.reiseperlen-card-badge {
  position: absolute;
  top: 1rem;
  left: 1rem;
  z-index: 2;
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: #fff;
  background: rgba(0,0,0,0.3);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  padding: 0.35rem 0.85rem;
  border-radius: 50px;
  border: 1px solid rgba(255,255,255,0.15);
}

.reiseperlen-card-body {
  padding: 2rem;
}

.reiseperlen-card-meta {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.reiseperlen-card-flag {
  font-size: 1.75rem;
  line-height: 1;
}

.reiseperlen-card-location {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: rgba(255,255,255,0.9);
  letter-spacing: 0.5px;
}

.reiseperlen-card-date {
  display: block;
  font-size: 0.72rem;
  color: rgba(255,255,255,0.4);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  font-weight: 500;
  margin-top: 2px;
}

.reiseperlen-card h3 {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 400;
  color: #fff;
  margin-bottom: 0.75rem;
  letter-spacing: -0.01em;
}

.reiseperlen-card p {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.55);
  line-height: 1.7;
  margin-bottom: 1.25rem;
}

.reiseperlen-card-stats {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
  font-size: 0.78rem;
  color: rgba(255,255,255,0.4);
  font-weight: 500;
}

.reiseperlen-stat-sep {
  color: rgba(255,255,255,0.2);
}

.reiseperlen-card-actions {
  display: flex;
  gap: 0.75rem;
}

.reiseperlen-btn {
  font-size: 0.85rem;
  padding: 0.7rem 1.5rem;
}

/* Responsive */
@media (max-width: 768px) {
  .reiseperlen-section {
    padding: 4rem 1.25rem;
  }

  .reiseperlen-grid {
    grid-template-columns: 1fr;
  }

  .reiseperlen-card-visual {
    height: 240px;
  }
}

/* Montenegro Post Image (Aktuelles grid) */
.post-image-montenegro {
  background: linear-gradient(135deg, #4a6fa5 0%, #2d4a6a 100%);
}

/* Make posts-grid wrap to 4 columns when there are 4+ cards */
@media (min-width: 769px) {
  .posts-grid {
    grid-template-columns: repeat(4, 1fr) !important;
  }
}

/* ==========================================
   Reiseperlen ab 2024 — Page Styles
   ========================================== */

/* Cinematic full-bleed hero */
.reiseperlen-page-hero {
  position: relative;
  min-height: 72vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: #0d1018;
}

.rp-hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}

.rp-hero-bg .destination-slideshow,
.rp-hero-bg .destination-slides,
.rp-hero-bg .destination-slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.rp-hero-bg .destination-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.38;
  filter: grayscale(15%);
}

.rp-hero-bg .destination-slide-btn,
.rp-hero-bg .destination-slide-dots {
  display: none;
}

.reiseperlen-page-hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg,
      rgba(10, 12, 20, 0.15) 0%,
      rgba(10, 12, 20, 0.5) 55%,
      rgba(10, 12, 20, 0.82) 100%);
  z-index: 1;
}

.reiseperlen-page-hero-inner {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 9rem 2rem 5rem;
  max-width: 760px;
  margin: 0 auto;
  color: #fff;
}

.rp-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.68rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 3.5px;
  color: rgba(204, 172, 100, 0.88);
  border: 1px solid rgba(204, 172, 100, 0.28);
  padding: 0.45rem 1.25rem;
  border-radius: 100px;
  margin-bottom: 1.75rem;
}

.reiseperlen-page-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(3.2rem, 7vw, 5.5rem);
  font-weight: 300;
  line-height: 1.05;
  color: #fff;
  letter-spacing: -0.02em;
  margin-bottom: 1.25rem;
}

.reiseperlen-page-hero h1 em {
  font-style: italic;
  color: rgba(204, 172, 100, 0.72);
}

.rp-hero-subtitle {
  font-size: 1.05rem;
  font-weight: 300;
  color: rgba(255,255,255,0.55);
  max-width: 520px;
  margin: 0 auto;
  line-height: 1.78;
}

/* Amber chapter nav */
.rp-chapter-nav {
  background: #111520;
  border-bottom: 1px solid rgba(204, 172, 100, 0.12);
}

.rp-chapter-nav .chapter-nav-inner {
  background: transparent;
  border: none;
}

.rp-chapter-nav .chapter-nav-label {
  color: rgba(204, 172, 100, 0.6);
  white-space: nowrap;
}

.rp-chapter-nav .chapter-nav-links a {
  color: rgba(255,255,255,0.42);
  border-color: rgba(255,255,255,0.07);
}

.rp-chapter-nav .chapter-nav-links a:hover {
  color: #fff;
  background: rgba(204, 172, 100, 0.1);
  border-color: rgba(204, 172, 100, 0.3);
}

/* Reiseperlen chapters */
.rp-chapter {
  background: #fff;
}

.rp-chapter:nth-child(even) {
  background: #faf8f4;
}

.rp-chapter .chapter-number {
  color: rgba(180, 140, 60, 0.28);
}

.rp-chapter .chapter-date {
  color: rgba(150, 110, 40, 0.8);
}

/* Reiseperlen chapter images */
.rp-chapter-images .destination-slideshow {
  height: 420px;
  border-radius: var(--radius-lg);
  overflow: hidden;
}

/* Location sub-headings */
.rp-location {
  font-family: var(--font-display);
  font-size: 1.55rem;
  font-weight: 400;
  color: #181c2a;
  margin: 2.25rem 0 0.65rem;
  letter-spacing: -0.01em;
}

/* Factbox */
.rp-factbox {
  background: #f5f2eb;
  border-left: 3px solid rgba(180, 140, 55, 0.48);
  padding: 1.1rem 1.4rem;
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  margin: 1.4rem 0;
  font-size: 0.92rem;
  color: var(--text-medium);
  line-height: 1.7;
}

.rp-factbox strong {
  font-weight: 600;
  color: var(--text-dark);
  display: block;
  margin-bottom: 0.35rem;
}

/* Dark bilanz box */
.rp-bilanz {
  background: linear-gradient(155deg, #111520 0%, #1a1d2e 100%);
  padding: 2.5rem 2.5rem;
  border-radius: var(--radius-xl);
  margin: 2.5rem 0 1.5rem;
}

.rp-bilanz p {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 300;
  line-height: 1.78;
  color: rgba(255,255,255,0.82);
  font-style: italic;
}

.rp-bilanz p em {
  color: rgba(204, 172, 100, 0.85);
  font-style: normal;
}

/* Italic quote */
.rp-quote {
  font-family: var(--font-display);
  font-size: 1.45rem;
  font-style: italic;
  color: rgba(150, 110, 40, 0.65);
  text-align: center;
  margin: 2.5rem 0;
  line-height: 1.5;
}

/* Gedankenschluss list */
.rp-thoughts {
  list-style: none;
  padding: 0;
  margin: 1.25rem 0;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.rp-thoughts li {
  display: flex;
  gap: 1rem;
  padding: 0.95rem 1.2rem;
  background: #f8f5f0;
  border-radius: var(--radius-sm);
  font-size: 0.91rem;
  line-height: 1.6;
  color: var(--text-medium);
}

.rp-thought-num {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 500;
  color: rgba(180, 140, 55, 0.6);
  min-width: 1.6rem;
  line-height: 1.25;
  flex-shrink: 0;
}

@media (max-width: 600px) {
  .reiseperlen-page-hero {
    min-height: 56vh;
  }
  .reiseperlen-page-hero h1 {
    font-size: 2.6rem;
  }
  .rp-chapter-images .destination-slideshow {
    height: 260px;
  }
  .rp-bilanz {
    padding: 1.75rem 1.5rem;
  }
}

