/* =================COPYRIGHT================= */
/* Entwicklung & Umsetzung                     */
/* (c)2025 Agentur Hundertmarck                */
/* www.hundertmarck.com                        */
/* =========================================== */

	:root {
	  --color-primary: #8442c5; /* 624994 */ /*as #f07e00 */
	  --color-primary-hover: #6d34a3; /*as #dd7400 */
	  --color-primary-light: #f6f0fb;
    --color-gray: #444;
    --color-lightgray: rgb(224, 224, 224);
    	--navbar-offset: 100px; /* Desktop */
	}
	
	@media (max-width: 991.98px) {
	  :root {
		--navbar-offset: 100px; /* Mobile */
	  }
	}

  html, body {
    max-width: 100%;
    overflow-x: hidden;
  }
  
	body {
	  font-family: 'Segoe UI', Roboto, Arial, sans-serif;
	  background: linear-gradient(135deg, #f9f9f9 0%, #fff 100%);
    padding-top : 98px;
	}
  
  #programm, #aussteller { scroll-margin-top: 80px; }

/* ===== NAVBAR ===== */
  .navbar {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(8px);
    border-bottom: 3px solid var(--color-primary);
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
    padding-top: 0.8rem;
    padding-bottom: 0.8rem;
  }
  
  .navbar-brand img {
    height: 60px;
  }
  
  /* Links */
  .nav-link {
    color: var(--color-gray) !important;
    font-weight: 600;
    position: relative;
    padding: 15px 20px !important;
    transition: color 0.3s ease;
    font-size: 1.1rem;
    outline: none !important;
    box-shadow: none !important;
    -webkit-tap-highlight-color: transparent;
  }
  .nav-link:focus,
  .nav-link:active {
    outline: none !important;
    box-shadow: none !important;
  }
  
  /* Balken unter Menüpunkt – immer Primärfarbe */
  .nav-link::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;             /* sitzt direkt am unteren Rand des Links */
    width: 100%;
    height: 3px;
    background: var(--color-primary);
    color: var(--color-primary);
    transform: scaleX(0);
    transform-origin: center;
    transition: transform 0.3s ease;
  }
  .nav-link:hover::after,
  .nav-link.active::after,
  .nav-item.show > .nav-link::after {
    transform: scaleX(1);
  }
  
  
  
  /* ===== Dropdowns – sanftes „Ausrollen“ ohne JS ===== */
  /* Ausgangszustand: eingefaltet per scaleY */
.navbar .dropdown-menu {
    display: block;              /* im Flow lassen */
    transform-origin: top;
    transform: scaleY(0);
    opacity: 0;
    visibility: hidden;
    overflow: hidden;
    margin-top: 0;
    padding: 0;                  /* animiert „hinein“ */
    border: none;
    border-radius: 10px;
    background: #fff;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    text-align: left;
    will-change: transform, opacity; /* sorgt für flüssigeres Rendering */
    transition:
      transform 0.35s ease,
      opacity 0.35s ease,
      visibility 0.35s ease,
      padding 0.2s ease;
  }
  
  /* Offen-Zustand: aufgefaltet */
.navbar .dropdown-menu.show {
    transform: scaleY(1);
    opacity: 1;
    visibility: visible;
    padding: 0.5rem;             /* kommt sanft dazu */
  }
  
  /* Dropdown-Items */
  .dropdown-item {
    border-radius: 8px;
    padding: 10px 12px;
    transition: background-color 0.2s ease, color 0.2s ease;
  }
  .dropdown-item:hover,
  .dropdown-item:focus {
    background: var(--color-primary);
    color: #fff;
    outline: none !important;
    box-shadow: none !important;
  }
  
/* ===== MOBILE OPTIMIERUNG ===== */
  @media (max-width: 991.98px) {
    .navbar-nav {
      text-align: center;
    }
  
    .navbar-nav .nav-item {
      display: block;
      margin: 6px 0;
    }
    
  /* Basis: keine Transition -> Schließen ohne Animation */
    .nav-link::after {
      transition: none;
    }
    
    /* Öffnen/Hover/Aktiv: animiert AUSFAHREN */
    .nav-link:hover::after,
    .nav-link.active::after,
    .nav-item.show > .nav-link::after {
      transition: transform 0.3s ease; /* nur fürs Ausfahren */
    }
  
    /* Dropdown-Menü mobil: keine Lücke, wenn geschlossen */
    .navbar .dropdown-menu {
      position: static !important;
      width: 100%;
      margin-top: 0;
      box-shadow: none;
      text-align: center;
      transform-origin: top;
      transform: scaleY(0);
      opacity: 0;
      visibility: hidden;
      max-height: 0;             /* verhindert Platzreservierung */
      padding: 0;
      overflow: hidden;
      transition:
        transform 0.35s ease,
        opacity 0.35s ease,
        max-height 0.35s ease,
        padding 0.25s ease;
    }
  
    /* Offen: sanft ausrollen */
    .navbar .dropdown-menu.show {
      transform: scaleY(1);
      opacity: 1;
      visibility: visible;
      max-height: 400px;
      padding: 0.5rem;
    }
  }
  
/* ===== Navbar Toggler – CI Stil ===== */
  .navbar-toggler {
    border: none;
    padding: 0;
    background: transparent;
  }
  .navbar-toggler:focus {
    box-shadow: none;
  }
  
  /* Grundform (geschlossen / Standardzustand) */
  .toggler-box {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 70px;
    height: 48px;
    border-radius: 30px;
    background: var(--color-primary);
    border: 1.5px solid var(--color-primary);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    transition:
      transform 0.3s ease,
      box-shadow 0.3s ease,
      background-color 0.3s ease,
      border-color 0.3s ease;
  }
  
  /* Hover-Effekt (nur auf Desktop-Geräten mit Maus) */
  @media (hover: hover) and (pointer: fine) {
    .navbar-toggler:hover .toggler-box {
      background: var(--color-primary-hover);
      border-color: var(--color-primary-hover);
      transform: translateY(-1px) scale(1.05);
      box-shadow: 0 8px 20px rgba(0,0,0,0.18);
    }
  }
  
  /* Klickanimation */
  .navbar-toggler:active .toggler-box {
    transform: scale(0.96);
  }
  
  /* Linien im Burger */
  .toggler-bar {
    position: absolute;
    width: 24px;
    height: 2px;
    background: #fff;
    border-radius: 2px;
    transition: transform 0.3s ease, opacity 0.2s ease;
  }
  .toggler-bar.top    { transform: translateY(-6px); }
  .toggler-bar.middle { transform: translateY(0); }
  .toggler-bar.bottom { transform: translateY(6px); }
  
  /* OFFEN (wenn Bootstrap .collapsed entfernt hat) */
  .navbar-toggler:not(.collapsed) .toggler-box {
    background: var(--color-primary-hover);
    border-color: var(--color-primary-hover);
    transform: translateY(-1px) scale(1.05);
    box-shadow: 0 10px 24px rgba(0,0,0,0.2);
  }
  
  /* Linien zu X-Form */
  .navbar-toggler:not(.collapsed) .toggler-bar.top {
    transform: rotate(45deg);
  }
  .navbar-toggler:not(.collapsed) .toggler-bar.middle {
    opacity: 0;
  }
  .navbar-toggler:not(.collapsed) .toggler-bar.bottom {
    transform: rotate(-45deg);
  }
  
  /* Bootstrap Default Icon entfernen */
  .navbar-toggler .navbar-toggler-icon {
    display: none;
  }
  
  
  
  /* ===== CI-ALERTS (Primary & Secondary) ===== */
  
  /* Grundstruktur – gemeinsames Design */
  .alert {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    border-radius: 14px;
    padding: 1rem 1.25rem;
    font-size: 1rem;
    font-weight: 500;
    border: none;
    margin-bottom: 1rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease, background-color 0.3s ease;
    box-shadow: 0 6px 16px rgba(0,0,0,0.08);
  }
  
  /* Icon links */
  .alert i {
    font-size: 1.4rem;
    flex-shrink: 0;
    line-height: 1;
  }
  
  /* Text */
  .alert p {
    margin: 0;
    flex: 1;
  }
  
  
  /* Alerts – Animation + Layout */
  .alert {
    display:flex;
    align-items:flex-start;
    gap:.5rem;
    margin:0;
  }
  .alert i { font-size:1.15rem; line-height:1.15rem; }
  
  @keyframes alert-fade-up {
    from { opacity:0; transform: translateY(6px); }
    to   { opacity:1; transform: translateY(0); }
  }
  .alert-animate-in {
    animation: alert-fade-up .34s ease both;
  }
  @media (prefers-reduced-motion: reduce) {
    .alert-animate-in { animation: none; }
  }

  
  /* ===== PRIMARY Alert (heller Stil, wie Content-Card) ===== */
  .alert-primary {
    background: #fff;
    color: var(--color-gray);
  }
  
  .alert-primary i {
    color: var(--color-primary);
  }
  
  /* Hover-Effekt */
  .alert-primary:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 24px rgba(0,0,0,0.15);
  }
  
  /* ===== SECONDARY Alert (invertiert mit CI-Farbe) ===== */
  .alert-secondary {
    background: var(--color-primary);
    color: #fff;
    box-shadow: 0 8px 22px rgba(0,0,0,0.12);
  }
  
  .alert-secondary i {
    color: #fff;
  }
  
  /* Hover-Effekt */
  .alert-secondary:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 28px rgba(0,0,0,0.2);
  }
  
  
	/* ===== CTA BUTTON ===== */
	.btn-cta {
	  background: var(--color-primary);
	  color: #fff;
	  font-weight: bold;
	  border-radius: 30px;
	  padding: 10px 25px;
	  transition: all 0.3s;
	  box-shadow: 0 4px 12px rgba(0,0,0,0.2);
	  font-size: 1.1rem;
	}
	.btn-cta:hover {
	  background: var(--color-primary-hover);
	  transform: scale(1.05);
	  color : white;
	}
  .btn-cta:active {
    background: var(--color-primary-hover) !important;
    box-shadow: 0 4px 12px rgba(0,0,0,0.2) !important;
    border-color: var(--color-primary-hover) !important;
    color : white !important;
  }
	
/* Outline-Variante */ 
 .btn-cta-outline {
   background: transparent;
   color: var(--color-primary);
   font-weight: bold;
   border: 2px solid var(--color-primary);
   border-radius: 30px;
   padding: 10px 25px;
   font-size: 1.1rem;
   box-shadow: 0 4px 12px rgba(0,0,0,0.1);
   transition: all 0.3s ease;
 }
 
 .btn-cta-outline:hover {
   background: var(--color-primary);
   color: #fff;
   transform: scale(1.05);
   box-shadow: 0 8px 18px rgba(0,0,0,0.2);
 }
 
 .btn-cta-outline:active {
   transform: scale(1);
   box-shadow: 0 3px 8px rgba(0,0,0,0.15);
 }
 
 /* Optionale Fokus-Optik für Tastaturnutzer */
 .btn-cta-outline:focus-visible {
   outline: none;
   box-shadow: 0 0 0 4px rgba(132, 66, 197, 0.3);
 }
 
 /* Kleinere Variante für CTA-Buttons */
 .btn-sm-cta {
   padding: 7px 18px !important;
   font-size: 0.95rem !important;
   border-radius: 24px !important;
   box-shadow: 0 2px 8px rgba(0,0,0,0.15) !important;
 }
 
 .btn-sm-cta:hover {
   transform: scale(1.05);
   box-shadow: 0 4px 12px rgba(0,0,0,0.2) !important;
 }
 
 
/* ===== Checkbox Basis ===== */
 .form-check-input.checkbox {
   appearance: none;
   -webkit-appearance: none;
   width: 1.15rem;
   height: 1.15rem;
   border: 2px solid var(--color-primary);
   border-radius: 6px;
   background: #fff;
   cursor: pointer;
   position: relative;
   transition:
	 background-color .25s ease,
	 border-color .25s ease,
	 box-shadow .25s ease,
	 transform .15s ease;
   box-shadow: 0 2px 8px rgba(0,0,0,.06);
 }
 
 /* Hover-Effekt */
 .form-check-input.checkbox:hover {
   transform: translateY(-1px);
   box-shadow: 0 6px 16px rgba(0,0,0,.10);
 }
 
 /* Fokus (z. B. mit Tab erreicht) */
 .form-check-input.checkbox:focus-visible {
   box-shadow:
	 0 0 0 3px rgba(132,66,197,.25),
	 0 4px 12px rgba(0,0,0,.10);
 }
 
 /* Checked-Zustand */
 .form-check-input.checkbox:checked {
   background: var(--color-primary);
   border-color: var(--color-primary);
 }
 
 /* Weißer Haken */
 .form-check-input.checkbox:checked::after {
   content: "";
   position: absolute;
   top: 12%;
   left: 33%;
   width: 0.32em;
   height: 0.62em;
   border: solid #fff;
   border-width: 0 0.18em 0.18em 0;
   transform: rotate(45deg);
 }
 
 /* Hover bei aktiviertem Zustand */
 .form-check-input.checkbox:checked:hover {
   background: var(--color-primary-hover);
   border-color: var(--color-primary-hover);
 }
 
 /* Deaktiviert */
 .form-check-input.checkbox:disabled {
   cursor: not-allowed;
   opacity: .6;
   box-shadow: none;
 }
 .form-check-input.checkbox:disabled + .form-check-label {
   opacity: .75;
   cursor: not-allowed;
 }
 
 /* ===== Größenvarianten ===== */
 .form-check-input.checkbox-sm {
   width: .95rem !important;
   height: .95rem !important;
   border-radius: 5px;
 }
 
 .form-check-input.checkbox-lg {
   width: 1.35rem !important;
   height: 1.35rem !important;
   border-radius: 7px;
 }
 
 /* ===== Struktur & Label ===== */
 .form-check.custom {
   margin-bottom: .6rem;
 }
 
 .form-check.custom .form-check-label {
   color: var(--color-gray, #555);
   cursor: pointer;
   user-select: none;
 }
 
 
 
 /* ===== Radio Basis ===== */
 .form-check-input.radio {
   appearance: none;
   -webkit-appearance: none;
   width: 1.15rem;
   height: 1.15rem;
   border: 2px solid var(--color-primary);
   border-radius: 50%;
   background: #fff;
   cursor: pointer;
   position: relative;
   transition:
	 background-color .25s ease,
	 border-color .25s ease,
	 box-shadow .25s ease,
	 transform .15s ease;
   box-shadow: 0 2px 8px rgba(0,0,0,0.06);
 }
 
 /* Hover: sanft anheben */
 .form-check-input.radio:hover {
   transform: translateY(-1px);
   box-shadow: 0 6px 16px rgba(0,0,0,0.10);
 }
 
 /* Fokus-Ring (Tastatur) */
 .form-check-input.radio:focus-visible {
   box-shadow:
	 0 0 0 3px rgba(132,66,197,.25),
	 0 4px 12px rgba(0,0,0,.10);
 }
 
 /* Checked: Fläche in Primary */
 .form-check-input.radio:checked {
   background: var(--color-primary);
   border-color: var(--color-primary);
 }
 
 /* Innerer Punkt – animiert, ohne SVG */
 .form-check-input.radio::after {
   content: "";
   position: absolute;
   top: 50%;
   left: 50%;
   width: .55em;                /* skaliert mit Gesamtgröße */
   height: .55em;
   background: #fff;
   border-radius: 50%;
   transform: translate(-50%, -50%) scale(0.6);
   opacity: 0;
   transition: opacity .2s ease, transform .2s ease;
 }
 
 .form-check-input.radio:checked::after {
   opacity: 1;
   transform: translate(-50%, -50%) scale(1);
 }
 
 /* Checked + Hover: leicht dunkler */
 .form-check-input.radio:checked:hover {
   background: var(--color-primary-hover);
   border-color: var(--color-primary-hover);
 }
 
 /* Disabled */
 .form-check-input.radio:disabled {
   cursor: not-allowed;
   opacity: .6;
   box-shadow: none;
 }
 .form-check-input.radio:disabled + .form-check-label {
   opacity: .75;
   cursor: not-allowed;
 }
 
 /* ===== Größenvarianten ===== */
 .form-check-input.radio-sm {
   width: .95rem !important;
   height: .95rem !important;
 }
 
 .form-check-input.radio-lg {
   width: 1.35rem !important;
   height: 1.35rem !important;
 }
 
 /* ===== Struktur & Label (optional wie bei Checkboxen) ===== */
 .form-check.custom { margin-bottom: .6rem; }
 .form-check.custom .form-check-label {
   color: var(--color-gray, #555);
   cursor: pointer;
   user-select: none;
 }

  
 
/* ===== CAROUSEL ===== */
.carousel-item {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;   /* immer 16:9 */
  background-size: cover;
  background-position: center;
  overflow: hidden;
}

.carousel-item video,
.carousel-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Begrenzung auf Desktop */
@media (min-width: 992px) {
  .carousel-item {
	max-height: 60vh;  /* max. 70% der Höhe */
  }
}

/* Abdunkelung NUR über dem Video/Bild */
.carousel-item::after {
  content: "";
  position: absolute;
  top:0; left:0; right:0; bottom:0;
  background: rgba(0,0,0,0.2);
  z-index: 1; /* hinter Caption */
}

/* ===== CAPTION ===== */
.carousel-caption {
  position: absolute;
  bottom: 5%;
  left: 50%;
  transform: translateX(-50%);
  width: auto;
  max-width: 700px;
  padding: 20px 30px;
  background: rgba(255,255,255,0.8);
  backdrop-filter: blur(8px);
  border-radius: 12px;
  color: var(--color-gray);
  text-shadow: none;
  z-index: 2; /* über Overlay */
}

.carousel-caption h2 {
  font-weight: bold;
  color: var(--color-primary);
  margin-bottom: 0.5rem;
  font-size: clamp(1.4rem, 4vw, 2.3rem);
  /* min: 1.4rem, ideal: 4% der Viewport-Breite, max: 2.8rem */
}

.carousel-caption p {
  margin: 0;
  color: var(--color-gray);
  font-size: clamp(1rem, 2vw, 1.3rem);
  /* min: 1rem, ideal: 2% der Viewport-Breite, max: 1.4rem */
}

/* Mobile Optimierung */
@media (max-width: 768px) {
  .carousel-item {
	aspect-ratio: auto;
	height: 70vh;
  }
  .carousel-caption {
	width: 95%;
	max-width: none;
	padding: 15px 20px;
  }
  .carousel-caption h1 {
	font-size: 1.6rem;
  }
  .carousel-caption p {
	font-size: 1rem;
  }
}
  
	/* ===== SECTIONS ===== */
	.section {
	  padding: 50px 0;
	  position: relative;
	  scroll-margin-top: var(--navbar-offset);
      overflow-x: clip; /* moderner als hidden; fällt zurück auf hidden falls nicht unterstützt */
	}
  /* Fallback für ältere Browser */
  @supports not (overflow: clip) {
    .section { overflow-x: hidden; }
  }
	.section-title {
	  font-weight: bold;
	  margin-bottom: 40px;
	  text-align: center;
	  font-size: 2.5rem;
	  color: var(--color-primary);
	}
  
  @media (max-width: 991.98px) {
    .section-title {
      font-size : 2.1rem !important; 
    }
  }
  
  @media (max-width: 991.98px) {
    .lead {
      font-size : 1.1rem !important; 
    }
  }
  
	/* ===== CARDS ===== */
	.card {
	  border: none;
	  border-radius: 20px;
	  padding: 25px;
	  background: #fff;
	  box-shadow: 0 8px 25px rgba(0,0,0,0.08);
	  transition: transform 0.4s, box-shadow 0.4s;
	}
	.card i {
	  font-size: 3rem;
	  color: var(--color-primary);
	}
	.card:hover {
	  transform: translateY(-10px) scale(1.03);
	  box-shadow: 0 12px 35px rgba(0,0,0,0.15);
	}
  .card h5 {
	color: var(--color-primary) !important;  /* gleiche CI-Farbe */
	font-weight: 800;
	font-size: 1.3rem;
	letter-spacing: 0.5px;
  }
  .card p{
  font-size: 1.2rem;
  }
	/* ===== MEDIENPARTNER ===== */
	.media-partners img {
	  max-height: 60px;
	  margin: 15px;
	  transition: all 0.3s;
	}
	.media-partners img:hover {
	  filter: none;
	  transform: scale(1.15);
	}
  
	/* ===== FOOTER ===== */
/*normal
.footer {
	  background: var(--color-primary) 0%;
	  color: #fff;
	  padding: 40px 0 20px 0;
	}
*/
/*glas optik*/
.footer {
  background: var(--color-primary);
  color: #fff;
  padding: 40px 0 20px 0;
  position: relative;
  overflow: hidden; /* wichtig, damit das Pseudo-Element nicht rausläuft */
}

.footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 6px; /* etwas kräftiger als Linie */
  background: linear-gradient(
	90deg,
	rgba(255, 255, 255, 0.5) 0%,
	rgba(255, 255, 255, 0.2) 50%,
	rgba(255, 255, 255, 0.5) 100%
  );
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px); /* Safari */
  border-top: 1px solid rgba(255, 255, 255, 0.7);
  border-bottom: 1px solid rgba(255, 255, 255, 0.3);
}



	
	.footer h5 {
	  font-weight: bold;
	  margin-bottom: 1rem;
	}
	
	.footer a {
	  color: #fff;
	  text-decoration: none;
	}
	.footer a:hover {
	  color: #ddd;
	}
	
.footer .social-icons a {
	  display: inline-flex;
	  align-items: center;
	  justify-content: center;
	  width: 42px;
	  height: 42px;
	  border-radius: 50%;
	  margin: 0 5px;
	  font-size: 1.2rem;
	  background: #fff;
	  color: var(--color-primary);
	  transition: transform 0.3s ease, box-shadow 0.3s ease;
	}
	
	.footer .social-icons a:hover {
	  transform: scale(1.15); /* größer werden */
	  box-shadow: 0 6px 15px rgba(0,0,0,0.2); /* mehr Tiefe */
	  /* Hintergrund + Farbe bleiben wie im Normalzustand */
	}
	
	.footer .social-icons i {
		margin-top: 2px;
		margin-left : 1px;
	}	
	.footer-bottom {
	  border-top: 1px solid rgba(255,255,255,0.3);
	  font-size: 0.9rem;
	  text-align: center;
	  opacity: 0.9;
	}
	
/* ===== Footer Logo Card ===== */
.footer-logo-card {
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.08);
  padding: 20px; /* etwas mehr Innenabstand */
  margin: 0 auto;
  text-decoration: none;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  width: 90%;         /* volle Spaltenbreite */
  height: 180px;       /* höher für mehr Präsenz */
  max-width: 100%;     /* nicht beschränken */
}

.footer-logo-card:hover {
  transform: translateY(-5px) scale(1.05);
  box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.footer-logo {
  max-width: 90%;   /* kleiner Puffer links/rechts */
  max-height: 100%; /* füllt die Höhe */
  object-fit: contain;
  display: block;
}


.footer a:not(.footer-logo-card):not(.social-icons a) {
  color: #fff;
  text-decoration: none;
  transition: color 0.3s ease, transform 0.3s ease;
  display: inline-block; /* wichtig, sonst wirkt transform nicht auf <a> */
}

.footer a:not(.footer-logo-card):not(.social-icons a):hover {
  color: white;
  transform: scale(1.08); /* sanfte Vergrößerung */
}

	
	/*
	.bg-light {
		background: var(--color-primary) !important;
		color : white;
	}
	.bg-light h2 {
		color : white;
	}
	*/

.bg-dark {
  background-color : rgb(245, 245, 246) !important;
}
	/* ===== Standortinfo Section ===== */
	
	
#standortinfo {
}

.info-card {
  background: #fff;
  border-radius: 14px;
  padding: 25px 20px;
  box-shadow: 0 6px 18px rgba(0,0,0,0.08);
  transition: transform 0.3s, box-shadow 0.3s;
}

.info-card i {
  font-size: 2rem;
  color: var(--color-primary);
  margin-bottom: 10px;
  display: block;
}

.info-card h3 {
  font-weight: 700;
  font-size: 1.5rem;
  margin-bottom: 6px;
  color: var(--color-primary);
}

.info-card p {
  color: #555;
  font-size: 0.95rem;
  margin: 0;
}

.info-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}
.city-subline {
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--color-primary);
  margin-bottom: 30px;
}
	
	
	
	
	/* ===== Auswahl Besucher Aussteller ===== */

	/* Role Select Section */
	#role-select {
	  background: #f9f9fb;
	}
	
	.role-card {
	  display: block;
	  padding: 40px 30px;
	  background: #fff;
	  border-radius: 16px;
	  text-decoration: none;
	  color: var(--color-gray);
	  box-shadow: 0 6px 18px rgba(0,0,0,0.08);
	  transition: transform 0.3s ease, box-shadow 0.3s ease, background-color 0.3s;
	}
	
	.role-card i {
	  font-size: 3rem;
	  color: var(--color-primary);
	  margin-bottom: 15px;
	  display: block;
	}
	
	.role-card h3 {
	  font-weight: 700;
	  margin-bottom: 10px;
	  color: var(--color-primary);
	}
	
	.role-card p {
	  font-size: 0.95rem;
	  margin: 0;
	}
	
	.role-card:hover {
	  transform: translateY(-5px);
	  box-shadow: 0 12px 28px rgba(0,0,0,0.15);
	  background-color: #f7f5fb;
	}
	
	
	/* ===== Themen Kacheln ===== */
	
.theme-card {
	  background: #fff;
	  border-radius: 14px;
	  padding: 0 0 20px 0;
	  box-shadow: 0 6px 16px rgba(0,0,0,0.08);
	  transition: transform 0.3s ease, box-shadow 0.3s ease;
	  display: flex;
	  flex-direction: column;
	  text-align: center;
	  overflow: hidden;
	}
	
	.theme-card img.theme-img {
	  width: 100%;
	  height: 180px;
	  object-fit: cover;
	  border-top-left-radius: 14px;
	  border-top-right-radius: 14px;
	}
	
	.theme-card h4 {
	  font-weight: 700;
	  color: var(--color-primary);
	  margin: 15px 0 8px;
	}
	
	.theme-card p {
	  font-size: 0.95rem;
	  color: #555;
	  margin: 0 15px;
	}
	
	.theme-card:hover {
	  transform: translateY(-5px);
	  box-shadow: 0 12px 24px rgba(0,0,0,0.15);
	}
	
	
	/* ===== Programm ===== */
	#rahmenprogramm .nav-pills .nav-link {
	  border-radius: 30px;
	  padding: 10px 25px;
	  font-weight: 600;
	  color: var(--mototec-gray);
	  transition: all 0.3s;
	}
	#rahmenprogramm .nav-pills .nav-link.active {
	  background: var(--mototec-primary);
	  color: #fff;
	}
	#rahmenprogramm .list-group-item {
	  border: none;
	  border-left: 4px solid var(--mototec-primary);
	  margin-bottom: 10px;
	  border-radius: 8px;
	}
	#rahmenprogramm .list-group-item h5 {
	  color: var(--mototec-primary);
	}
	#rahmenprogramm .list-group-item {
	  border: none;
	  border-left: 5px solid var(--color-primary);
	  margin-bottom: 15px;
	  border-radius: 8px;
	  background: #fff;
	  transition: background 0.3s, border-color 0.3s;
	}
	#rahmenprogramm .list-group-item:hover {
	  background: var(--color-primary-light);
	  border-left-color: var(--color-primary-hover);
	}
	
	#rahmenprogramm .list-group-item h5 {
	  color: var(--color-primary);
	  font-weight: 600;
	}
	#rahmenprogramm .list-group-item small {
	  display: block;
	  margin-top: 0.25rem;
	}
	#rahmenprogramm .list-group-item .location {
	  color: var(--color-primary);
	  font-weight: 600;
	}
	#rahmenprogramm .list-group-item .referent {
	  color: var(--color-gray);
	}
	#rahmenprogramm .list-group-item i {
	  color: var(--color-primary);
	  transition: color 0.3s;
	}
	#rahmenprogramm .list-group-item:hover i {
	  color: var(--color-primary-hover);
	}
	
	
	
/* ===== NEWSLETTER ===== */
.newsletter-section {
  background: var(--color-primary);
  padding: 80px 0;
  margin: 60px 0;
}
.newsletter-section h2,
.newsletter-section p {
  color: #fff;
}

/* Textbreite */
.newsletter-section .lead {
  max-width: 800px;
}

/* Input */
.newsletter-section .form-control-lg {
  height: 58px;
  border: none;
  border-radius: 30px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); /* Standard-Schatten */
  max-width: 100%;
	color: var(--color-gray);
}
.newsletter-section .form-control-lg:hover,
.newsletter-section .form-control-lg:focus {
  outline: none;
  transform: scale(1.02); /* leicht größer bei Hover & Fokus */
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2); /* stärkerer Schatten */
}

/* Button */
.newsletter-section .btn-lg {
  height: 58px;
  font-weight: 600;
  border-radius: 30px;
  transition: all 0.3s ease;
  background: #fff;
  color: var(--color-primary);
  margin-left: 15px;
  border: none;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); /* Standard-Schatten */
}
.newsletter-section .btn-lg:hover {
  background: #fff;
  color: var(--color-primary-hover);
  transform: scale(1.02);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2);
}

/* Mobile-Anpassung */
@media (max-width: 767.98px) {
  .newsletter-section .btn-lg {
	margin-left: 0;
	margin-top: 10px;
  }
}


/* ===== CI-BADGES ===== */

/* Primär – kräftiger Akzent in Lila */
.badge.text-bg-primary {
  background: var(--color-primary-light) !important;
  color: var(--color-primary) !important;
  font-weight: 600;
  border-radius: 999px;
  padding: .25rem .6rem;
  font-size: 0.9em;
  transition: all 0.25s ease;
}
.badge.text-bg-primary:hover {
  background: var(--color-primary) !important;
  color: #fff !important;
  transform: scale(1.05);
  box-shadow: 0 4px 10px rgba(0,0,0,0.15);
}

/* Sekundär – neutraler CI-Grauton */
.badge.text-bg-secondary {
  background: #e9ecef !important; /* Bootstrap-light-gray */
  color: var(--color-gray) !important;
  font-weight: 500;
  border-radius: 999px;
  padding: .25rem .6rem;
  font-size: 0.9em;
  transition: all 0.25s ease;
}
.badge.text-bg-secondary:hover {
  background: #dee2e6 !important; /* etwas dunkler beim Hover */
  color: var(--color-primary) !important;
  transform: scale(1.05);
}

/* Gemeinsame Grundstruktur für alle Badges */
.badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  user-select: none;
  vertical-align: middle;
}

/* CI-Icon-Farbe (für konsistente Symbole) */
.ci-icon {
  color: var(--color-primary);
}

/* ===== Partner ===== */
.partner-card {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  height: 120px;
}

.partner-card:hover {
  transform: translateY(-5px) scale(1.05);
  box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.partner-card img {
  max-height: 70px;
  filter: grayscale(100%);
  transition: filter 0.3s ease;
  pointer-events: none;
}
.partner-card:hover img {
  filter: grayscale(0%);
}



/* ===== Content Card ===== */
.content-card {
  background: #fff;
  border-radius: 14px;
  padding: 20px 24px; /* oben etwas weniger Platz (vorher 20px) */
  box-shadow: 0 6px 16px rgba(0,0,0,0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  text-align: left;
  overflow: hidden;
  line-height: 1.55;
  color: #555;
}

/* Responsive Anpassung */
@media (max-width: 575.98px) {
  .content-card {
	padding: 16px;
	text-align: left;
  }
}

.content-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 24px rgba(0,0,0,0.15);
}

@media (hover: none) {
  .content-card:hover {
	transform: none;
	box-shadow: 0 6px 16px rgba(0,0,0,0.08);
  }
}

/* ===== ICON + TITLE Ausrichtung in Content-Cards ===== */
.content-card .d-flex.align-items-center i {
  font-size: 2rem;
  color: var(--color-primary);
  line-height: 1;
  margin-top: -2px; /* optische Korrektur, Icon minimal senken */
}

.content-card .d-flex.align-items-center h5 {
  font-weight: 700;
  font-size: 1.25rem;
  color: var(--color-primary);
  margin: 0;
  display: flex;
  align-items: center; /* sorgt für perfekte mittige Linie */
}


/* ==== AUSSTELLER ==== */
/* === Aussteller Cards === */
.exh-card {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 6px 18px rgba(0,0,0,0.08);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  height: 100%;
}
.exh-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 28px rgba(0,0,0,0.15);
}

/* Kopf mit Logo */
.exh-card-head {
  background: #fff;
  padding: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-bottom: 1px solid rgba(0,0,0,0.05);
}
.exh-card-head img {
  width: 100%;
  height: 120px;
  object-fit: contain;
}

/* Body */
.exh-card-body {
  padding: 1.3rem 1.5rem 1.5rem;
  flex-grow: 1;
}
.stand-badge {
  display: inline-block;
  background: var(--color-primary);
  color: #fff;
  padding: 4px 10px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.8rem;
  margin-bottom: .6rem;
  box-shadow: 0 3px 10px rgba(132,66,197,0.25);
}
.exh-title {
  font-weight: 700;
  font-size: 1.15rem;
  margin-bottom: .35rem;
  color: var(--color-primary);
}
.exh-text {
  color: var(--color-gray);
  font-size: .95rem;
  margin-bottom: .8rem;
  line-height: 1.5;
}
.badge-soft-primary {
  background: rgba(132,66,197,0.1);
  color: var(--color-primary);
  border-radius: 999px;
  font-weight: 600;
  padding: .35rem .7rem;
  font-size: .8rem;
  display: inline-block;
}

/* Neuer Card-Footer */
.exh-card-footer {
  background: #fafafa;
  border-top: 1px solid rgba(0,0,0,0.05);
  padding: .8rem 1.5rem;
  text-align: center;
}

/* Link-Chip im Footer */
.link-chip {
  display: inline-flex;
  align-items: center;
  gap: .35rem;
  padding: .35rem .8rem;
  border-radius: 999px;
  background: #fff;
  color: var(--color-primary);
  text-decoration: none;
  font-weight: 600;
  font-size: .9rem;
  border: 1px solid rgba(132,66,197,.18);
  transition: transform .25s ease, box-shadow .25s ease, background-color .25s ease;
}
.link-chip:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 14px rgba(0,0,0,.08);
  background: #efe7fb;
  color: var(--color-primary-hover);
}

/* Filterbuttons */
.btn-outline-primary {
  color: var(--color-primary);
  border-color: var(--color-primary);
  border-radius: 30px;
  font-weight: 600;
  transition: all .3s;
}
.btn-outline-primary:hover,
.btn-outline-primary.active {
  background: var(--color-primary);
  color: #fff !important;
  border-color: var(--color-primary);
}
.btn:focus,
.btn:active:focus {
  box-shadow: none;
}

/* Suchfeld (wie Newsletter) */
.search-hero {
  max-width: 560px;
  margin: 0 auto;
}
.search-hero .input-group-text {
  background: #fff;
  border: none;
  border-radius: 999px 0 0 999px;
  height: 54px;
  padding: 0 16px;
  color: var(--color-primary);
  box-shadow: 0 6px 18px rgba(0,0,0,0.08);
  transition: transform .2s ease, box-shadow .2s ease;
}
.search-hero .form-control {
  border: none;
  height: 54px;
  border-radius: 0 999px 999px 0;
  padding: 0 18px;
  background: #fff;
  box-shadow: 0 6px 18px rgba(0,0,0,0.08);
  transition: transform .2s ease, box-shadow .2s ease;
}
.search-hero:hover .form-control,
.search-hero:hover .input-group-text {
  transform: translateY(-1px) scale(1.02);
  box-shadow: 0 10px 28px rgba(0,0,0,0.12);
}
.search-hero .form-control:focus {
  outline: none;
  box-shadow: 0 12px 32px rgba(132,66,197,0.25);
}
.search-hero .form-control:focus,
.search-hero .input-group-text:has(+ .form-control:focus) {
  transform: translateY(-1px) scale(1.03);
}
.search-hero .form-control::placeholder {
  color: rgba(0,0,0,0.45);
}

/* Responsive */
@media (max-width: 575.98px) {
  .search-hero { max-width: 100%; }
  .exh-card-head img { height: 100px; padding: 1rem; }
  .exh-title { font-size: 1rem; }
}
@media (min-width: 576px) and (max-width: 991.98px) {
  .search-hero { max-width: 640px; }
}

/* ===== KONTAKTFORMULAR ===== */

/* Inputs */
#contact-form .form-control-lg {
  height: 54px;
  border: 1px solid var(--color-lightgray);
  border-radius: 14px;
  background: #f8f9fa;
  color: var(--color-gray);
  box-shadow: 0 2px 8px rgba(132, 66, 197, 0.08);
  padding: 0 16px;
  transition: all 0.25s ease;
  font-size: 1rem;
}
#contact-form textarea.form-control-lg {
  height: auto;
  padding-top: 12px;
  padding-bottom: 12px;
  resize: vertical;
}
#contact-form .form-control-lg:hover,
#contact-form .form-control-lg:focus {
  background: #fff;
  border-color: var(--color-primary-hover);
  box-shadow: 0 6px 14px rgba(132, 66, 197, 0.18);
  outline: none;
  transform: translateY(-1px);
}
#contact-form .form-control::placeholder { color:#777; opacity:.85; }
#contact-form .form-label { font-weight:600; color:var(--color-primary); }
#contact-form .form-select {
  border: 1px solid var(--color-primary);
  border-radius: 14px;
  background: var(--color-primary-light);
  color: var(--color-gray);
  box-shadow: 0 2px 8px rgba(132, 66, 197, 0.08);
  transition: all 0.25s ease;
  height: 54px;
  padding-left: 16px;
}
#contact-form .form-select:hover,
#contact-form .form-select:focus {
  background:#fff; border-color:var(--color-primary-hover);
  box-shadow:0 6px 14px rgba(132,66,197,0.18);
  outline:none; transform:translateY(-1px);
}

/* Fehlermarkierung */
#contact-form.was-validated .form-control:invalid {
  border-color: #650600;
  background: #fff;
  box-shadow: 0 0 0 3px rgba(217,48,37,0.1);
}
#contact-form .invalid-feedback {
  display:none;
  color:#650600;
  font-size:.9rem;
}
#contact-form.was-validated .form-control:invalid ~ .invalid-feedback {
  display:block;
}

/* DSGVO-Checkbox neutral in allen Zuständen */
#contact-form.was-validated .form-check-input:invalid ~ .form-check-label,
#contact-form.was-validated .form-check-input:valid ~ .form-check-label {
  color: inherit; /* weder rot noch grün */
}

/* Fehlermeldung unten */
#contact-form .form-check .invalid-feedback {
  display: none;
  color: #650600;
  font-size: 0.9rem;
}
#contact-form.was-validated .form-check-input:invalid ~ .invalid-feedback {
  display: block;
}

/* Checkbox CI + Fehlerzustand */
#contact-form .form-check-input.checkbox {
  border-color: var(--color-primary);
  background: #fff;
  transition: all .25s ease;
}
#contact-form .form-check-input.checkbox:checked {
  background: var(--color-primary);
  border-color: var(--color-primary);
}
#contact-form.was-validated .form-check-input:invalid {
  border-color: #650600;
  box-shadow: 0 0 0 3px rgba(217,48,37,0.1);
}

/* Links im DSGVO-Text */
#contact-form .form-check-label a {
  color: var(--color-primary);
  text-decoration: none;
  transition: color .25s ease;
}
#contact-form .form-check-label a:hover {
  color: var(--color-primary-hover);
}

/* Spaltenabstand */
#contact-form .row.g-3 { --bs-gutter-y: 1.2rem; }

/* Buttons */
#contact-form .btn { min-width:180px; }


/* Titel */
.content-title {
  font-weight: 700;
  color: var(--color-primary);
  margin: 4px 0 10px; /* Überschrift näher am oberen Rand */
}


.content-title h2 {
	font-size : 20px;
}

.content-subtitle {
  color: var(--color-primary);
  font-weight: 700;
  margin-bottom: 0.35rem;
}

/* Links */
.content-card a {
  display: inline-block; /* nötig für transform */
  color: var(--color-primary);
  text-decoration: none;
  transition: transform 0.25s ease, color 0.25s ease;
  will-change: transform;
}

.content-card a:hover {
  transform: scale(1.06);
  color: var(--color-primary-hover);
}

.content-card .btn-cta {
	color : white !important;
}




/* Cookie-Modal */
.cookie-modal .modal-content { border-radius: 16px; }
.cookie-modal .modal-body a {
display: inline-block;
color: var(--color-primary);
text-decoration: none;
transition: transform 0.25s ease, color 0.25s ease;
will-change: transform;
}
.cookie-modal .modal-body a:hover {
transform: scale(1.06);
color: var(--color-primary-hover);
}
@media (max-width: 575.98px) {
.cookie-modal .modal-dialog { margin: 0 12px; }
}





/* Optimierung für AOS Animationen */
[data-aos="zoom-in"],
[data-aos="fade-up"] {
  will-change: transform, opacity;
}

/* Marked Text */
::-moz-selection { background: var(--color-primary); color: white; }
::selection { background: var(--color-primary); color: white; }