/* ===== Animated Underline ===== */

.header-right-section .as-menu-item{
  position:relative;
  text-decoration:none !important;
}

/* Linie vorbereitet */
.header-right-section .as-menu-item::after{
  content:"";
  position:absolute;
  left:0;
  width:0;
  height:2px;
  background:#fda82c;
  transition:width .25s ease;
  display:block;            
  pointer-events:none;      
}

/* Hover */
.header-right-section .as-menu-item:hover::after{
  width:100%;
}

/* Aktiver Menüpunkt */
.header-right-section .nav-item-active > .as-menu-item::after{
  width:100%;
}


.astroid-logo .astroid-logo-default {
  max-width: none;
  max-height: none;
}


/* Container-Look */
.uk-accordion {
  margin: 0;
  padding: 0;
  border-radius: 14px;
  background: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.08);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.06);
  overflow: hidden;
}

/* Eintrag */
.uk-accordion>li {
  margin: 0;
}

/* Trenner zwischen Items */
.uk-accordion>li+li {
  border-top: 1px solid rgba(0, 0, 0, 0.08);
}

/* Title-Button */
.uk-accordion-title {
  position: relative;
  display: flex;
  align-items: center;
  gap: 12px;

  padding: 16px 18px;
  margin: 0;

  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: 0.2px;
  line-height: 1.35;

  color: #111;
  background: linear-gradient(180deg, #ffffff 0%, #fbfbfb 100%);

  transition: background 0.25s ease, color 0.25s ease, padding-left 0.25s ease;
}

/* Link-Default von UIkit neutralisieren */
.uk-accordion-title:hover,
.uk-accordion-title:focus {
  text-decoration: none;
}

/* Accent-Bar links (Handwerk/Industrie feeling) */
.uk-accordion-title::before {
  content: "";
  width: 6px;
  height: 26px;
  border-radius: 8px;
  background: #fda628;
  flex: 0 0 auto;
  box-shadow: 0 0 0 3px rgba(253, 166, 40, 0.18);
}

/* UIkit Chevron/Arrow anpassen */
.uk-accordion-title::after {
  margin-left: auto;
  opacity: 0.7;
  transform: translateY(0);
  transition: transform 0.25s ease, opacity 0.25s ease;
}

/* Hover – leicht “griffig” */
.uk-accordion-title:hover {
  background: linear-gradient(180deg, #fff 0%, rgba(253, 166, 40, 0.08) 100%);
  padding-left: 22px;
}

/* Active state */
.uk-accordion>li.uk-open>.uk-accordion-title {
  background: linear-gradient(180deg, rgba(253, 166, 40, 0.14) 0%, #ffffff 70%);
  color: #111;
}

/* Active chevron rotate */
.uk-accordion>li.uk-open>.uk-accordion-title::after {
  transform: rotate(180deg);
  opacity: 1;
}

/* Content */
.uk-accordion-content {
  margin: 0;
  padding: 2px 18px 18px 30px;

  color: rgba(0, 0, 0, 0.78);
  font-size: 0.98rem;
  line-height: 1.7;
}

/* Content-Links in Accent */
.uk-accordion-content a {
  color: #b86e00;
  /* dunkler als #fda628 für Lesbarkeit */
  font-weight: 600;
  text-decoration: none;
  border-bottom: 1px solid rgba(253, 166, 40, 0.55);
}

.uk-accordion-content a:hover {
  border-bottom-color: #fda628;
}

/* Optional: kleine “Glas”-Highlight Linie im Content */
.uk-accordion-content::before {
  content: "";
  display: block;
  height: 1px;
  margin: 10px 0 14px;
  background: linear-gradient(90deg, rgba(253, 166, 40, 0.55), rgba(0, 0, 0, 0));
}

/* Mobile Feinschliff */
@media (max-width: 640px) {
  .uk-accordion-title {
    padding: 14px 14px;
    font-size: 1rem;
  }

  .uk-accordion-content {
    padding: 2px 14px 16px 24px;
  }
}



/* ================================
   Widgetkit Kachel -> moderne Card
   Hauptfarbe: #fda628
================================ */

/* Card-Container */
.uk-panel.uk-transition-toggle {
  position: relative;
  border: 1px solid rgba(0, 0, 0, .08);
  border-radius: 16px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 12px 26px rgba(0, 0, 0, .07);
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}

/* Hover-Lift */
.uk-panel.uk-transition-toggle:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 36px rgba(0, 0, 0, .12);
  border-color: rgba(253, 166, 40, .45);
}

/* Die riesigen UK-Margins entschärfen */
.uk-panel.uk-transition-toggle .uk-margin {
  margin: 0 !important;
}

/* Bildbereich als „Header“ */
.uk-panel.uk-transition-toggle .uk-text-center {
  padding: 18px 18px 10px;
}

/* Bild-Wrapper: ruhiger Hintergrund + zentriert */
.uk-panel.uk-transition-toggle .uk-inline-clip {
  width: 100%;
  border-radius: 14px;
  background: linear-gradient(180deg, rgba(0, 0, 0, .03), rgba(0, 0, 0, 0));
  padding: 14px;
  display: grid;
  place-items: center;
}

/* Bild selbst */
.uk-panel.uk-transition-toggle img {
  max-width: 100%;
  height: auto;
  display: block;
  filter: drop-shadow(0 10px 14px rgba(0, 0, 0, .14));
  transform: scale(1);
  transition: transform .35s ease;
}

/* Bild beim Hover subtil zoomen */
.uk-panel.uk-transition-toggle:hover img {
  transform: scale(1.04);
}

/* Overlay (das Plus) schöner / weniger „massiv“ */
.uk-panel.uk-transition-toggle .uk-overlay-primary {
  background: rgba(17, 17, 17, .55) !important;
  backdrop-filter: blur(2px);
}

.uk-panel.uk-transition-toggle .uk-overlay-icon svg rect {
  fill: #fff;
  opacity: .95;
}

/* Textblock */
.uk-panel.uk-transition-toggle .uk-margin>div {
  padding: 10px 18px 14px;
}

/* Titel */
.uk-panel.uk-transition-toggle h3 {
  margin: 0 0 6px !important;
  font-size: 1.25rem;
  line-height: 1.2;
  font-weight: 800;
  color: #121212;
}

/* Subline als Eyebrow/Badge-Style */
.uk-panel.uk-transition-toggle h4 {
  margin: 0 !important;
  font-size: .85rem;
  letter-spacing: .08em;
  text-transform: uppercase;
  font-weight: 700;
  color: rgba(0, 0, 0, .65);
  padding-left: 12px;
  position: relative;
}

/* Accent-Strich links an der Subline */
.uk-panel.uk-transition-toggle h4::before {
  content: "";
  position: absolute;
  left: 0;
  top: .35em;
  width: 6px;
  height: 1.1em;
  border-radius: 6px;
  background: #fda628;
}

/* Button Bereich */
.uk-panel.uk-transition-toggle p {
  margin: 0 !important;
  padding: 0 18px 18px;
}

/* Button modern */
.uk-panel.uk-transition-toggle .uk-button.uk-button-default {
  width: 100%;
  border-radius: 12px;
  border: 1px solid rgba(253, 166, 40, .55);
  background: linear-gradient(180deg, rgba(253, 166, 40, .18), rgba(253, 166, 40, .08));
  color: #111;
  font-weight: 800;
  letter-spacing: .02em;
  text-transform: none;
  transition: transform .2s ease, background .2s ease, border-color .2s ease;
}

/* Button Hover */
.uk-panel.uk-transition-toggle:hover .uk-button.uk-button-default {
  background: #fda628;
  border-color: #fda628;
  color: #111;
  transform: translateY(-1px);
}

/* Der Klick-Cover-Link soll die Card nicht „killen“ */
.uk-panel.uk-transition-toggle>a.uk-position-cover {
  border-radius: 16px;
}

.custom-shape-divider-bottom-1771502080 {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
    transform: rotate(180deg);
}

.custom-shape-divider-bottom-1771502080 svg {
    position: relative;
    display: block;
    width: calc(214% + 1.3px);
    height: 150px;
    transform: rotateY(180deg);
}

.custom-shape-divider-bottom-1771502080 .shape-fill {
    fill: #FFFFFF;
}

/* ===== HERO ===== */
.bg-hero {
  position: relative;
  overflow: hidden;
}

.bg-hero-img {
  width: 100%;
  height: 90vh;
  object-fit: cover;
  display: block;
}

/* Overlay: links schwarz, rechts transparent */
.bg-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg,
      rgba(0, 0, 0, 0.85) 0%,
      rgba(0, 0, 0, 0.65) 30%,
      rgba(0, 0, 0, 0.35) 55%,
      rgba(0, 0, 0, 0.0) 80%);
}

/* Content */
.bg-hero-content {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  /* Text linksbündig */
  text-align: left;
  padding: clamp(20px, 6vw, 80px);
  z-index: 2;
  max-width: 780px;
}

/* Alles reinweiß */
.bg-hero-content,
.bg-hero-content h1,
.bg-hero-content div,
.bg-hero-content p {
  color: #ffffff;
}


/* Accent Badge */
.bg-hero-badge {
  display: inline-block;
  background: #fda628;
  color: #111;
  font-weight: 800;
  padding: 8px 16px;
  border-radius: 10px;
  margin-bottom: 16px;
}

/* Titel */
.bg-hero-title {
  font-size: clamp(30px, 3.8vw, 56px);
  line-height: 1.1;
  font-weight: 800;
  margin-bottom: 18px;
}

/* Text */
.bg-hero-text {
  font-size: clamp(15px, 1.2vw, 18px);
  line-height: 1.7;
  margin-bottom: 26px;
}

/* Button */
.bg-hero-btn {
  background: #fda628;
  color: #111;
  font-weight: 800;
  border-radius: 12px;
  padding: 12px 24px;
  border: none;
}

.bg-hero-btn:hover {
  background: #ffb84d;
  color: #111;
}

#astroid-header>div:nth-child(1)>div:nth-child(4) {
  margin-top: 70px;
}

/* ===== Header Fixes ===== */

.astroid-logo-default{
  margin-bottom:-50px;
}

.shadow-sm,
.border-bottom,
.astroid-header-section{
  box-shadow:none !important;
  border-bottom:none !important;
}



