 /* ================== Angepasste Classen der BootstrapBibliothekKomponenten ======== */



/* == Containerbreite (mobile first) == */
.site-grid > [class^=container-],
.site-grid > [class*=" container-"] {
  width: 100%;
  padding-inline: 12px;   /* Abstand zum Rand (mobil) */
  max-width: none;
  column-gap: 1em;
}

/* Tablet */
@media (min-width: 768px){
  .site-grid > [class^=container-],
  .site-grid > [class*=" container-"] {
    width: 100%;
    padding-inline: 20px;
  }
}

/* Desktop */
@media (min-width: 1200px){
  .site-grid > [class^=container-],
  .site-grid > [class*=" container-"] {
    width: 80%;
    padding-inline: 40px;
  }
}

body {
  margin: 0;
  min-height: 100vh;

  background: linear-gradient(351deg, #ffffff 0%, #ffffff 29%, #36454f 100%);
  position: relative;
}

/* SVG darüberlegen */
body::before {
  content: "";
  position: fixed; /* wichtig → bleibt sichtbar */
  inset: 0;

  background: url('/images/svg/print.svg') left -280px center / 1000px no-repeat;

  opacity: 1;
  pointer-events: none;
  z-index: 0;
}






/* ===== HAUPTMENÜ ===== */


/* Eigener Pfeil */
.metismenu .mm-toggler {
  position: relative;
  padding-right: 18px;
}

.metismenu .mm-toggler::after {
  content: "\2228";
  margin-left: 6px;
  font-size: 0.9rem;
  color: #fff;
}

.metismenu .mm-collapse {
  display: none;
}

.metismenu .mm-collapse.mm-show {
  display: block;
}

/* aktiv → drehen */
.metismenu .mm-toggler[aria-expanded="true"]::after {
  transform: translateY(-50%) rotate(180deg);
}

/* ===== HAMBURGER BUTTON ===== */

.container-header .navbar-toggler {
  border: 1px solid #fff;
  padding: 12px 16px;
  background: transparent;
  margin-right: 10px;
  position: relative;
  top: 35px;
  z-index: 1100;
}

.container-header .navbar-collapse.show {
  flex-wrap: wrap;
  justify-content: space-between;
  display: block;

}



/* Hamburger → Linien */
.navbar-toggler-icon {
  background: none;
  width: 26px;
  height: 18px;
  position: relative;
}

.navbar-toggler-icon::before,
.navbar-toggler-icon::after,
.navbar-toggler-icon span {
  content: "V";
  position: absolute;
  left: 0;
  width: 100%;
  height: 2px;
  background: #fff;
  transition: .3s;
}

.navbar-toggler-icon::before { top: 0; }
.navbar-toggler-icon span { top: 8px; }
.navbar-toggler-icon::after { bottom: 0; }

/* X Zustand */
.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon::before {
  transform: rotate(45deg);
  top: 8px;
}

.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon::after {
  transform: rotate(-45deg);
  bottom: 8px;
}

.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon::after {
  transform: rotate(-45deg);
  bottom: 8px;
}

/* ===== MOBILE NAV ===== */

@media (max-width: 991.98px) {

  .navbar-collapse {
    position: fixed;
    top: 0;
    right: -100%;
    width: 85%;
    max-width: 320px;
    height: 100vh;
    background: rgba(7,16,30,.92);
    padding: 0rem 0rem 0rem;
    overflow-y: auto;
    transition: right .25s ease;
    z-index: 1050;
  }

  .navbar-collapse.show {
    right: 0;
  }

  .navbar-nav .nav-link {
    color: #fff;
    padding: .8rem 0;
    border-bottom: 1px solid rgba(255,255,255,.15);
  }

  /* Overlay */
  body.nav-open::before {
    content: "";
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,.45);
    z-index: 1000;
  }
}




/* ===== ENDE HAUPTMENÜ ===== */











/* --- accordion ----- */

.accordion-button::after {
  content: '+';
  font-size: 1.4rem;
  color: #ddd;
  margin-left: auto;
  transform: none !important;
  transition: transform 0.3s ease;
}

.accordion-button:not(.collapsed)::after {
  content: '−';
  transform: none !important;
}

.accordion-button {
  font-weight: 400;
  background-color: #fff;
  color: #888;
  border-radius: 0 !important;
  transition: background-color 0.3s ease;
}


/* entfernt das Standard-Pfeil-Symbol */
.accordion-button::after {
  content: '+' !important;
  font-size: 1.5rem;
  color: #888;
  margin-left: auto;
  background-image: none !important;
  transform: none !important;
}

/* wenn aufgeklappt: Minuszeichen anzeigen */
.accordion-button:not(.collapsed)::after {
  content: '−' !important;
}

.accordion-item {
  border: 1px solid #ddd;
  border-radius: 0 !important;
  overflow: hidden;
  transition: all 0.3s ease-in-out;
}

.accordion-body {
  padding: 1rem;
  background-color: #f9f9f9;
}

/* Hintergrund im geöffneten Bereich */
.custom-accordion .accordion .accordion-body {
  background: linear-gradient(rgba(255, 255, 255, 1), rgba(145,168,186,1)),
              url('../images/svg/logo-digas.svg') center/cover no-repeat;
  color: #36454f;
}


@media (min-width: 769px) and (max-width: 1024px) {
  /* Accordion-Spalten untereinander */
  .accordion-columns {
    flex-direction: column;
    gap: 20px;
  }

  /* Inhalt im geöffneten Accordion untereinander */
  .accordion-body .row {
    flex-direction: column;
  }

  .accordion-body .col-text,
  .accordion-body .col-image {
    width: 100%;
    padding: 0 !important;
    margin-bottom: 1rem;
    text-align: center;
  }

  .accordion-body .col-image img {
    max-width: 100%;
    height: auto;
  }
}


@media (max-width: 768px) {
  /* Accordion-Spalten untereinander */
  .accordion-columns {
    flex-direction: column;
    gap: 20px;
  }

  /* Inhalt im geöffneten Accordion untereinander */
  .accordion-body .row {
    flex-direction: column;
  }

  .accordion-body .col-text,
  .accordion-body .col-image {
    width: 100%;
    padding: 0 !important;
    margin-bottom: 1rem;
    text-align: center;
  }

  .accordion-body .col-image img {
    max-width: 100%;
    height: auto;
  }
}




/* ===== */


/* anfang layout newsflash neuigkeiten */

.newsflash-wrapper {
  position: relative;
  overflow: hidden;
}

.news-track {
  display: flex;
  transition: transform .4s ease;
}

.news-item {
  min-width: 33.333%;
  padding: 10px;
}

.news-inner {
  background: #000;
  border: 1px solid #009ee3;
  border-radius: 0px;
  padding: 20px;
  color: #fff;
  height: 100%;
}

/* DOTS */
.news-dots {
  text-align: right;
  margin-top: 10px;
}

.news-dots button {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: none;
  margin: 0 4px;
  background: #777;
  cursor: pointer;
}

.news-dots button.active {
  background: #009ee3;
}

/* responsive */
@media (max-width: 768px){
  .news-item { min-width: 100%; }
}





/* ende layout newsflash neuigkeiten */


/* ========================= */
/* BASE - Seitenstruktur neu*/
/* ========================= */
.c-section {
  padding: 40px 20px;
}

.c-container {
  max-width: 1200px;
  margin: 0 auto;
}

.c-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  align-items: center;
}

/* ========================= */
/* CONTENT */
/* ========================= */
.c-content h2 {
  margin-bottom: 10px;
  font-size: 1.8rem;
}

.c-content p {
  line-height: 1.6;
}

/* ========================= */
/* IMAGE */
/* ========================= */
.c-img img {
transform: scale(1.2) translateX(0px);
  
}

/* ========================= */
/* COLOR SYSTEM */
/* ========================= */
.c-light {
  background: #ffffff;
  color: #36454f;
}

.c-dark {
  background: #0f172a;
  color: #ffffff;
}

.c-accent {
  background: #009ee3;
  color: #ffffff;
}

/* ========================= */
/* TABLET */
/* ========================= */
@media (min-width: 768px){

  .c-grid {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }

  /* Reihenfolge wechseln */
  .c-reverse .c-img {
    order: 2;
  }

  .c-reverse .c-content {
    order: 1;
  }
}

/* ========================= */
/* DESKTOP */
/* ========================= */
@media (min-width: 1200px){

  .c-section {
    padding: 80px 20px;
  }

  /* Bild leicht rausziehen */
  .c-img img {
    transform: scale(1.2) translateX(0px);
  }

  /* reverse richtig drehen */
  .c-reverse .c-img img {
    transform: scale(1.2) translateX(0px);
  }
}

/* ========================= */
/* MOBILE FIX */
/* ========================= */
@media (max-width: 768px){
  .c-img img {
    transform: none;
  }
}




/* =========== Seitenstruktur eins ========= */

.section{
  padding:10px 0;
}

.section-light{
  background:#fff;
}

.section-dark{
  background:#0f172a;
  color:#fff;
}

.section-accent{
  background:#009ee3;
  color:#fff;
}

/* Layout */
.section .container{
  max-width:1200px;
  margin:auto;
}

.grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:20px;
  align-items:center;
}

/* responsive */
@media (max-width:768px){
  .grid{
    grid-template-columns:1fr;
  }
}











/* Bild-links */
.img-box img{
 transform: scale(1.2) translateX(0px);
  
}

/* Bild-re */
.img-box1 img{
 transform: scale(1.2) translateX(0px);
      }


@media (max-width: 992px){
  .img-box1 img{
    transform: scale(1.2) translateX(0px);
    margin-right: 0px;
    
  }
}

@media (max-width: 768px){
  .img-box1 img{
    transform: scale(1.2) translateX(0px);
    margin-right: 0;
  }
}



/* DESKTOP (default) */
.img-box img{
  transform: scale(1.3) translateX(-180px);
  

}

/* ========================= */
/* TABLET (z.B. iPad) */
/* ========================= */
@media (max-width: 992px){
  .img-box img{
    margin-left: 0;          /* zurück ins Layout */
    display: block;
    margin-right: auto;
    margin-left: auto;       /* optional zentrieren */
  }
}

/* ========================= */
/* MOBILE */
/* ========================= */
@media (max-width: 768px){
  .img-box img{
    margin-left: 0;          /* zurück ins Layout */
    display: block;
    margin-right: auto;
    margin-left: auto;       /* optional zentrieren */
  }
}

/* ========================= */
/* SMALL MOBILE */
/* ========================= */
@media (max-width: 480px){
  .img-box img{
    margin-left: 0;
    width: 100%;             /* volle Breite */
  }
}






/* Icon */
.icon{
  width:40px;
  margin-bottom:15px;
}




/* =========== Ende Seitenstruktur ========= */



/* =========== Sectionen Layout zwei ========= */


/* SECTION BASIS */
.u-section {
  padding: 80px 0;
}

.u-light { background:#f7f9fc; }
.u-dark { background:#0f172a; color:#fff; }
.u-accent { background:#009ee3; color:#fff; }

/* GRID */
.u-grid {
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:60px;
  align-items:center;
}

.u-grid.reverse {
  direction:rtl;
}
.u-grid.reverse > * {
  direction:ltr;
}

/* CONTENT */
.u-content h2 {
  font-size:2rem;
  margin-bottom:15px;
}

.u-content p {
  opacity:0.85;
  margin-bottom:20px;
}

/* ICON */
.u-icon {
  font-size:140px;
  margin-bottom:15px;
  color:#009ee3;
}

.u-dark .u-icon,
.u-accent .u-icon {
  color:#fff;
}

/* BUTTON */
.u-btn {
  display:inline-block;
  padding:10px 20px;
  background:#009ee3;
  color:#fff;
  text-decoration:none;
  border-radius:4px;
}

.u-dark .u-btn,
.u-accent .u-btn {
  background:#fff;
  color:#009ee3;
}

/* IMAGE */
.u-image img {
  width:100%;
  border-radius:8px;
}

/* RESPONSIVE */
@media (max-width: 768px){
  .u-grid {
    grid-template-columns:1fr;
    gap:30px;
  }

  .u-section {
    padding:50px 0;
  }
}








/* =========== Sectionen Layout zwei Ende ========= */





  
  /* Eigene Alert Box Einstellungen */

:root {
  --success-bg-subtle: #94a189;
  --success-text-emphasis: #fff;
  --success-border-subtle: #55a505;
  /* Border */
  --border-width: 1px;
  --alert-border-radius: 0px;
}
.alert {
  --border-width: 0px;
  --alert-border-radius: 0px;
}


/* ====================== */



/* ================== TYPOGRAFIE – Roboto ================== */
/* Basis */
:root {
  --h1-size: 3rem;
  --h2-size: 2.4rem;
  --h3-size: 1.9rem;
  --h4-size: 1.5rem;
  --h5-size: 1.2rem;
  --h6-size: 1rem;

  --lh-tight: 1.2;
  --lh-normal: 1.35;
}

/* Headings */
h1 {
  font-family: "Roboto", sans-serif;
  font-size: var(--h1-size);
  font-weight: 300; /* Bold */
  line-height: var(--lh-tight);
}

h2 {
  font-family: "Roboto", sans-serif;
  font-size: var(--h2-size);
  font-weight: 300; /* SemiBold */
  line-height: var(--lh-tight);
}

h3 {
  font-family: "Roboto", sans-serif;
  font-size: var(--h3-size);
  font-weight: 300; /* Medium */
  line-height: var(--lh-normal);
}

h4 {
  font-family: "Roboto", sans-serif;
  font-size: var(--h4-size);
  font-weight: 300;
  line-height: var(--lh-normal);
}

h5 {
  font-family: "Roboto", sans-serif;
  font-size: var(--h5-size);
  font-weight: 400; /* Regular */
  line-height: var(--lh-normal);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

h6 {
  font-family: "Roboto", sans-serif;
  font-size: var(--h6-size);
  font-weight: 400;
  line-height: var(--lh-normal);
  letter-spacing: 0.02em;
  opacity: 0.8;
}

/* --------------------------------------------------- */

.header {
    background: #fff;
	}

.topbar{
padding:0.4rem 1rem;
}

.container-topbar {
  color: #000000;
  padding-top: 1rem;
padding-right: 1rem;
padding-bottom: 0rem;
padding-left: 1rem;
	}


/* TOPBAR LAYOUT */
.topbar-inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  max-width:1320px;
  margin-top: auto;
  margin-right: auto;
  margin-bottom: auto;
  margin-left: auto;
}

/* Kontakt links */
.top-contact{
  display:flex;
  gap:2rem;
  align-items:center;
  font-size:.9rem;
}

.top-contact span{
  display:flex;
  align-items:center;
  gap:.4rem;
}

/* Social rechts */
.top-social{
  display:flex;
  gap:1rem;
  align-items:center;
}


/* Tablet + Smartphone */

@media (max-width: 768px){

  .topbar-inner{
    justify-content:space-between;
  }

  /* nur Telefonnummern ausblenden */
  .top-contact .tel{
    display:none;
  }

  /* Social rechts lassen */
  .top-social{
    margin-left:auto;
  }

}



/* --------------------------------------------------- */

/* Hauptmenü */
.container-header .mod-menu > li > a{
  display:inline-block;
  padding:12px 20px;
  background: transparent;  
  color:#0f172a;
  border-radius:0px;
  transition:all .2s ease;
}

/* Hover */
.container-header .mod-menu > li > a:hover{
  background:#007bb5;
}

.container-header .mod-menu > li{
  margin-right:2px;
}

/* Hauptmenü Schrift */
.container-header .mod-menu > li > a{
  font-size:1.4rem;        /* deine Größe */
  color:#81E300;            /* deine Farbe */
  font-weight:400;       /* optional */
}

.container-header .mod-menu > li > a:hover,
.container-header .mod-menu > li.active > a{
  color:#E3005B; /* z.B. Highlight */
}








/* Kleines Menü top*/
.container-header .mod-menu1 {
  color:#fff;
  font-size: 0.1rem;
  flex:1 0 100%;
  margin:10;
  padding:10;
  list-style:none
}




/* ===== DETAILS FÜR DIE ANZEIGE DES HEADERS/MENÜS  =====*/ 

/* LOGO Abstand oben unten */
.container-header .container-nav {
  flex-wrap:wrap;
  justify-content:space-between;
  padding-bottom:1em;
  padding-top: 0em;
  position: relative; /* wichtig für pseudo-element */
  background-color: #fff;  /* weiß für Logo-Hintergrund */
  z-index: 1;              /* Inhalte vor Pseudo-Element */
}

.container-header .container-nav::after{
  content:"Zuhören. Verstehen. Lösen. Weil echte Lösungen im Gespräch beginnen.";
  position:absolute;
  left:220px; /* leicht rechts von deiner Schräge */
  bottom:10px;
  color:#fff;
  font-size:1.5rem;
  font-weight:300;
  z-index:2;
}


/* ab Tablet ausblenden */
@media (max-width: 991.98px){
  .container-header .container-nav::after{
    content:none;
  }
}



/* Blauer halb-hoher Hintergrund mit fixem Winkel */
.container-header .container-nav::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 120px; /* links wie padding */
  width: calc(100% - 120px); /* Breite angepasst */       
  height: 59%; /* nur die Hälfte vertical */
  background-color: #009ee3;
 clip-path: polygon(75px 0, 100% 0, 100% 100%, 0 100%); /* Winkel bleibt unverändert */
  z-index: -1; /* hinter den Inhalten */
 
}


/* Tablet: kleine Bildschirme */
@media (max-width: 1024px) {
  .container-header .container-nav::before {
    clip-path: polygon(75px 0, 100% 0, 100% 100%, 0 100%);
  }
}

/* Smartphone: sehr schmal */
@media (max-width: 768px) {
  .container-header .container-nav::before {
    clip-path: polygon(75px 0, 100% 0, 100% 100%, 0 100%);
    height: 52%; /* optional etwas niedriger */
  }
}


/* ------------ ende ----------- */






  



/* ======== SECTIONEN - ROWS – ab Tablet alles einspaltig====== */
@media (max-width: 991.98px) {
  .row > [class*="col-"] {
    flex: 0 0 100%;
    max-width: 100%;
  }
}

/* ======== SECTIONEN - ROWS – Abstände über padding für Tablet====== */

@media (max-width: 991.98px) {
  .row {
    padding-left: 1rem;
    padding-right: 1rem;
  }
}

/* ======== SECTIONEN - ROWS – Abstände über padding für Smartphones====== */

@media (max-width: 575.98px) {
  .row {
    padding-left: 0.5rem;
    padding-right: 0.5rem;
  }
}

/* ======== SECTIONEN - ROWS – Abstände über padding gezielt nur Spalten====== */
@media (max-width: 991.98px) {
  .row > [class*="col-"] {
    padding-left: .75rem;
    padding-right: .75rem;
  }
}


/* ====Formular Styling==== */



/* Spezifischer Selektor, um template.min.css zu dominieren */
div.contact-form-custom form#contact-form-2.form-validate {
    background: #f9f9f947;
    padding: 20px;
    border-radius: 0px;
    border: 1px solid #e0e0e0;
}

/* Styling der Label */
.contact-form-custom .form-label label {
    font-family: "Roboto", sans-serif;
    font-size: var(--h5-size);
    font-weight: 300; /* Medium */
    line-height: var(--lh-normal);
    margin-bottom: 5px;
    display: block;
    color: #333;
}

/* Eingabefelder anpassen und Bootstrap-Overrides */
.contact-form-custom .form-control-wrap input,
.contact-form-custom .form-control-wrap textarea,
.contact-form-custom .form-control-wrap select {
    width: 100% !important; /* Erzwingt volle Breite gegen Tmpl-Defaults */
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 0px;
    transition: border-color 0.3s ease;
}

/* Fokus-Effekt */
.contact-form-custom .form-control-wrap input:focus,
.contact-form-custom .form-control-wrap textarea:focus {
    border-color: #007bff; /* Deine Wunschfarbe */
    outline: none;
    box-shadow: 0 0 5px rgba(0,123,255,0.25);
}

/* Button-Styling (spezifisch für das Modul in bottom-a) */
[class*="parent-bottom-a"] .contact-form-custom .btn-primary {
    background-color: #0056b3;
    border: none;
    padding: 10px 25px;
    text-transform: uppercase;
    font-weight: bold;
}

/* Fehlermeldungen bei Validierung */
.contact-form-custom .invalid {
    border-color: #dc3545 !important;
}





/* ====Ende Formular Styling==== */











/* ===== GLOBAL FULLWIDTH SECTION OHNE RÄNDER =====*/ 
.no-padding-fullwidth {
  width: 100vw;
  margin-left: calc(-50vw + 50%);
  margin-right: calc(-50vw + 50%);
  padding: 0 !important;
  overflow-x: hidden;
}

/* Footer spezifisch */
#section-footer {
  background-color: #7E909C;
  color: #fff;
  padding: 20px 0;
}

#section-footer .footer-container {
  max-width: 1600px;
  margin: 0 auto;
  padding: 20px 40px;
}

/* Footer Links */
#section-footer a {
  color: #fff;
  text-decoration: none;
}

#section-footer a:hover {
  text-decoration: none;
}

/* Nav optimieren */
#section-footer .nav-link {
  padding: 0 10px;
  color: #fff;
}

/* Mobile: Logo oben, Navigation mittig */
@media (max-width: 767.98px) {
  #section-footer .footer-container {
    text-align: center;
  }
  #section-footer .footer-left {
    margin-bottom: 15px;
  }
  #section-footer .nav {
    flex-direction: column;
  }
  #section-footer .nav-link {
    padding: 5px 0;
  }
}


/* ===== Effekt Bildergalerie ===== */
.gallery-img {
    transition: transform .3s ease;
    border-radius: 2px;
    cursor: pointer;
}

.gallery-img:hover {
    transform: scale(1.1);
    z-index: 2;
}


/* ===== Bildslider ===== */
/* Rahmenbox */
.slider-box {
    border: 4px solid #ffffff;
    padding: 0;
    overflow: hidden;
    border-radius: 4px;
}

/* Slider Grundlayout */
.slider {
    position: relative;
    width: 100%;
    height: 260px; /* kannst du anpassen */
    overflow: hidden;
}

.slider img {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
    top: 0;
    left: 0;
    opacity: 0;
    animation: sliderFade 8s infinite;
}

/* Bild 1 */
.slider img:nth-child(1) {
    animation-delay: 0s;
}

/* Bild 2 */
.slider img:nth-child(2) {
    animation-delay: 4s;
}

/* einfache Fade-Animation */
@keyframes sliderFade {
    0%   { opacity: 0; }
    5%   { opacity: 1; }
    45%  { opacity: 1; }
    50%  { opacity: 0; }
    100% { opacity: 0; }
}

/* Optional: Typografie */
.two-cols-sliders h3 {
    font-size: 1.6rem;
    margin-top: 1rem;
}

/* FADE-IN */
.fade-in {
  opacity:0;
  transform:translateY(40px);
  transition:all .6s ease;
}

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


.two-cols-sliders ul {
    padding-left: 1.2rem;
}







/* Footer-Info-Bereich */
.footer-info {
    background-color: #36454F; /*  */
    padding: 2rem 0; /* vertikale Abstände */
    font-size: 1.0rem;
    color: #fff; /* gruen */
}

/* Überschriften der Spalten */
.footer-info h6 {
    font-weight: 700;
    margin-bottom: 1rem;
    font-size: 1rem;
    color: #54a505; /* gruen */
}

/* Links */
.footer-info a {
    color: #fff;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-info a:hover {
    color: #888; /* Akzentfarbe beim Hover*/
    text-decoration: underline;
}

/* Abstand zwischen Links */
.footer-info .mb-1 {
    margin-bottom: 0.25rem !important;
}

/* Mobile: Text zentrieren, ab Medium links */
@media (max-width: 767.98px) {
    .footer-info .text-center {
        text-align: center !important;
    }
}


/* Primärer Button */

.btn-primary {
  background: #1a1a18;
  border-radius: 0px;
  border: 1px;
  padding-top: 15px;
  padding-right: 25px;
  padding-bottom: 15px;
  padding-left: 25px;
  font-size: 25px;
  margin-top: 50px;
  margin-bottom: 50px;
}

.btn-primary:hover {
  background: #009ee3;
  border-radius: 0px;
  border: none;
}





/* HERO WRAPPER */
.hero-video-wrapper {
  position: relative;
  width: 100%;
  overflow: hidden;
}

/* VIDEO */
.hero-video {
  width: 100%;
  height: 100vh;
  object-fit: cover;
  display: block;
}

/* OVERLAY */
.hero-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  color: #fff;
  z-index: 2;
  padding: 2rem;
  background: linear-gradient(
    rgba(0,0,0,0.45),
    rgba(0,0,0,0.25)
  );
  
}

/* MOBILE */
@media (max-width: 768px) {
  .hero-video {
    height: 85vh;
  }

  .hero-overlay {
    justify-content: flex-start;
    padding-top: 3rem;
  }
}


/* ===== Feature-Bereich Modul ===== */




/* ===== BACKTOTOP ===== */


.back-to-top-link {
  /* eigene Farb-Variablen */
  --cassiopeia-color-hover: #000;
  --link-hover-color: #000;

  z-index: 10;
  color: #fff;
  background: #009ee3;
  pointer-events: all;
  border: 0;
  opacity: 1;
  inset-inline-end: 1rem;
  border-radius: 0;
  padding: 20px;
  position: fixed;
  bottom: 1rem;

  transition:
    background-color .2s ease,
    transform .2s ease,
    opacity .2s ease;
}

/* Hover */
.back-to-top-link:hover {
  background-color: var(--cassiopeia-color-hover);
  transform: scale(1.05);
  opacity: 1;
}






/* ---------------------------------------------------
   ICON BARRIEREFREIHEIT 
--------------------------------------------------- */





i._access-icon._access {

    font-size: 0 !important;
    line-height: 0 !important;
    color: transparent !important;
    text-indent: -9999px !important;
    overflow: hidden !important;
  

    background-image: url('/images/svg/barrierefrei.svg'); 
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;

    display: inline-block;
    width: 50px;
    height: 50px;

    transform: none !important;
}



/* ---------------------------------------------------
   LOGIN 
--------------------------------------------------- */

/* Gesamtmodul — Rahmen entfernen */
.mod-login {
    border: none !important;
    box-shadow: none !important;
    padding: 0 !important;
    background: transparent !important;
}

/* Labels */
.mod-login label {
    font-weight: 500;
    color: #333;
}

/* Input-Felder */
.mod-login input[type="text"],
.mod-login input[type="password"] {
    background: #cccccc !important; /* grey */
    border: 1px solid #ccc !important;
    border-radius: 0 !important;
    padding: 10px !important;
    width: 100%;
    box-shadow: none !important;
}

/* Username + Icon Wrapper */
.mod-login .mod-login_username {
    display: flex;
}
.mod-login .mod-login_username input {
    border-right: none !important;
}
.mod-login .mod-login_username .input-group-text {
    background: #e0e0e0 !important;
    border-radius: 0 !important;
    border: 1px solid #ccc !important;
    border-left: none !important;
}

/* Password + Icon Wrapper */
.mod-login .mod-login_password {
    display: flex;
}
.mod-login .mod-login_password input {
    border-right: none !important;
}
.mod-login .mod-login_password .input-group-text {
    background: #e0e0e0 !important;
    border-radius: 0 !important;
    border: 1px solid #ccc !important;
    border-left: none !important;
}

/* Passkey Button */
.mod-login .passkey-login-btn {
    background: #e0e0e0 !important;
    border-radius: 0 !important;
    border: none !important;
    padding: 10px 12px !important;
    color: #111 !important;
    width: 100%;
}

/* Login Button */
.mod-login button[type="submit"] {
    width: 100%;
    background: #666 !important;
    border: none !important;
    border-radius: 0 !important;
    padding: 12px !important;
    color: #fff !important;
    font-weight: 600;
}

/* Checkbox */
.mod-login input[type="checkbox"] {
    accent-color: #444 !important;
}

/* Links */
.mod-login a {
    color: #444 !important;
    text-decoration: underline;
}


/* ---------------------------------------------------
   LOGIN Ende
--------------------------------------------------- */

/* Entfernt Firefox-Autofill-Hintergrund */
input:-moz-autofill,
textarea:-moz-autofill,
select:-moz-autofill {
    background-color: #cccccc !important; /* oder gewünschte Farbe */
    color: inherit !important;               /* Schriftfarbe beibehalten */
    
}




/* ---------------------------------------------------
   Sectionen + Sectionen Faden
--------------------------------------------------- */

.section-structure {
  background-color: #d1d1d1;
  border-top: 0px solid rgba(0,0,0,.05);
}

.section-spacing {
  padding-left: 3rem;
  padding-right: 2rem;
  }



/* Smooth Scroll für Anker */
@media (prefers-reduced-motion: no-preference) {
  html {
    scroll-behavior: smooth;
  }
}

/* Abstand wegen Header */
section {
  scroll-margin-top: 120px; /* ggf. an Headerhöhe anpassen */
}


/* ===== Fade-In beim Scroll ===== */
.fade-in{
  opacity:0;
  transform:translateY(40px);
  transition:all .8s ease;
}

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



/* ===== Bootstrap Icon Bibliothek ===== */
.list-unstyled li {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 6px;
}

.bi {
  font-size: 2.6rem;
  color: #fff;
}

.btn i {
  margin-left: 6px;
  
}


.icon {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}




/* ===== Bootstrap ende Icon Bibliothek ===== */








/* ===== ANIMATIONEN ===== */
[data-animate] {
  opacity: 1;
  transform: none;

  .js [data-animate] {
  opacity: 0;
  transform: translateY(140px);
  transition:
    opacity 0.6s ease-out,
    transform 0.6s cubic-bezier(.2,.6,.2,1);
}

.js [data-animate].animated {
  opacity: 1;
  transform: translateY(0);
}


  // X-Small devices (portrait phones, less than 576px)
// No media query for `xs` since this is the default in Bootstrap

// Small devices (landscape phones, 576px and up)
@media (min-width: 576px) { ... }

// Medium devices (tablets, 768px and up)
@media (min-width: 768px) { ... }

// Large devices (desktops, 992px and up)
@media (min-width: 992px) { ... }

// X-Large devices (large desktops, 1200px and up)
@media (min-width: 1200px) { ... }

// XX-Large devices (larger desktops, 1400px and up)
@media (min-width: 1400px) { ... }

