.elementor-15 .elementor-element.elementor-element-6f5f8e2{--display:flex;--flex-direction:row;--container-widget-width:initial;--container-widget-height:100%;--container-widget-flex-grow:1;--container-widget-align-self:stretch;--flex-wrap-mobile:wrap;--margin-top:0px;--margin-bottom:0px;--margin-left:0px;--margin-right:0px;--padding-top:0px;--padding-bottom:0px;--padding-left:0px;--padding-right:0px;}.elementor-15 .elementor-element.elementor-element-f6f1f23{width:100%;max-width:100%;margin:0px 0px calc(var(--kit-widget-spacing, 0px) + 0px) 0px;padding:0px 0px 0px 0px;}/* Start custom CSS for html, class: .elementor-element-f6f1f23 *//* ============================================
   FIS Sanierung — Header Styles
   ============================================ */

:root {
  --primary-color: #0b1424;
  --accent-color:  #f59e0b;
  --text-color:    #2e3540;
  --bg-color:      #ffffff;
  --transition:    all 0.22s ease;
}

/* ── Base Header ───────────────────────────── */
.site-header {
  position: sticky;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 9999;
  background-color: var(--bg-color);
  border-bottom: 1px solid rgba(0, 0, 0, 0.07);
  transition: var(--transition);
}

.admin-bar .site-header {
  top: 32px;
}

.site-header.scrolled {
  box-shadow: 0 2px 20px rgba(11, 20, 36, 0.10);
}

/* ── Container — 3-column: logo | nav | hamburger ── */
.header-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2.5rem;
  height: 64px;
  overflow: hidden;
  display: grid;
  grid-template-columns: 200px 1fr 200px;
  align-items: center;
}

/* ── Logo ──────────────────────────────────── */
.logo-link {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  justify-content: flex-start;
  overflow: hidden;
  height: 100%;
}

.header-logo {
  height: 56px;
  max-height: 56px;
  width: auto;
  max-width: 180px;
  display: block;
  object-fit: contain;
  object-position: left center;
  flex-shrink: 0;
  transition: height 0.22s ease;
}

.site-header.scrolled .header-logo {
  height: 48px;
  max-height: 48px;
}

/* ── Navigation — centered ─────────────────── */
.nav-menu {
  display: flex;
  justify-content: center;
}

.nav-list {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 0.2rem;
  margin: 0;
  padding: 0;
}

.nav-link {
  text-decoration: none;
  color: var(--text-color);
  font-weight: 600;
  font-size: 0.78rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  cursor: pointer;
  padding: 0.45rem 0.75rem;
  border-radius: 4px;
  display: inline-block;
  transition: var(--transition);
  position: relative;
}

.nav-link:not(.contact-btn):hover {
  color: var(--primary-color);
  background: rgba(11, 20, 36, 0.05);
}

.nav-link.active:not(.contact-btn) {
  color: var(--primary-color);
}

.nav-link.active:not(.contact-btn)::after {
  content: '';
  position: absolute;
  bottom: 4px;
  left: 0.75rem;
  right: 0.75rem;
  height: 2px;
  background: var(--accent-color);
  border-radius: 2px;
}

/* ── Contact Button ────────────────────────── */
.contact-btn {
  background: var(--primary-color);
  color: #ffffff !important;
  padding: 0.5rem 1.2rem;
  border-radius: 4px;
  margin-left: 0.4rem;
  letter-spacing: 0.8px;
}

.contact-btn:hover {
  background: var(--accent-color) !important;
  color: var(--primary-color) !important;
}

/* ── Hamburger (hidden on desktop) ─────────── */
.header-right {
  display: flex;
  justify-content: flex-end;
}

.menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 36px;
  height: 36px;
  align-items: center;
  justify-content: center;
  gap: 5px;
  background: transparent;
  border: 1px solid rgba(11, 20, 36, 0.12);
  border-radius: 8px;
  cursor: pointer;
  padding: 8px;
  outline: none;
  transition: background 0.22s ease, border-color 0.22s ease;
}

.menu-toggle .bar {
  width: 18px;
  height: 2px;
  background-color: var(--primary-color);
  border-radius: 2px;
  display: block;
  transition: var(--transition);
  flex-shrink: 0;
}

.menu-toggle:hover {
  background: rgba(11, 20, 36, 0.06);
  border-color: rgba(11, 20, 36, 0.22);
}

.menu-toggle:hover .bar {
  background-color: var(--primary-color);
}

.menu-toggle:focus {
  outline: none;
}

.menu-toggle:focus-visible {
  outline: 2px solid var(--accent-color);
  outline-offset: 4px;
  border-radius: 8px;
}

/* ══════════════════════════════════════════════
   TABLET / MOBILE  ≤ 1024px
   ══════════════════════════════════════════════ */
@media (max-width: 1024px) {

  .header-container {
    grid-template-columns: auto 1fr auto;
    padding: 0 1.5rem;
    height: 56px;
    overflow: hidden;
    gap: 0;
  }

  .logo-link {
    justify-content: flex-start;
    padding-right: 0;
  }

  .header-logo {
    height: 44px;
    max-height: 44px;
    max-width: 130px;
  }

  .site-header.scrolled .header-logo {
    height: 36px;
    max-height: 36px;
  }

  .menu-toggle {
    display: flex;
  }

  /* Dropdown meni */
  .nav-menu {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background-color: var(--bg-color);
    border-top: 1px solid rgba(0,0,0,0.07);
    border-bottom: 2px solid var(--primary-color);
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.32s ease, box-shadow 0.32s ease;
    justify-content: flex-start;
  }

  .nav-menu.is-open {
    max-height: 440px;
    box-shadow: 0 14px 30px rgba(11, 20, 36, 0.10);
  }

  .nav-list {
    flex-direction: column;
    align-items: stretch;
    padding: 1rem 1.5rem 1.5rem;
    gap: 0.2rem;
    width: 100%;
  }

  .nav-link {
    display: block;
    padding: 0.75rem 1rem;
    font-size: 0.82rem;
    border-radius: 6px;
  }

  .nav-link.active:not(.contact-btn)::after {
    bottom: 8px;
    left: 1rem;
    right: 1rem;
  }

  .contact-btn {
    margin-left: 0;
    margin-top: 0.4rem;
    text-align: center;
    width: 100%;
    box-sizing: border-box;
  }

  /* X animacija hamburgera */
  .menu-toggle.is-active .bar:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }

  .menu-toggle.is-active .bar:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
  }

  .menu-toggle.is-active .bar:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }

  .menu-toggle.is-active {
    background: rgba(11, 20, 36, 0.06);
    border-color: rgba(11, 20, 36, 0.22);
  }
}

/* ══════════════════════════════════════════════
   SMALL MOBILE  ≤ 480px
   ══════════════════════════════════════════════ */
@media (max-width: 480px) {
  .header-container {
    padding: 0 1.1rem;
    height: 52px;
  }

  .header-logo {
    height: 38px;
    max-height: 38px;
    max-width: 110px;
  }
}

/* ── WordPress admin bar fix ───────────────── */
@media (max-width: 600px) {
  .admin-bar .site-header {
    top: 46px;
  }
}/* End custom CSS */