/*
Theme Name: Avada Child
Description: Child theme for Avada theme
Author: ThemeFusion
Author URI: https://theme-fusion.com
Template: Avada
Version: 1.0.0
Text Domain:  Avada
*/

/* Site Layout Margin Left / Right */
html.avada-is-100-percent-template #main.width-100 {
  margin: 0px 0% 0% 0%;
}

/* Blur Effect - Home Page - Video Hero */
.glassed {
  backdrop-filter: blur(80px)  opacity(0.5);
  -webkit-backdrop-filter: blur(80px) opacity(0.5) ;
}

/* Blur Effect - Single Project Layout - Hero */
.glassed-bold {
  backdrop-filter: blur(80px);
  -webkit-backdrop-filter: blur(80px);
}


/* Eigene Klasse zum Verstecken von Elementen */
.invisible {
  display: none !important;
}

/*
header {
  overflow: hidden;
}
*/


/*  Sibentrennung */

body {
  hyphens: auto;
  -webkit-hyphens: auto;
  -ms-hyphens: auto;
}

p {
  hyphens: auto;
}


/*  Styling Aufzaehlungspunkte */

/* Liste ohne Standard-Bullets */
ul.custom-list {
  list-style: none;
  padding-left: 0;
  margin: 0;
}

/* Listeneinträge übernehmen Typografie vom Fusion Title */

ul.custom-list li,
.fusion-title .custom-list li,
.fusion-title .custom-list li a {
  font-family: "Roboto Mono", monospace;
  font-weight: 400;
  font-style: normal;
  font-size: 17.5px;
  line-height: 1.38;
  letter-spacing: 0.04em;
  color: var(--awb-color8);
}

/* Grundlayout */
ul.custom-list li {
  position: relative;
  padding-left: 2em;
  display: block;
  margin-bottom: 0.6em;
}

/* Bullet */
ul.custom-list li::before {
  content: "–";
  color: #66D9A9;
  position: absolute;
  left: 0;
  top: 0.05em;
  font-size: 1.5em;
  line-height: 1;
}

/* MOBILE OPTIMIERUNG (Avada Breakpoints) */
@media (max-width: 768px) {
  ul.custom-list li,
  .fusion-title .custom-list li,
  .fusion-title .custom-list li a {
    font-size: 16px; /* stabil statt em-Vererbung */
  }

  ul.custom-list li::before {
    top: 0.1em; /* bessere optische Flucht bei kleineren Zeilenhöhen */
  }
}






/* Responsive Anpassungen */
@media (max-width: 768px) {
  ul.custom-list li {
    padding-left: 1.8em;
    font-size: 0.9em;
  }
  ul.custom-list li::before {
    font-size: 1.3em;
    top: -0.15em;               /* proportional nach oben korrigieren */
  }
}

@media (max-width: 480px) {
  ul.custom-list li {
    padding-left: 1.5em;
    font-size: 0.85em;
  }
  ul.custom-list li::before {
    font-size: 1.3em;
    top: -0.1em;                /* proportional nach oben korrigieren */
  }
}

/* ----- Linkfarbe -----  */

/* Standardfarbe schwarz */
.link-hover-white a {
  color: #303133 !important;           /* normale Linkfarbe */
  text-decoration: none;    /* Unterstrich entfernen */
  transition: color 0.2s ease; /* sanfte Farbübergänge */
}

/* Hover und aktueller Menüpunkt */
.link-hover-white a:hover,
.link-hover-white .current-menu-item > a {
  color: #ffffff !important; /* weiß beim Hover / aktiv */
  text-decoration: none !important;     /* Unterstrich verhindern */
}



/* Menue update */

.menu-text:hover,
.current-menu-item .menu-text {
  color: #ffffff !important;
  transition: color 0.2s ease; /* sanfte Farbübergänge */
}

.menu-hover-white a {
  position: relative;
  transition: color 0.3s ease;
}


/* Hoverfarbe */
.menu-hover-white a:hover {
  color: #ffffff !important;
}


/* Schwarzer Link mit Pfeil-Animation */
.link-black {
  color: #303133;
  text-decoration: none;
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.link-black::after {
  content: "→";
  font-size: 0.9em;
  opacity: 0;
  transform: translateX(-6px);
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.link-black:hover {
  color: #303133 !important;
  text-decoration: underline !important;
}

.link-black:hover::after {
  opacity: 1;
  transform: translateX(0);
}


/* transparenter Avada Button */
.btn-white-outline {
  background: transparent !important;
  background-image: none !important;
  color: #ffffff !important;
  border: 0px solid #ffffff !important;
}

/* Hover */
.btn-white-outline:hover {
  background: transparent !important;
  color: #ffffff !important;
  border-color: #ffffff !important;
}



/* Akkordion */
.fusion-accordian .fusion_faq .fusion-faqs-wrapper .fusion-faq-title {
    border-bottom: 2px dotted #454647 !important;
    padding-bottom: 22px;
    margin-bottom: 12px;
	padding-top: 22px;
    margin-top: 16px;   
}

.pan-bg {
  background-size: cover;
  animation: panBg 30s linear infinite;
}

@keyframes panBg {
  0% { background-position: center top; }
  100% { background-position: center bottom; }
}


.fusion-dropcap {
  font-size: 90px !important;

}

html {
  scroll-behavior: smooth !important;
}

/* Automatisch Number Of Inline Columns 1 - Bei Mobil Version */

@media only screen and (max-width: 768px) { .fusion-text { column-count: 1 !important; } }


/* Anpassung Top the Top Button Mobile */

@media only screen and (max-width: 768px) {
  .fusion-to-top {
    left: 15px !important;
    right: auto !important;
    bottom: 15px;
  }
}

/* Text bold */
strong, b {
  font-weight: 700 !important;
}

/* Link Laufband */
.fusion-title-5 a {
    color: #66d9a9 !important;
}