/* =============================================================
   css_embyt.css – embyt GmbH custom styles
   ============================================================= */

/* --------------------------------------------------------------
   Bootstrap utility extensions
-------------------------------------------------------------- */

.mt-10 {
  margin-top: 10.5rem !important;
}

.mb-6 {
  margin-bottom: 4.5rem !important;
}

@media (min-width: 1400px) {
  .mt-xxl-2 {
    margin-top: 0.5rem !important;
  }
}

/* --------------------------------------------------------------
   Bounce animation for hero logo (from animate.css v3.5.1,
   MIT License, © Daniel Eden — extracted subset only)
-------------------------------------------------------------- */

.animated {
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}

.bounce {
  -webkit-animation-name: bounce;
  animation-name: bounce;
  -webkit-transform-origin: center bottom;
  transform-origin: center bottom;
}

@keyframes bounce {
  0%,
  20%,
  53%,
  80%,
  to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
  40%,
  43% {
    -webkit-animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    -webkit-transform: translate3d(0, -30px, 0);
    transform: translate3d(0, -30px, 0);
  }
  70% {
    -webkit-animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    -webkit-transform: translate3d(0, -15px, 0);
    transform: translate3d(0, -15px, 0);
  }
  90% {
    -webkit-transform: translate3d(0, -4px, 0);
    transform: translate3d(0, -4px, 0);
  }
}

/* --------------------------------------------------------------
   Download page styles
-------------------------------------------------------------- */

.dl-section {
  padding: 56px 0 40px;
}
.dl-section:nth-child(odd) {
  background: #fff;
}
.dl-section:nth-child(even) {
  background: #f0f8fa;
}

.dl-section h2 {
  font-family: "Montserrat", sans-serif;
  font-size: 1.35rem;
  font-weight: 700;
  color: #0205a1;
  margin-bottom: 24px;
  padding-bottom: 10px;
  border-bottom: 2px solid #9ed9e6;
}

.dl-section ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.dl-section ul li {
  padding: 10px 0 10px 1.4rem;
  text-indent: -1.4rem;
  border-bottom: 1px solid #e8f4f7;
  font-family: "Open Sans", sans-serif;
  font-size: 0.92rem;
  color: #444;
}

.dl-section ul li:last-child {
  border-bottom: none;
}

.dl-section ul li::before {
  content: none;
}

.dl-section ul li a:first-child::before {
  content: "\F30A";
  font-family: "bootstrap-icons";
  font-size: 0.85rem;
  color: #9ed9e6;
  margin-right: 6px;
}

.dl-section ul li a {
  color: #0205a1;
  font-weight: 600;
  text-decoration: none;
  transition: color 0.2s;
}

.dl-section ul li a:hover {
  color: #1acc8d;
  text-decoration: underline;
}

.dl-section article {
  scroll-margin-top: 80px;
}

/* "Downloads enline" label in hero */
#hero .dl-page-label {
  display: inline-block;
  font-family: "Montserrat", sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #fff;
  background: rgba(2, 5, 161, 0.35);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 40px;
  padding: 10px 28px;
  margin-top: 48px;
}

/* Download page sticky subnav */
.dl-subnav {
  position: sticky;
  top: 80px;
  z-index: 100;
  background: #9ed9e6;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.dl-subnav nav {
  display: flex;
  gap: 4px;
  padding: 0 8px;
  overflow-x: auto;
}

.dl-subnav nav a {
  display: block;
  padding: 12px 18px;
  color: #fff;
  font-family: "Poppins", sans-serif;
  font-size: 0.9rem;
  font-weight: 500;
  text-decoration: none;
  white-space: nowrap;
  border-bottom: 3px solid transparent;
  transition:
    border-color 0.2s,
    color 0.2s;
}

.dl-subnav nav a:hover,
.dl-subnav nav a.active {
  color: #fff;
  border-bottom-color: #343a40;
}

/* --------------------------------------------------------------
   Network/schedule image scaling
-------------------------------------------------------------- */

ul {
  list-style: none;
}

*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

@media (min-width: 768px) {
  img {
    scale: 70%;
  }
}

@media (min-width: 992px) {
  img {
    scale: 95%;
  }
}
