@charset "UTF-8";
/* ===============================
   THEME VARIABLEN
================================ */
.jh-theme {
  --jh-gold: rgba(212, 175, 55, 0.85);
  --jh-gold-soft: rgba(212, 175, 55, 0.35);
  --jh-panel-bg: rgba(30, 22, 18, 0.72);
  --jh-card-bg: rgba(38, 28, 23, 0.75);
  --jh-text: rgba(238, 238, 238, 0.92);
  background: url(../../../images/leder-bg.png);
}

/* ===============================
   SEITEN-FLOW (uk-section)
================================ */
.jh-theme .uk-section {
  padding-top: 80px;
  padding-bottom: 80px;
}

.jh-theme .uk-section + .uk-section {
  padding-top: 100px;
}

/* ===============================
   PANEL / BOXEN (uk-card)
================================ */
.jh-theme .uk-card {
  position: relative;
  /* Grundfläche */
  background: radial-gradient(120% 80% at 50% 0%, rgba(255, 255, 255, 0.06), rgba(0, 0, 0, 0) 60%), rgba(38, 28, 23, 0.75);
  border-radius: 8px;
  /* feiner Goldrand */
  border: 1px solid rgba(212, 175, 55, 0.18);
  /* Tiefe + Prägung */
  box-shadow: 0 22px 42px rgba(0, 0, 0, 0.45), 0 6px 14px rgba(0, 0, 0, 0.35), inset 0 0 0 1px rgba(0, 0, 0, 0.45), inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.jh-theme .uk-card::after {
  content: "";
  position: absolute;
  left: 16%;
  right: 16%;
  bottom: -2px;
  height: 3px;
  background: linear-gradient(90deg, transparent, rgba(212, 175, 55, 0.65), transparent);
  filter: blur(1.2px);
  opacity: 0.9;
  pointer-events: none;
}

.jh-theme .uk-card:hover {
  box-shadow: 0 28px 56px rgba(0, 0, 0, 0.55), 0 10px 22px rgba(0, 0, 0, 0.45), inset 0 0 0 1px rgba(0, 0, 0, 0.45), inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.jh-theme .uk-card:hover::after {
  opacity: 1;
  filter: blur(1.6px);
}

/* Card-Body Flow */
.jh-theme .uk-card-body > * + * {
  margin-top: 18px;
}

/* ===============================
   GRID-CARDS (Leistungen etc.)
================================ */
.jh-theme .uk-grid > .uk-card {
  background: var(--jh-card-bg);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.35), inset 0 0 0 1px rgba(212, 175, 55, 0.18);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.jh-theme .uk-grid > .uk-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 36px rgba(0, 0, 0, 0.45), inset 0 0 0 1px rgba(212, 175, 55, 0.35);
}

/* ===============================
   TYPO IN BOXEN
================================ */
.jh-theme .uk-card h1,
.jh-theme .uk-card h2,
.jh-theme .uk-card h3 {
  color: var(--jh-gold);
  letter-spacing: 0.03em;
}

.jh-theme .uk-card p {
  line-height: 1.7;
}

/* ===============================
   DIVIDER (uk-hr)
================================ */
.jh-theme .uk-hr {
  border: none;
  height: 1px;
  margin: 56px 0;
  background: linear-gradient(to right, transparent, var(--jh-gold), transparent);
  opacity: 0.8;
}

/* ===============================
   SECTION HEAD FLOW
================================ */
.jh-theme h2 + .uk-hr {
  margin-top: 24px;
}

/* ===============================
   BUTTONS (optional, aber stimmig)
================================ */
.jh-theme .uk-button-primary {
  background: rgba(212, 175, 55, 0.95);
  color: #1b1411;
  border-radius: 6px;
}

.jh-theme .uk-button-primary:hover {
  background: rgb(212, 175, 55);
}

.jh-theme .uk-button-default {
  background: transparent;
  color: var(--jh-gold);
  border: 1px solid rgba(212, 175, 55, 0.6);
  border-radius: 6px;
}

.jh-theme .uk-button-default:hover {
  background: rgba(212, 175, 55, 0.15);
  color: #fff;
}

/* ===============================
   HERO FULL
================================ */
.jh-theme .heroSection {
  height: 100vh;
  width: 100vw;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 0;
}

.jh-theme {
  /* Card-Rahmen bleibt */
}
.jh-theme .uk-slideshow {
  position: relative;
  padding: 0;
  border-radius: 10px;
  overflow: hidden;
  background: rgba(18, 12, 10, 0.55);
  border: 1px solid rgba(212, 175, 55, 0.18);
  box-shadow: 0 22px 42px rgba(0, 0, 0, 0.45), 0 6px 14px rgba(0, 0, 0, 0.35), inset 0 0 0 1px rgba(0, 0, 0, 0.45), inset 0 1px 0 rgba(255, 255, 255, 0.05);
}
.jh-theme {
  /* Stack sauber definieren */
}
.jh-theme .uk-slideshow .uk-position-relative {
  position: relative;
}
.jh-theme {
  /* Slides - NUR z-index, NICHT position ändern (Animation braucht absolute) */
}
.jh-theme .uk-slideshow .uk-slideshow-items {
  position: relative;
  z-index: 1;
}
.jh-theme .uk-slideshow .uk-slideshow-items img {
  position: relative;
  z-index: 1;
}
.jh-theme {
  /* Verlauf direkt auf dem Slide-Item */
}
.jh-theme .uk-slideshow .el-item::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 65%;
  z-index: 2;
  pointer-events: none;
  background: linear-gradient(to top, rgba(8, 6, 6, 0.92) 0%, rgba(8, 6, 6, 0.7) 28%, rgba(8, 6, 6, 0.28) 62%, rgba(8, 6, 6, 0) 100%);
}
.jh-theme {
  /* Caption Container - Flexbox für Positionierung */
}
.jh-theme .uk-slideshow .uk-position-cover {
  position: absolute;
  z-index: 10; /* ÜBER allem: Gradient (2), Dots (6), el-overlay (5) */
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: center;
  padding: 0 40px 140px; /* Deutlich über den Dots positionieren */
}
.jh-theme .uk-slideshow .el-overlay {
  position: relative;
  z-index: 5;
  padding: 0;
  background: none;
  border: none;
  box-shadow: none;
  width: 100%;
  max-width: 700px;
}
.jh-theme .uk-slideshow .el-title {
  margin: 0 0 12px 0;
  color: rgba(255, 255, 255, 0.96);
  letter-spacing: 0.02em;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.7);
  z-index: 10;
}
.jh-theme .uk-slideshow .el-content {
  margin: 0;
  color: rgba(255, 255, 255, 0.85);
  text-shadow: 0 1px 6px rgba(0, 0, 0, 0.5);
}
.jh-theme {
  /* Dotnav: Container und Punkte nach vorn + klarer Stil (UIkit Override-sicher) */
}
.jh-theme .uk-slideshow .uk-position-bottom-center {
  z-index: 6;
}
.jh-theme .uk-slideshow .uk-dotnav > li > a {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: rgba(212, 175, 55, 0.26);
  border: 1px solid rgba(212, 175, 55, 0.38);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06);
}
.jh-theme .uk-slideshow .uk-dotnav > li.uk-active > a {
  background: rgba(212, 175, 55, 0.88);
  border-color: rgba(212, 175, 55, 0.6);
  box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.18);
}

/*# sourceMappingURL=custom.css.map */
