/* ===========================
   ZÁKLAD NAVBARU
   =========================== */

.navbar-color {
  background-color: #ffffff !important;
}

.shadow-menu {
  box-shadow: 0 0 20px 20px rgba(182, 182, 182, 0.1);
}

/* Logo */
.navbar-brand img {
  height: 40px;
}

/* ===========================
   ODKAZY – DESKTOP (ZACHOVÁNO)
   =========================== */

.navbar-nav .nav-link {
  font-weight: 700;
  font-size: 14px;
  text-transform: uppercase;
  color: #2b2036 !important;
  padding: 0;
  margin-left: 40px;
}

.navbar-nav .nav-link:hover {
  color: #1a4bec !important;
}

/* ===========================
   CUSTOM TOGGLER
   =========================== */

.menu-toggle {
  display: none;
}

.custom-toggler {
  border: none;
  background: none;
  padding: 0;
  cursor: pointer;
  z-index: 1060;
}

.custom-toggler-icon {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 38px;
  height: 32px;
}

.custom-toggler-icon .bar {
  height: 5px;
  width: 100%;
  background-color: #3b2153;
  transition: background-color 0.3s ease;
}

.custom-toggler:hover .bar {
  background-color: #2802fc;
}

/* ===========================
   MOBILNÍ PANEL ZPRAVA
   =========================== */

@media (max-width: 991.98px) {

  /* PANEL */
  .navbar-collapse {
    position: fixed;
    top: 0;
    right: 0;
    width: 85%;
    max-width: 320px;
    height: 100vh;
    background: #ffffff;
    box-shadow: none; /* BEZ STÍNU */
    transform: translateX(100%);
    transition: transform 0.35s ease;
    padding-top: 90px;
    z-index: 1050;
  }

  /* otevření panelu */
  .menu-toggle:checked ~ .navbar-collapse {
    transform: translateX(0);
  }

  /* Overlay */
  .menu-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.35);
    opacity: 0;
    visibility: hidden;
    transition: 0.3s ease;
    z-index: 1040;
  }

  .menu-toggle:checked ~ .menu-overlay {
    opacity: 1;
    visibility: visible;
  }

  /* hamburger zmizí */
  .menu-toggle:checked + .custom-toggler {
    display: none;
  }

  /* ===========================
     ZAVÍRACÍ X
     =========================== */

  .navbar-collapse .menu-close {
    display: none;
  }

  .menu-toggle:checked ~ .navbar-collapse .menu-close {
    display: block;
    position: absolute;
    top: 16px;
    right: 22px;
    font-size: 42px;
    font-weight: 900;
    line-height: 1;
    cursor: pointer;
    color: #3b2153;
    z-index: 1060;
  }

  .navbar-collapse .menu-close:hover {
    color: #2802fc;
  }

  /* ===========================
     ODKAZY – MOBIL (STEJNÝ STYL)
     =========================== */

  .navbar-nav {
    padding: 0;
  }

  .navbar-nav .nav-link {
    display: block;
    margin-left: 0;
    padding: 18px 26px;
    font-size: 18px;
    border-bottom: 1px solid #eee;
    font-weight: 700;
    text-transform: uppercase;
    color: #2b2036 !important;
  }

  .navbar-nav .nav-item:last-child .nav-link {
    border-bottom: none;
  }

  .navbar-nav .nav-link:hover {
    background-color: #f6f6f6;
    color: #1a4bec !important;
  }
}