/* =========================================================
   CI DESIGN – BLACK / GOLD (#ffd01b) / GREY (#CCC)
   ========================================================= */

:root {
  --bg: #000;                         /* Hintergrund */
  --fg: #ddd;                         /* Standard Text */
  --fg-strong: #fff;                  /* Headlines */
  --muted: rgba(204,204,204,.7);      /* Sekundärer Text */
  --line: rgba(204,204,204,.18);      /* Linien / Divider */

  --accent: #ffd01b;                  /* CI Gold */
  --accent-soft: rgba(255,208,27,.35);
  --accent-glow: rgba(255,208,27,.22);
}

@font-face {
  font-family: "YouTubeSansDarkBold";
  src:
  url("../fonts/YouTubeSansDarkBold.woff") format("woff");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "YouTubeSansDarkRegular";
  src:
  url("../fonts/YouTubeSansDarkRegular.woff") format("woff");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

.text_gelb {color: #ffd01b !important;}
.text_schwarz {color: #000 !important;}

.extra-bold {
  font-weight: 700;
  text-shadow:
    0.03em 0 0 currentColor,
    -0.03em 0 0 currentColor,
    0 0.03em 0 currentColor,
    0 -0.03em 0 currentColor;
}

.punch-headline {
  font-size: 3.2rem;
  font-weight: 700;
  letter-spacing: 0.015em;
  text-shadow:
    0 0 12px rgba(255,208,27,.25),
    0.03em 0 0 currentColor,
    -0.03em 0 0 currentColor;
  color: #fff;
}














html { height: 100%; }
body {

  font-size: 1rem;
  line-height: 1.5;
    scroll-behavior: smooth;
}

.font0 {
  font-size: 6.0rem !important;    /* 44px */
  font-weight: 700;
  margin-bottom: 1rem;
}

.font1 {
  font-size: 5.0rem !important;    /* 44px */
  font-weight: 400;
  margin-bottom: 1rem;
}

.font2 {
  font-size: 3.0rem !important;    /* 36px */
  font-weight: 400;
  margin-bottom: 1rem;
}

.font3 {
  font-size: 1.875rem;   /* 30px */
  line-height: 1.25;
  font-weight: 400;
  margin-bottom: 0.8rem;
}

.font4 {
  font-size: 1.5rem;     /* 24px */
  line-height: 1.3;
  font-weight: 400;
  margin-bottom: 0.7rem;
}

.font5 {
  font-size: 1.25rem;    /* 20px */
  line-height: 1.35;
  font-weight: 400;
  margin-bottom: 0.6rem;
}

.font6 {
  font-size: 3rem;       /* 16px */
  line-height: 1.4;
  font-weight: 400;
  margin-bottom: 0.5rem;
}
  
.fontp {
  font-size: 1.4rem !important;    /* 20px */
  line-height: 1.20  !important;
  font-weight: 400;
  margin-bottom: 1.2rem;
  color: #DDD !important;
}

.bold {font-weight: 700 !important;}

body {
  background: var(--bg);
  color: var(--fg);
  font-family: "YouTubeSansDarkRegular", Arial, sans-serif;
  padding-top: 78px;
  }

strong, b {
  font-family: "YouTubeSansDarkBold", "YouTubeSansDarkRegular", Arial, sans-serif;
  font-weight: 700; /* damit kein Faux-Bold draufgerechnet wird */
}


.btn {
  line-height: 1; /* ohne !important */
  display: inline-flex;
  align-items: center;
  justify-content: center;
}



.btn-primary,
.btn-outline-light {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
}

.hero-buttons .btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  line-height: 1;            /* wichtig bei Fonts mit großen Metrics */
  padding-top: 0.65rem;      /* ggf. leicht anpassen */
  padding-bottom: 0.75rem;   /* dito */
}





/* ===== Custom Wide Container (Bootstrap-kompatibel) ===== */
.container-wide {
  width: 100%;
  padding-right: 80px;
  padding-left: 80px;
  margin-right: auto;
  margin-left: auto;
}



.nav-group-title {
  font-weight: 700;
  letter-spacing: 0.12em;
}


a {
  color: var(--fg);
  transition: color .2s ease;
}

a:hover {
  color: var(--accent);
  text-decoration: none;
}

/* ===== Typography ===== */
h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
}

p {
  color: var(--muted);
}

.youtube-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #ff0000;                 /* YouTube Rot */
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: rgba(255,255,255,.04);
  transition: color .25s ease, transform .2s ease;
}

/* Hover → Gold, Animation pausiert */
.youtube-btn:hover {
  color: var(--accent);
  animation-play-state: paused;
}

/* 🔔 Scale-Pulse alle 3 Sekunden */
.youtube-btn.pulse {
  animation: youtubeScalePulseSoft 3.2s cubic-bezier(.4,0,.2,1) infinite;
}

.youtube-icon {
  width: 55px;   /* 🔴 HIER Größe steuern */
  height: auto;
}

@keyframes youtubeScalePulseSoft {
  0% {
    transform: scale(1);
  }
  12% {
    transform: scale(1.2);
  }
  24% {
    transform: scale(1);
  }
  100% {
    transform: scale(1);
  }
}


/* ===== Header / Navigation ===== */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;      /* macht volle Breite */
  width: 100%;   /* zusätzliche Sicherheit */
  z-index: 2000;
  background: rgba(0,0,0,.94);
  backdrop-filter: blur(6px);
  border-bottom: 1px solid var(--line);
}


.navbar-dark .navbar-toggler {
  border: 2px solid rgba(204,204,204,1) !important;
    padding: 0.12rem 0.30rem !important;  /* HIER Abstand steuern */
}

.navbar-dark .navbar-toggler-icon {

  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 30 30' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath stroke='rgba(255,208,27,1)' stroke-width='2' stroke-linecap='round' d='M4 7h22M4 15h22M4 23h22'/%3E%3C/svg%3E");
}


.navbar {
  padding: .9rem 1rem;
}

.navbar-brand {
  display: flex;
  align-items: center;
  font-weight: 700;
  color: #fff;
}

.brand-logo {
  width: 250px;
}

.nav-shell {
  position: relative;
}


.navbar-toggler:focus {
  outline: none;
  box-shadow: none;
}

.navbar-toggler {
  margin-left: 1.5rem !important; /* z. B. 12px */
}

/* ===== Full-width Animated Menu ===== */
#mainNavCollapse {
  position: absolute;
  left: 0;
  right: 0;
  top: 100%;
  background: rgba(0,0,0,.97);
  border-bottom: 1px solid var(--line);
  box-shadow: 0 18px 40px rgba(0,0,0,.6);
}

.navbar .container-wide {
  flex-wrap: nowrap;
}

#mainNavCollapse.collapse {
  opacity: 0;
  transform: translateY(-8px);
  transition: opacity .22s ease, transform .22s ease;
}

#mainNavCollapse.collapse.show {
  opacity: 1;
  transform: translateY(0);
}

/* ===== Navigation Panel ===== */
.nav-panel {
  padding: 1.8rem 2rem 2.2rem;
}

.nav-group-title {
  color: var(--accent);
  font-size: .82rem;
  letter-spacing: .16em;
  text-transform: uppercase;
  margin-bottom: .6rem;
}

.nav-panel .nav-link {
  color: #ccc;
  padding: .55rem .9rem;
  border-radius: 10px;
  transition: background .2s ease;
}

.nav-panel .nav-link:hover {
  background: rgba(255,208,27,.12);
  color: #fff;
}

/* ===== Hero ===== */
.hero {
  padding: 5.5rem 0 3.5rem;
  border-bottom: 1px solid var(--line);
  background:
    radial-gradient(
      800px 260px at 20% 10%,
      rgba(255,255,255,.06),
      transparent 60%
    ),
    radial-gradient(
      700px 260px at 85% 10%,
      var(--accent-glow),
      transparent 62%
    );
}

/* ===== Buttons ===== */
.btn-primary {
  background: var(--accent);
  border-color: var(--accent);
  color: #000;
  border-radius: 999px;
  font-weight: 700;
  padding: .65rem 1.2rem;
}

.btn-primary:hover {
  background: #ffdc4d;
  border-color: #ffdc4d;
  color: #000;
}

.btn-outline-light {
  color: #ccc;
  border-color: #ccc;
  border-radius: 999px;
  padding: .65rem 1.2rem;
}

.btn-outline-light:hover {
  background: #ccc;
  color: #000;
}

/* ===== Sections ===== */
.section {
  padding: 3.2rem 0;
}

/* ===== Cards ===== */
.card-dark {
  background: rgba(255,255,255,.04);
  border: 1px solid var(--line);
  border-radius: 18px;
  color: #ccc;
  transition: box-shadow .25s ease, transform .25s ease;
}

.card-dark h5 {
  color: #fff;
}

.card-dark i {
  color: var(--accent);
}

.card-dark .card-text {
  color: var(--muted);
}

.card-dark:hover {
  transform: translateY(-2px);
  box-shadow:
    0 0 0 1px rgba(255,208,27,.15),
    0 12px 34px rgba(255,208,27,.14);
}

/* ===== Owl Carousel ===== */
.owl-theme .owl-controls .owl-page span {
  background: rgba(204,204,204,.4);
}

/* ===== Footer ===== */
footer {
  border-top: 1px solid var(--line);
  padding: 2rem 0;
  color: var(--muted);
}

footer a {
  color: #ccc;
}

footer a:hover {
  color: var(--accent);
}

/* ===== Hero Image Section ===== */
.hero-image1 {
  position: relative;
  height: 100vh;
  background: url("../bilder/hero/startseite.jpg") center center / cover no-repeat;
}

.hero-image2 {
  position: relative;
  height: 100vh;
  background: url("../bilder/hero/mofa-zu-motorrad.jpg") center center / cover no-repeat;
}








/* Overlay für Lesbarkeit */
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(0,0,0,.75) 0%,
    rgba(0,0,0,.55) 45%,
    rgba(0,0,0,.35) 100%
  );
}

/* Text links */
.hero-text h1 {
  font-size: 3rem;
  font-weight: 800;
  color: #fff;
}

.hero-text h2 {
  font-size: 1.4rem;
  font-weight: 400;
  margin-top: .75rem;
    color: #fff;

}

/* Buttons rechts */
.hero-buttons {
  display: flex;
  align-items: center;
}

/* Mobile Anpassung */
@media (max-width: 991px) {
  .hero-text,
  .hero-buttons {
    text-align: center;
    justify-content: center;
  }

  .hero-buttons {
    margin-top: 2rem;
  }
}


/* Buttons rechts & vertikal zentriert */
.hero-buttons {
  display: flex;
  align-items: center;
}

/* Mobile Anpassung */
@media (max-width: 767px) {
  .hero-buttons {
    justify-content: center;
    width: 100%;
  }

  .hero-buttons .btn {
    margin-bottom: .75rem;
  }
}



/* Meine Motorräder */



/* =========================================================
   BLOG / STORY LAYOUT – Bikes + Steckbrief
   ========================================================= */

.blog-wrap {
  padding: 3.5rem 0;
}

.bike-section {
  padding: 4rem 0;
  border-bottom: 0px solid var(--line);
  position: relative;
}

.bike-kicker {
  color: var(--accent);
  letter-spacing: .14em;
  text-transform: uppercase;
  font-size: .85rem;
  margin-bottom: .6rem;
}

.bike-title {
  margin-bottom: 1rem;
}

.bike-story p {
  color: var(--muted);
  line-height: 1.7;
  margin-bottom: 1rem;
}

/* Bild */
.bike-image {
  width: 100%;
  height: auto;
  border-radius: 18px;
  display: block;
  box-shadow: 0 18px 40px rgba(0,0,0,.45);
  border: 1px solid rgba(204,204,204,.12);
}

/* Optional: Bildunterschrift */
.bike-caption {
  margin-top: .8rem;
  color: rgba(204,204,204,.75);
  font-size: .95rem;
}

/* Steckbrief */
.bike-facts {
  margin-top: 1.25rem;
  padding: 1.2rem 1.4rem;
  border-radius: 14px;
  background: rgba(255,255,255,.04);
  border: 1px solid var(--line);
    display: block !important;   /* verhindert Flex-Vererbung */
}

.bike-facts-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: .85rem;
}

.bike-facts-title span {
  color: #fff;
  font-weight: 700;
}

.bike-facts-badge {
  font-size: .8rem;
  color: #000;
  background: var(--accent);
  border-radius: 999px;
  padding: .25rem .6rem;
  font-weight: 700;
}

.bike-facts-grid {
  position: relative; /* wichtig, damit die Trennlinie sich an diesem Container orientiert */
  display: grid !important;
  grid-template-columns: repeat(2, minmax(140px, 1fr));
  gap: .75rem 1.5rem;
}

/* Vertikale Trennlinie zwischen den beiden Spalten */
.bike-facts-grid::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: 1px;
  background: rgba(204,204,204,.25); /* dezente Linie in deinem CI */
  left: 50%;                          /* exakt mittig */
  transform: translateX(-50%);
}

.bike-facts-item {
  display: flex !important;
  justify-content: space-between;
  align-items: baseline;
  gap: 1rem;
  font-size: 1rem;
}

.bike-facts-item .label {
  color: rgba(204,204,204,.75);white-space: nowrap; 
}

.bike-facts-item .value {
  color: #fff;
  font-weight: 600;
  text-align: right;white-space: nowrap;
}

/* Kleine Kapitel-Trenner */
.story-divider {
  text-align: center;
  margin: 6rem 0 0rem; /* oben | rechts/links | unten */
  color: var(--accent);
  letter-spacing: 0.6em;
  font-size: 1.6rem; 
  opacity: .9;
}

#storyNav .nav-link.active {
  color: var(--accent) !important;
  font-weight: 700;
  transform: translateX(4px);
}

/* Mobile Feinschliff */
@media (max-width: 991px) {
  .bike-section { padding: 3rem 0; }
  .bike-facts-grid { grid-template-columns: 1fr; }
}

/* =========================================================
   GOLDENE KAPITELNUMMERN
   ========================================================= */

.bike-icon {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--accent);  /* Gold */
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: .6rem;
  box-shadow: 0 0 16px rgba(255,208,27,.32);
  flex-shrink: 0;
}

.bike-icon span {
  color: #000;
  font-weight: 800;
  font-size: 1.8rem;
  line-height: 1;
  margin-top: -1px; /* optische Zentrierung */
}

/* ===============================
   SCROLLSPY – SEITENNAVIGATION für meine motorräder
   =============================== */


#story-start-marker {
  height: 1px;
  margin-top: -1px; /* verhindert „Luftlöcher“ */
}

/* ===============================
   STORY-NAV: FADE + SLIDE IN LEFT
   =============================== */

.story-nav {
  position: fixed;
  top: 130px;
  left: 40px;
  width: 200px;
  z-index: 1500;
 display: none;
  opacity: 0;
  pointer-events: none;
  transform: translateX(-25px);

  transition: opacity .4s ease, transform .4s ease; 
}

.story-nav.visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateX(0);
}



.borderradius10 {border-radius: 10px;}

/* Außenrahmen mit Gold-Glow */
.gold-frame {
  display: inline-block;
  padding: 2px; /* Abstand zwischen Rahmen und Bild */
  
  border: 2px solid var(--accent); /* dünner Rahmen */
  border-radius: 18px;
}

/* Bild im Rahmen */
.gold-image {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 12px; /* leicht kleiner als 18px des Rahmens */
}


.profile 		{width: 100px;}


/* ===========================================
   FULLSCREEN BILD-TRENNER
   =========================================== */

.full-divider {
  width: 100vw;               /* echte Bildschirmbreite */
  margin-left: calc(50% - 50vw); /* sorgt dafür, dass er "aus dem Container raus" geht */
  margin-right: calc(50% - 50vw);
  
  height: 55vh;               /* Höhe des Trenners (55% der Bildschirmhöhe) */
  overflow: hidden;
  position: relative;
  border-top: 1px solid #555;
  border-bottom: 1px solid #555;
}

.full-divider-img {
  width: 100%;
  height: 100%;
  object-fit: cover;          /* Bild füllt die Fläche perfekt */
  display: block;
}

.full-divider-caption {
  display: block;
  width: 100%;
  text-align: right;
  color: var(--accent); /* Gold */
  font-size: 1rem;
  margin-top: 0.8rem;
  margin-bottom: 2rem;
  padding-right: 20px;
  opacity: .85;
}

/* ===========================================
   CUSTOM LIST – Gelber Punkt, keine doppelten Bullets
   =========================================== */
.custom-list {
  list-style: none;          /* verhindert Standardpunkte */
  padding-left: 0;
  margin-bottom: 1.6rem;
}

.custom-list li {
  position: relative;
  padding-left: 22px;        /* Abstand zwischen gelbem Punkt und Text */
  margin-bottom: 0.6rem;
  color: var(--muted);
}

.custom-list li::before {
  content: "";
  width: 10px;
  height: 10px;
  background: var(--accent);
  border-radius: 50%;
  position: absolute;
  left: 0;
  top: 0.55rem;               /* vertikal zentriert */
}

/* Goldene Blockquote */
.quote-gold {
  margin: 1.6rem 0;
  padding: 1rem 1.4rem;
  border-left: 4px solid var(--accent);
  background: rgba(255,208,27,.08);
  font-size: 1.3rem;
  color: #fff;
  font-style: italic;
  border-radius: 6px;
}




.tours-hero {
  position: relative;
  height: 55vh;
  background: url('bilder/hero/touren-hero.jpg') center/cover no-repeat;
  display: flex;
  align-items: center;
}

.tours-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
      90deg,
      rgba(0,0,0,.8),
      rgba(0,0,0,.55)
  );
}

.tours-hero-sub {
  color: var(--muted);
  font-size: 1.3rem;
  max-width: 580px;
  margin-top: .6rem;
}


.tour-grid-section {
  padding: 4rem 0;
}

.tour-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  gap: 2.4rem;
}















/* =============================
   TOUR CARDS – FINAL CLEAN VERSION
   ============================= */

/* Hauptkarte */
.tour-card {
  position: relative;
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;     /* Bild nie verzogen */
  border-radius: 18px;
  overflow: hidden;
  color: #fff;
  text-decoration: none;
  background: #000;
  box-shadow: 0 0 18px rgba(255,208,27,0.25);
  transition: transform .3s ease, box-shadow .3s ease;
  border: 1px solid #555;
}

.tour-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 0 30px rgba(255,208,27,0.45);
}

/* Bild */
.tour-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transition: transform .4s ease;
}

.tour-card:hover .tour-bg {
  transform: scale(1.06);
}

.tour-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0,0,0,.15),
    rgba(0,0,0,.35)
  );
  z-index: 1;
}

/* Text-Content */
.tour-content {
  position: absolute;
  bottom: 18px;
  left: 18px;
  right: 18px;
  z-index: 2;
}

.tour-content h3 {
  margin: 0 0 .6rem;
  font-size: 1.3rem;
  font-weight: 700;
  text-shadow: 0 0 10px rgba(0,0,0,.6);
}

/* Tags */
.tour-tags .tag {
  display: inline-block;
  padding: 4px 10px;
  background: var(--accent);
  color: #000;
  font-size: .8rem;
  border-radius: 999px;
  font-weight: 700;
  margin-right: .4rem;
}

/* NEU-Badge */
.tour-badge-new {
  position: absolute;
  top: 12px;
  left: 12px;
  background: var(--accent);
  color: #000;
  padding: 3px 10px;
  border-radius: 999px;
  font-weight: 700;
  font-size: .75rem;
  z-index: 5;
  box-shadow: 0 0 10px rgba(255,208,27,.45);
}


.tour-row > [class*="col-"] {
  padding-left: 40px;
  padding-right: 40px;
}

/* Vertikaler Abstand zwischen den Cards */
.tour-row > [class*="col-"] {
  margin-bottom: 60px;   /* ← hier Abstand zwischen den Reihen */
}

.container-wide .row {
  margin-left: 0 !important;
  margin-right: 0 !important;
}





body::before {
  content: "";
  position: fixed;
  inset: 0;
  background: url("../svg/street-animation.svg") center top / cover no-repeat;
  opacity: 0.05; /* 🔥 HIER Intensität einstellen */
  pointer-events: none;
  z-index: -1; /* bleibt hinter allem */
  transform: rotate(-15deg);
}

/* 🔥 MOBILE FIX – Hintergrund deaktivieren */
@media (max-width: 991px) {
  body::before {
    display: none !important;
  }
}





/* MOBILE: Padding reduzieren → endlich normale Smartphone-Breite */
@media (max-width: 767px) {
  .container-wide {
    padding-left: 4px;
    padding-right: 4px;
  }
}

/* Tablet */
@media (min-width: 768px) and (max-width: 991px) {
  .container-wide {
    padding-left: 8px;
    padding-right: 8px;
  }
}




/* Standard Bootstrap Breakpoints + breiter */
@media (min-width: 576px) {
  .container-wide { max-width: 540px; }
}
@media (min-width: 768px) {
  .container-wide { max-width: 720px; }
}
@media (min-width: 992px) {
  .container-wide { max-width: 1140px; } /* größer als container (960) */
}
@media (min-width: 1200px) {
  .container-wide { max-width: 1320px; } /* moderat, edel */
}
@media (min-width: 1600px) {
  .container-wide { max-width: 1480px; } /* optional für große Screens */
}

@media (min-width: 768px) {
  .nav-group-title {
    font-size: 0.95rem;
  }

  .nav-link {
    font-size: 1.05rem;
  }
}

@media (min-width: 992px) {
  .nav-group-title {
    font-size: 1.05rem;
  }

  .nav-link {
    font-size: 1.15rem;
  }
}

@media (min-width: 1200px) {
  .nav-group-title {
    font-size: 1.15rem ;
  }

  .nav-link {
    font-size: 1.25rem;
  }
}


@media (min-width: 1890px) {
  .story-nav {
    display: block;
  }
}

@media (max-width: 991px) {
  .bike-facts-grid {
    grid-template-columns: 1fr;
  }
  .bike-facts-grid::before {
    display: none; /* Linie ausblenden */
  }
}



































/* =============================
   HERO
============================= */

.hero-home {
  height: 55vh;
  background: url("bilder/hero/startseite.jpg") center/cover no-repeat;
  position: relative;
}

.hero-home::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,.55);
}

.hero-home .container-wide {
  position: relative;
  z-index: 2;
}

.hero-title {
  font-size: 3rem;
  font-weight: 800;
  color: #fff;
}

.hero-sub {
  font-size: 1.3rem;
  color: #ccc;
  margin-bottom: 1.8rem;
}

.border-divider {margin: 3rem 0 !important; border-bottom: 1px solid #555;}


/* =============================
   COMMUNITY
============================= */

.community-section {
  padding: 6rem 0;
  background: rgba(255,255,255,.03);
}






/* ============================================
   POLAROID DARK – korrekt, transparent, CI-Gold
   ============================================ */

.polaroid-dark {
  width: 300px;
  margin: 2.8rem auto;
  text-align: center;
  transform: rotate(-2deg);
}

/* Goldrahmen + innen 2px Abstand */
.polaroid-frame {
  display: inline-block;
  border: 2px solid var(--accent);    /* Gold */
  border-radius: 14px;
  padding: 2px;                       /* Abstand zwischen Goldrahmen & Bild */
  background: rgba(255,255,255,.05);            /* 🔥 Jetzt WIRKLICH transparent */
  box-shadow: 0 8px 28px rgba(0,0,0,.45);
}

/* Bild */
.polaroid-frame img {
  width: 100%;
  display: block;
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
}

/* Caption jetzt *inside* Rahmen */
.polaroid-caption {
  display: block;
  margin-top: 8px;
  padding-bottom: 6px;
  font-size: .85rem;
  color: var(--fg);
  opacity: .75;
  font-style: normal;
}




/* ================================
   BACK TO TOP BUTTON (CI STYLE)
   ================================ */
#backToTop {
  position: fixed;
  bottom: 28px;
  right: 28px;
  width: 54px;
  height: 54px;
  background: var(--accent);
  color: #000;
  border: none;
  border-radius: 50%;
  font-size: 1.6rem;
  font-weight: 900;
  cursor: pointer;
  box-shadow: 0 0 16px rgba(255,208,27,.35);
  display: none; /* Wird erst per JS angezeigt */
  align-items: center;
  justify-content: center;
  transition: transform .25s ease, box-shadow .25s ease;
  z-index: 9999;
  pointer-events: auto !important;
}

#backToTop:hover {
  transform: translateY(-4px);
  box-shadow: 0 0 24px rgba(255,208,27,.55);
}



.breadcrumb-wrap {
  margin: 1.2rem 0 1.6rem;
}

.breadcrumb {
  padding: 0;
  margin: 0;
  background: transparent;
  list-style: none;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
   text-transform: uppercase !important;
}

.breadcrumb li {
  display: flex;
  align-items: center;
}

.breadcrumb a {
  color: #ccc;
  text-decoration: none;
  font-size: 0.9rem;
}

.breadcrumb a:hover {
  color: var(--accent);
}

.breadcrumb .active a span {
  color: var(--accent);
  font-weight: 700;
}

.breadcrumb .separator {
  margin: 0 .45rem;
  color: #777;
  font-size: .9rem;
}

/* Breadcrumb – aktiver (letzter) Eintrag in Gold */
.breadcrumb li.active span[itemprop="name"] {
    color: var(--accent) !important;   /* Gold aus CI */
    font-weight: 700;                 /* leichter Bold-Effekt */
}









/* Wrapper */
.tour-facts {
  margin-top: 1.8rem;
  padding: 1.4rem 1.6rem;
  border-radius: 14px;
  background: rgba(255,255,255,.04);
  border: 1px solid var(--line);
  display: block;
}

/* Titelzeile */
.tour-facts-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: .9rem;
}

.tour-facts-title span {
  color: #fff;
  font-weight: 700;
  font-size: 1.1rem;
}

/* Badge */
.tour-facts-badge {
  font-size: .8rem;
  color: #000;
  background: var(--accent);
  border-radius: 999px;
  padding: .25rem .65rem;
  font-weight: 700;
}

/* Grid */
.tour-facts-grid {
  position: relative;
  display: grid;
  grid-template-columns: repeat(2, minmax(140px, 1fr));
  gap: .65rem 1.4rem;
}

/* vertikale Linie */
.tour-facts-grid::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: 1px;
  background: rgba(204,204,204,.25);
  left: 50%;
  transform: translateX(-50%);
}

/* Items */
.tour-facts-item {
  display: flex;
  justify-content: space-between;
  align-items: flex-start; /* wichtig für mehrzeilige Werte */
  gap: 1rem;
  font-size: 1rem;
}

.tour-facts-item .label {
  color: rgba(204,204,204,.75);
  white-space: nowrap; 
}

.tour-facts-item .value {
  color: #fff;
  font-weight: 600;
  text-align: right;
  white-space: normal;      /* 🔥 erlaubt Zeilenumbrüche */
  overflow-wrap: break-word; /* 🔥 verhindert Überlaufen */
  max-width: 90%;           /* verhindert Randberührung */
}


/* Mobile */
@media (max-width: 991px) {
  .tour-facts-grid {
    grid-template-columns: 1fr;
  }
  .tour-facts-grid::before {
    display: none;
  }
}




/* ===== Humorvoller Premium-Footer ===== */
.footer-humor {
  background: rgba(255,255,255,.03);
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 1rem;
}

.footer-title {
  color: #fff;
  font-weight: 700;
  font-size: 1.3rem;
  margin-bottom: 0.2rem;
}

.footer-about {
  color: var(--muted);
  line-height: 1.3;
  margin-bottom: 0.8rem;
}

.footer-humor-line {
  color: var(--accent);
  font-weight: 600;
  font-size: 0.95rem;
  margin-top: 1.2rem;
}

/* Motorrad-Trennlinie */
.footer-divider {
  text-align: center;
  margin-bottom: 1.6rem;
}

.moto-symbol {
  font-size: 2rem;
  color: var(--accent);
  opacity: .85;
}

/* Quicklinks */
.footer-list {
  list-style: none;
  padding-left: 0;
  margin-top: .5rem;
}

.footer-list li {
  margin-bottom: .5rem;
}

.footer-list a {
  color: #ccc;
}

.footer-list a:hover {
  color: var(--accent);
}

/* YouTube Button */
.youtube-footer-btn {
  display: inline-block;
  padding: .55rem 1.2rem;
  background: var(--accent);
  border-radius: 999px;
  color: #000 !important;
  font-weight: 700;
  text-decoration: none;
  box-shadow: 0 0 10px rgba(255,208,27,.3);
  transition: background .25s ease, box-shadow .25s ease;
}

.youtube-footer-btn:hover {
  background: #ffdc4d;
  box-shadow: 0 0 16px rgba(255,208,27,.5);
}

/* Legal */
.footer-legal {
  list-style: none;
  padding-left: 0;
}

.footer-legal li a {
  color: #ccc;
  font-size: .9rem;
}

.footer-legal li a:hover {
  color: var(--accent);
}

/* Copyright */
.footer-copy {
  border-top: 1px solid var(--line);
  color: rgba(204,204,204,.55);
  font-size: .9rem;
}

/* 4-Spalten Footer – Ergänzungen */

.footer-note {
  font-size: .9rem;
  color: var(--muted);
}

/* sorgt für saubere Spaltentrennung */
.footer-humor .col-md-3 {
  padding-right: 20px;
}

/* Bei schmalen Bildschirmen untereinander */
@media (max-width: 767px) {
  .footer-humor .col-md-3 {
    padding-right: 0;
    text-align: center;
  }
  .footer-title {
    margin-top: 1.5rem;
  }
}


@media (max-width: 767px) {
  .text-right {
    text-align: center !important;
  }
}


/* ================================
   DSGVO YouTube 2-Klick Lösung
   ================================ */

.yt2-wrapper {
  position: relative;
  width: 100%;
  aspect-ratio: 16/9;
  border-radius: 12px;
  overflow: hidden;
  cursor: pointer;
  background: #000;
  box-shadow: 0 0 20px rgba(255,208,27,.25);
  border: 1px solid rgba(255,255,255,.1);
}

.yt2-thumb {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.yt2-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
      rgba(0,0,0,.55),
      rgba(0,0,0,.70)
  );
  color: #fff;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 1rem;
  transition: background .25s ease;
}

.yt2-wrapper:hover .yt2-overlay {
  background: linear-gradient(
      rgba(0,0,0,.35),
      rgba(0,0,0,.55)
  );
}

.yt2-playbtn {
  font-size: 2.4rem;
  color: var(--accent);
  margin-bottom: .5rem;
  text-shadow: 0 0 14px rgba(255,208,27,.5);
}

.yt2-text {
  font-size: 1.1rem;
  color: #FFF;
  background-color: #000;
}

.yt2-text small {
  opacity: .65;
  font-size: .85rem;
  display: block;
  margin-top: .25rem;
}

/* Dunkle Input-Felder im Tourenreporter-CI */
.form-dark {
  background: rgba(255,255,255,.05);
  border: 1px solid var(--line);
  color: #fff;
  border-radius: 10px;
  padding: .55rem .75rem;
}

.form-dark:focus {
  background: rgba(255,255,255,.08);
  color: #fff;
  border-color: var(--accent);
  box-shadow: 0 0 0 2px rgba(255,208,27,.25);
}

.contact-form-wrapper {
  background: rgba(255,255,255,.04);
}

/* Unsichtbares Honeypot-Feld (Bots sehen es, Menschen nicht) */
.honeypot {
  display: none !important;
}




/* ============================================
   MOBILE FONT OPTIMIZATION (≤ 767px)
   M2 – PRO FINAL VERSION
   ============================================ */
@media (max-width: 767px) {

  /* Basis skalieren (150% → 125%) */
  html { font-size: 150%; }

  body {
    font-size: 1rem;
  }

  /* Headlines */
  .punch-headline { font-size: 2.0rem; }

  /* Optimierte Hierarchie – harmonisch & lesbar */
  .font0 { font-size: 2.6rem !important; }
  .font1 { font-size: 2.3rem !important; }
  .font2 { font-size: 1.85rem !important; }
  .font3 { font-size: 1.35rem; }
  .font4 { font-size: 1.22rem; }
  .font5 { font-size: 1.15rem; }
  .font6 { font-size: 1.05rem; } /* korrigiert → kein Monster-Font */
  
  /* Absatztext – angenehm lesbar */
  .fontp { font-size: 1.4rem !important; }

  /* Kleine Schriften */
  small {
    font-size: 1.1rem;
  }

  /* Navigation */
  .nav-group-title { font-size: 1.25rem; }
  .nav-panel .nav-link { font-size: 1.05rem; }

  /* Hero */
  .hero-text h1 { font-size: 1.9rem; }
  .hero-text h2 { font-size: 1.05rem; }

  .hero-title { font-size: 2.0rem; }
  .hero-sub { font-size: 1.05rem; }

  /* Motorräder & Stories */
  .bike-kicker { font-size: .75rem; }
  .bike-caption { font-size: .85rem; }
  .bike-facts-item { font-size: 1.05rem; }
  .story-divider { font-size: 1.2rem; }

  /* Tour-Cards */
  .tour-content h3 { font-size: 1.1rem; }
  .tour-tags .tag { font-size: .9rem; }
  .tour-badge-new { font-size: .7rem; }

  /* Tour Facts */
  .tour-facts-title span { font-size: 1rem; }
  .tour-facts-item { font-size: 1.05rem; }

  /* Polaroid */
  .polaroid-caption { font-size: .8rem; }

  /* DSGVO Video Overlay */
  .yt2-text { font-size: .92rem; }
  .yt2-text small { font-size: .72rem; }

  /* Footer */
  .footer-title { font-size: 1.15rem; }
  .footer-humor-line { font-size: .9rem; }
  .footer-list a { font-size: .9rem; }
  .footer-legal li a { font-size: .85rem; }
  .footer-copy { font-size: .85rem; }
  .footer-note { font-size: .85rem; }

  /* Buttons – klickbar, aber nicht zu groß */
  .btn {
    font-size: 1rem;
    margin-bottom: 1.6rem !important;
  }
}

