/* =============================================================================
   veloway.css  —  Warm Modern Redesign
   veloway.de   —  Fahrrad-Weltreise Stuttgart → Stuttgart
   Bootstrap 5.2.3  |  Stand: 2026
   =============================================================================

   SCHRIFTEN (alle lokal in /fonts/ ablegen):
     PermanentMarker-Regular.woff2  —  Markenname / Logo
     BebasNeue-Regular.woff2        —  Hero-Überschriften 
     PlayfairDisplay-Regular.woff2  —  Inhalts-Überschriften
     PlayfairDisplay-Bold.woff2
     PlayfairDisplay-Italic.woff2
     PlayfairDisplay-BoldItalic.woff2
     Lato-Regular.woff2             —  Fließtext
     Lato-Bold.woff2
     Lato-Italic.woff2
     Lato-Light.woff2

   LADEREIHENFOLGE im Template (tplHead):
     1. bootstrap.min.css
     2. veloway.css   ← diese Datei

   JS vor </body>:
     bootstrap.bundle.min.js
     veloway.js

   WELTKARTE:
     /assets/img/worldmap.svg  ← per FTP hochladen
   ============================================================================= */


/* =============================================================================
   0. LOKALE SCHRIFTEN
   ============================================================================= */

@font-face {
  font-family: 'Permanent Marker';
  src: url('/fonts/PermanentMarker-Regular.woff2') format('woff2');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Bebas Neue';
  src: url('/fonts/BebasNeue-Regular.woff2') format('woff2');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Playfair Display';
  src: url('/fonts/PlayfairDisplay-Regular.woff2') format('woff2');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Playfair Display';
  src: url('/fonts/PlayfairDisplay-Italic.woff2') format('woff2');
  font-weight: 400;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: 'Playfair Display';
  src: url('/fonts/PlayfairDisplay-Bold.woff2') format('woff2');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Playfair Display';
  src: url('/fonts/PlayfairDisplay-BoldItalic.woff2') format('woff2');
  font-weight: 700;
  font-style: italic;
  font-display: swap;
}

@font-face {
  font-family: 'Lato';
  src: url('/fonts/Lato-Light.woff2') format('woff2');
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Lato';
  src: url('/fonts/Lato-Regular.woff2') format('woff2');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Lato';
  src: url('/fonts/Lato-Italic.woff2') format('woff2');
  font-weight: 400;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: 'Lato';
  src: url('/fonts/Lato-Bold.woff2') format('woff2');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}


/* =============================================================================
   1. CSS CUSTOM PROPERTIES
   ============================================================================= */

:root {
  /* Hauptfarben */
  --vw-cream:           #FBF6EE;   /* Seitenhintergrund                      */
  --vw-cream-card:      rgba(255, 253, 248, 0.92); /* Inhalts-Karten         */
  --vw-cork:            #C4804A;   /* Markenfarbe / Akzent                   */
  --vw-cork-light:      #E8C49A;   /* Heller Akzent                          */
  --vw-orange:          #E8742A;   /* CTA-Buttons                            */
  --vw-orange-hover:    #CC5E18;   /* Button Hover                           */
  --vw-gold:            #FFD49A;   /* Navbar-Text auf Dunkel                 */
  --vw-gold-muted:      rgba(255, 212, 154, 0.60);

  /* Dunkle Töne */
  --vw-dark:            #1A0E04;   /* Navbar, Footer                         */
  --vw-dark-nav:        rgba(22, 12, 2, 0.88); /* Navbar transparent         */

  /* Text */
  --vw-text:            #2A1A0A;   /* Haupttext                              */
  --vw-text-muted:      #6B5040;   /* Sekundärtext                           */
  --vw-text-light:      #9A7A60;   /* Hints, Metadaten                       */

  /* Rahmen */
  --vw-border:          rgba(196, 128, 74, 0.20);
  --vw-border-strong:   rgba(196, 128, 74, 0.40);

  /* Schatten */
  --vw-shadow-sm:       0 1px 4px  rgba(42, 26, 10, 0.08);
  --vw-shadow:          0 2px 16px rgba(42, 26, 10, 0.12);
  --vw-shadow-lg:       0 4px 32px rgba(42, 26, 10, 0.18);

  /* Etappen-Farben */
  --vw-europa:          #C4804A;
  --vw-asien:           #6B9E8A;
  --vw-ozeanien:        #7A9EC4;
  --vw-amerika:         #C47A6B;

  /* Bootstrap überschreiben */
  --bs-primary:         #E8742A;
  --bs-primary-rgb:     232, 116, 42;
  --bs-link-color:      #C4804A;
  --bs-link-hover-color:#9A5C28;
  --bs-body-bg:         #FBF6EE;
  --bs-body-color:      #2A1A0A;
  --bs-body-font-family:'Lato', system-ui, sans-serif;
  --bs-body-font-size:  1.0625rem;
  --bs-body-line-height:1.78;
  --bs-border-color:    rgba(196, 128, 74, 0.20);
  --bs-border-radius:   4px;
  --bs-border-radius-lg:8px;

  /* Übergänge */
  --vw-transition:      0.22s ease;
}


/* =============================================================================
   2. RESET & BODY
   ============================================================================= */

*,
*::before,
*::after {
  box-sizing: border-box;
}

body {
  background-color: var(--vw-cream);
  color: var(--vw-text);
  font-family: 'Lato', system-ui, sans-serif;
  font-size: 1.0625rem;
  line-height: 1.78;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* Weltkarte als dezenter Hintergrund */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  background-image: url('/assets/img/worldmap.svg');
  background-size: 110% auto;
  background-position: center 40%;
  background-repeat: no-repeat;
  opacity: 0.06;        /* sehr dezent — nur als Umriss sichtbar */
  pointer-events: none;
  z-index: 0;
}

/* Alle direkten Kinder über der Karte */
body > * {
  position: relative;
  z-index: 1;
}


/* =============================================================================
   3. TYPOGRAFIE
   ============================================================================= */

h1, h2, h3, h4, h5, h6,
.h1, .h2, .h3, .h4, .h5, .h6 {
  font-family: 'Playfair Display', Georgia, serif;
  color: var(--vw-text);
  line-height: 1.2;
  font-weight: 700;
}

/* Display-Überschriften (Hero) auf Bebas Neue */
.display-1, .display-2, .display-3,
.display-4, .display-5, .display-6,
.vw-display {
  font-family: 'Bebas Neue', 'Playfair Display', Georgia, serif;
  letter-spacing: 0.03em;
  line-height: 1.0;
}

p {
  margin-bottom: 1.1rem;
}

a {
  color: var(--vw-cork);
  text-decoration: none;
  transition: color var(--vw-transition);
}
a:hover {
  color: #9A5C28;
}

blockquote,
.vw-quote {
  border-left: 3px solid var(--vw-cork);
  padding: 0.75rem 1.25rem;
  margin: 1.5rem 0;
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: 1.15rem;
  color: var(--vw-text-muted);
  background: rgba(196, 128, 74, 0.06);
  border-radius: 0 4px 4px 0;
}

/* Lauftext-Lead */
.lead {
  font-size: 1.125rem;
  font-weight: 300;
  color: var(--vw-text-muted);
  line-height: 1.85;
}


/* =============================================================================
   4. NAVBAR
   ============================================================================= */

.vw-navbar {
  background-color: var(--vw-dark-nav);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(232, 116, 42, 0.25);
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
  transition: background-color var(--vw-transition),
              box-shadow var(--vw-transition);
}

.vw-navbar.vw-navbar--scrolled {
  background-color: rgba(22, 12, 2, 0.97);
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.35);
}

/* Brand: Logo + Text nebeneinander */
.vw-brand {
  display: flex;
  align-items: center;
  gap: 1rem;
  text-decoration: none;
}
.vw-brand:hover { text-decoration: none; }

.vw-brand img {
  height: 52px;
  width: auto;
  filter: brightness(0) invert(1);
  opacity: 0.90;
  transition: opacity var(--vw-transition);
}
.vw-brand:hover img {
  opacity: 1.0;
}

.vw-brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1;
}

.vw-brand-name {
  font-family: 'Permanent Marker', cursive;
  font-size: 1.8rem;
  color: var(--vw-gold);
  letter-spacing: 0.01em;
}

.vw-brand-tagline {
  font-family: 'Lato', sans-serif;
  font-weight: 300;
  font-style: italic;
  font-size: 0.72rem;
  color: var(--vw-gold-muted);
  letter-spacing: 0.06em;
  margin-top: 1px;
}

/* Nav-Links */
.vw-navbar .nav-link {
  font-family: 'Lato', sans-serif;
  font-weight: 400;
  font-size: 0.8rem;
  color: rgba(255, 235, 200, 0.75);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.5rem 0.85rem;
  border-radius: 3px;
  transition: color var(--vw-transition),
              background var(--vw-transition);
}
.vw-navbar .nav-link:hover,
.vw-navbar .nav-link.active {
  color: var(--vw-gold);
  background: rgba(255, 212, 154, 0.08);
}

/* Dropdown */
.vw-dropdown {
  background-color: #1A0E04;
  border: 1px solid rgba(232, 116, 42, 0.25);
  border-radius: 6px;
  padding: 0.4rem 0;
  min-width: 200px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4);
}
.vw-dropdown .dropdown-item {
  font-family: 'Lato', sans-serif;
  font-size: 0.85rem;
  font-weight: 400;
  color: rgba(255, 235, 200, 0.75);
  padding: 0.45rem 1.1rem;
  letter-spacing: 0.04em;
  transition: background var(--vw-transition), color var(--vw-transition);
}
.vw-dropdown .dropdown-item:hover {
  background: rgba(255, 212, 154, 0.10);
  color: var(--vw-gold);
}

/* Hamburger */
.vw-navbar .navbar-toggler {
  border-color: rgba(255, 212, 154, 0.35);
  padding: 0.3rem 0.6rem;
}
.vw-navbar .navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255%2C212%2C154%2C0.85%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}


/* =============================================================================
   5. HERO-BEREICH
   ============================================================================= */

.vw-hero {
  position: relative;
  background-color: var(--vw-cork);
  background-image:
    repeating-linear-gradient(
      45deg,
      rgba(0, 0, 0, 0.025) 0,
      rgba(0, 0, 0, 0.025) 1px,
      transparent 0,
      transparent 50%
    );
  background-size: 10px 10px;
  min-height: 520px;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: 80px 0 60px;
}

/* Hero-Bild als Hintergrund (optional via data-hero-bg) */
.vw-hero--with-image {
  background-size: cover;
  background-position: center;
}
.vw-hero--with-image::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(22, 12, 2, 0.55);
}
.vw-hero--with-image .container {
  position: relative;
  z-index: 1;
}

/* Hero-Inhalts-Box */
.vw-hero-card {
  background: rgba(12, 6, 1, 0.65);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-radius: 8px;
  padding: 2.25rem 2.5rem 2rem;
  border: 1px solid rgba(255, 212, 154, 0.10);
  max-width: 600px;
}

.vw-hero-label {
  display: inline-block;
  background: var(--vw-orange);
  color: #fff;
  font-family: 'Lato', sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  padding: 3px 12px;
  border-radius: 2px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.vw-hero h1,
.vw-hero .vw-hero-title {
  font-family: 'Bebas Neue', 'Playfair Display', serif;
  font-size: clamp(3rem, 6vw, 5rem);
  font-weight: 400;
  color: #ffffff;
  line-height: 1.0;
  letter-spacing: 0.03em;
  margin-bottom: 0;
}
.vw-hero h1 span,
.vw-hero .vw-hero-title span {
  color: var(--vw-gold);
}

.vw-hero-sub {
  font-family: 'Lato', sans-serif;
  font-size: 0.92rem;
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.75;
  margin-top: 0.9rem;
  margin-bottom: 0;
}

/* Hero-Statistik-Karten */
.vw-hero-stats {
  display: flex;
  flex-direction: column;
  gap: 10px;
  min-width: 120px;
}

.vw-stat {
  background: rgba(255, 255, 255, 0.10);
  border: 1px solid rgba(255, 212, 154, 0.15);
  border-radius: 6px;
  padding: 0.75rem 1rem;
  text-align: center;
}

.vw-stat-number {
  font-family: 'Bebas Neue', 'Playfair Display', serif;
  font-size: 1.9rem;
  color: var(--vw-gold);
  line-height: 1;
  letter-spacing: 0.02em;
}

.vw-stat-label {
  font-family: 'Lato', sans-serif;
  font-size: 0.68rem;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.50);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-top: 3px;
}


/* =============================================================================
   6. BUTTONS
   ============================================================================= */

.vw-btn-primary {
  display: inline-block;
  background: var(--vw-orange);
  color: #ffffff;
  font-family: 'Lato', sans-serif;
  font-size: 0.82rem;
  font-weight: 700;
  padding: 0.65rem 1.5rem;
  border-radius: 4px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  text-decoration: none;
  transition: background var(--vw-transition),
              transform var(--vw-transition);
}
.vw-btn-primary:hover {
  background: var(--vw-orange-hover);
  color: #ffffff;
  transform: translateY(-1px);
}

.vw-btn-secondary {
  display: inline-block;
  background: transparent;
  color: rgba(255, 255, 255, 0.80);
  font-family: 'Lato', sans-serif;
  font-size: 0.82rem;
  font-weight: 400;
  padding: 0.65rem 1.35rem;
  border-radius: 4px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border: 1px solid rgba(255, 255, 255, 0.30);
  cursor: pointer;
  text-decoration: none;
  transition: border-color var(--vw-transition),
              color var(--vw-transition);
}
.vw-btn-secondary:hover {
  border-color: rgba(255, 212, 154, 0.60);
  color: var(--vw-gold);
}

/* Bootstrap btn überschreiben */
.btn-primary {
  background-color: var(--vw-orange);
  border-color: var(--vw-orange);
}
.btn-primary:hover {
  background-color: var(--vw-orange-hover);
  border-color: var(--vw-orange-hover);
}


/* =============================================================================
   7. INHALTS-KARTEN (.vw-content-sheet)
   ============================================================================= */

.vw-content-sheet {
  background: var(--vw-cream-card);
  border-radius: 8px;
  padding: 2.25rem 2.5rem;
  border: 1px solid var(--vw-border);
  box-shadow: var(--vw-shadow);
  margin-bottom: 2rem;
}

.vw-content-sheet h1 { font-size: 2.4rem; margin-bottom: 1.2rem; }
.vw-content-sheet h2 { font-size: 1.8rem; margin-top: 2rem; margin-bottom: 0.9rem; }
.vw-content-sheet h3 { font-size: 1.4rem; margin-top: 1.5rem; margin-bottom: 0.7rem; }

/* Horizontale Trennlinie im Inhalt */
.vw-content-sheet hr {
  border: none;
  border-top: 1px solid var(--vw-border);
  margin: 2rem 0;
}


/* =============================================================================
   8. ETAPPEN-KARTEN
   ============================================================================= */

.vw-card {
  background: var(--vw-cream-card);
  border: 1px solid var(--vw-border);
  border-radius: 8px;
  box-shadow: var(--vw-shadow-sm);
  overflow: hidden;
  transition: transform var(--vw-transition),
              box-shadow var(--vw-transition);
  height: 100%;
}
.vw-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--vw-shadow-lg);
}

.vw-card-img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  display: block;
}

.vw-card-body {
  padding: 1.25rem 1.4rem;
}

.vw-card-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--vw-text);
  margin-bottom: 0.5rem;
}

.vw-card-text {
  font-size: 0.9rem;
  color: var(--vw-text-muted);
  line-height: 1.65;
  margin-bottom: 0;
}

.vw-card-footer {
  padding: 0.75rem 1.4rem;
  background: rgba(196, 128, 74, 0.05);
  border-top: 1px solid var(--vw-border);
  font-size: 0.8rem;
  color: var(--vw-text-light);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* Kontinent-Streifen oben an Karte */
.vw-card--europa  { border-top: 3px solid var(--vw-europa); }
.vw-card--asien   { border-top: 3px solid var(--vw-asien); }
.vw-card--ozean   { border-top: 3px solid var(--vw-ozeanien); }
.vw-card--amerika { border-top: 3px solid var(--vw-amerika); }


/* =============================================================================
   9. BADGES & LABELS
   ============================================================================= */

.vw-badge {
  display: inline-block;
  font-family: 'Lato', sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 2px;
  letter-spacing: 0.10em;
  text-transform: uppercase;
}

.vw-badge--cork    { background: var(--vw-cork);    color: #fff; }
.vw-badge--orange  { background: var(--vw-orange);  color: #fff; }
.vw-badge--europa  { background: var(--vw-europa);  color: #fff; }
.vw-badge--asien   { background: var(--vw-asien);   color: #fff; }
.vw-badge--ozean   { background: var(--vw-ozeanien);color: #fff; }
.vw-badge--amerika { background: var(--vw-amerika); color: #fff; }

/* Kontinent-Streifen (Karten-Header-Linie) */
.vw-continent-bar {
  height: 3px;
  width: 40px;
  border-radius: 2px;
  display: inline-block;
  margin-bottom: 0.5rem;
}


/* =============================================================================
   10. ETAPPEN-ÜBERSICHT — Kontinent-Reihen
   ============================================================================= */

.vw-region-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid var(--vw-border);
}

.vw-region-header h2 {
  font-size: 1.5rem;
  margin: 0;
}

.vw-region-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  flex-shrink: 0;
}

.vw-region-dot--europa  { background: var(--vw-europa); }
.vw-region-dot--asien   { background: var(--vw-asien); }
.vw-region-dot--ozean   { background: var(--vw-ozeanien); }
.vw-region-dot--amerika { background: var(--vw-amerika); }


/* =============================================================================
   11. TIMELINE
   ============================================================================= */

.vw-timeline {
  position: relative;
  padding-left: 2rem;
}

.vw-timeline::before {
  content: '';
  position: absolute;
  left: 0.45rem;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(
    to bottom,
    var(--vw-cork),
    var(--vw-asien) 40%,
    var(--vw-ozeanien) 70%,
    var(--vw-amerika)
  );
  opacity: 0.35;
}

.vw-timeline-item {
  position: relative;
  margin-bottom: 2.5rem;
}

.vw-timeline-item::before {
  content: '';
  position: absolute;
  left: -1.6rem;
  top: 0.4rem;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--vw-cork);
  border: 2px solid var(--vw-cream);
  box-shadow: 0 0 0 1px var(--vw-cork);
}

.vw-timeline-date {
  font-family: 'Lato', sans-serif;
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--vw-cork);
  text-transform: uppercase;
  letter-spacing: 0.10em;
  margin-bottom: 0.3rem;
}

.vw-timeline-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--vw-text);
  margin-bottom: 0.4rem;
}


/* =============================================================================
   12. GALERIE
   ============================================================================= */

.vw-gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 0.75rem;
}

.vw-gallery-item {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  border-radius: 6px;
  cursor: pointer;
  background: rgba(196, 128, 74, 0.15);
}

.vw-gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
  display: block;
}

.vw-gallery-item:hover img {
  transform: scale(1.05);
}

.vw-gallery-item::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(22, 12, 2, 0);
  transition: background var(--vw-transition);
}

.vw-gallery-item:hover::after {
  background: rgba(22, 12, 2, 0.20);
}


/* =============================================================================
   13. KARTE (Leaflet)
   ============================================================================= */

.vw-map-container {
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid var(--vw-border);
  box-shadow: var(--vw-shadow);
}

.vw-leaflet-map {
  height: 480px;
  width: 100%;
  background: #e8e0d8;
}


/* =============================================================================
   14. FOOTER
   ============================================================================= */

.vw-footer {
  background-color: var(--vw-dark);
  color: rgba(255, 255, 255, 0.45);
  padding: 2.5rem 0 1.5rem;
  margin-top: 4rem;
}

.vw-footer-brand {
  font-family: 'Permanent Marker', cursive;
  font-size: 1.5rem;
  color: rgba(255, 212, 154, 0.45);
  margin-bottom: 0.4rem;
}

.vw-footer-tagline {
  font-family: 'Lato', sans-serif;
  font-size: 0.78rem;
  font-style: italic;
  color: rgba(255, 212, 154, 0.28);
  letter-spacing: 0.05em;
}

.vw-footer a {
  color: rgba(255, 212, 154, 0.50);
  transition: color var(--vw-transition);
}
.vw-footer a:hover {
  color: var(--vw-gold);
}

.vw-footer-divider {
  border-color: rgba(255, 255, 255, 0.08);
  margin: 1.5rem 0 1rem;
}

.vw-footer-copy {
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.28);
}


/* =============================================================================
   15. INFO-BOX
   ============================================================================= */

.vw-info-box {
  background: rgba(196, 128, 74, 0.08);
  border-left: 3px solid var(--vw-cork);
  border-radius: 0 6px 6px 0;
  padding: 1rem 1.25rem;
  margin: 1.5rem 0;
  font-size: 0.92rem;
  color: var(--vw-text-muted);
}

.vw-info-box--tip {
  background: rgba(107, 158, 138, 0.10);
  border-left-color: var(--vw-asien);
}


/* =============================================================================
   16. SCROLL-ANIMATIONEN
   ============================================================================= */

.vw-fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}
.vw-fade-in.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.vw-slide-up {
  opacity: 0;
  transform: translateY(35px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.vw-slide-up.is-visible {
  opacity: 1;
  transform: translateY(0);
}


/* =============================================================================
   17. BACK-TO-TOP BUTTON
   ============================================================================= */

.vw-back-to-top {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 42px;
  height: 42px;
  background: var(--vw-orange);
  color: #fff;
  border: none;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 12px rgba(232, 116, 42, 0.45);
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--vw-transition), transform var(--vw-transition);
  z-index: 1000;
}
.vw-back-to-top.is-visible {
  opacity: 1;
  pointer-events: auto;
}
.vw-back-to-top:hover {
  transform: translateY(-2px);
}


/* =============================================================================
   18. LESEFORTSCHRITT
   ============================================================================= */

.vw-reading-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 3px;
  background: var(--vw-orange);
  width: 0%;
  transition: width 0.1s linear;
  z-index: 2000;
}


/* =============================================================================
   19. FORMULAR
   ============================================================================= */

.vw-form .form-control,
.vw-form .form-select {
  border-color: var(--vw-border-strong);
  background-color: rgba(255, 253, 248, 0.80);
  color: var(--vw-text);
  border-radius: 4px;
}
.vw-form .form-control:focus,
.vw-form .form-select:focus {
  border-color: var(--vw-cork);
  box-shadow: 0 0 0 3px rgba(196, 128, 74, 0.18);
  background-color: #fff;
}
.vw-form label {
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--vw-text-muted);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 0.3rem;
}


/* =============================================================================
   20. UTILITIES
   ============================================================================= */

.vw-text-cork    { color: var(--vw-cork) !important; }
.vw-text-orange  { color: var(--vw-orange) !important; }
.vw-text-gold    { color: var(--vw-gold) !important; }
.vw-text-muted   { color: var(--vw-text-muted) !important; }

.vw-bg-dark      { background-color: var(--vw-dark); }
.vw-bg-cream     { background-color: var(--vw-cream); }

.vw-border-cork  { border-color: var(--vw-cork) !important; }

.vw-font-display { font-family: 'Bebas Neue', 'Playfair Display', serif; }
.vw-font-marker  { font-family: 'Permanent Marker', cursive; }
.vw-font-serif   { font-family: 'Playfair Display', serif; }

/* Bild-Fehler-Platzhalter */
img.vw-img-error {
  background: rgba(196, 128, 74, 0.10);
  border: 1px solid var(--vw-border);
  border-radius: 4px;
}

/* Bootstrap-Container leicht enger */
@media (min-width: 1400px) {
  .container, .container-xl { max-width: 1280px; }
}


/* =============================================================================
   21. RESPONSIVE
   ============================================================================= */

/* Tablet */
@media (max-width: 991px) {
  .vw-hero {
    padding: 60px 0 48px;
    min-height: 420px;
  }
  .vw-hero-card {
    padding: 1.75rem 1.75rem 1.5rem;
  }
  .vw-hero h1,
  .vw-hero .vw-hero-title {
    font-size: 3rem;
  }
  .vw-hero-stats {
    flex-direction: row;
    min-width: auto;
    justify-content: flex-start;
    margin-top: 1.5rem;
  }
  .vw-stat {
    flex: 1;
    min-width: 80px;
  }
  .vw-content-sheet {
    padding: 1.75rem 1.75rem;
  }
  /* Weltkarte auf Tablet etwas kleiner */
  body::before {
    background-size: 150% auto;
    opacity: 0.05;
  }
}

/* Mobile */
@media (max-width: 575px) {
  .vw-brand-name {
    font-size: 1.5rem;
  }
  .vw-brand-tagline {
    display: none;
  }
  .vw-brand img {
    height: 40px;
  }
  .vw-hero {
    padding: 50px 0 40px;
    min-height: 360px;
  }
  .vw-hero h1,
  .vw-hero .vw-hero-title {
    font-size: 2.4rem;
  }
  .vw-hero-card {
    padding: 1.4rem 1.4rem 1.2rem;
  }
  .vw-content-sheet {
    padding: 1.25rem 1.25rem;
  }
  .vw-gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .vw-back-to-top {
    bottom: 1.2rem;
    right: 1.2rem;
  }
  /* Weltkarte auf Mobile ausblenden — zu klein */
  body::before {
    opacity: 0.03;
    background-size: 200% auto;
  }
}