@charset "UTF-8";
/* SPSS-Datei für vstyle_navbar.css ####### */
/* Diese CSS-Datei ist ein Standard für die meisten Seiten.    */
/* 2026-01-13  -  Dirk John (Virtus Group GmbH, Hamm, Germany) */
/* ########################################################### */
/* =================================================
   Virtus Bootstrap Customisations
   Erstellt mit ChatGPT
================================================= */
/* -------------------------------------------------
   Farbdefinitionen
------------------------------------------------- */
/* -------------------------------------------------
   Weitere Farbdefinitionen
------------------------------------------------- */
/* Farben den IndexIcon-Kategorien */
/* Harmonisieren Farben zum Virtus Blau für die Webseite */
/* French Pass */
/* Malibu */
/* Allports */
/* Regal Blue */
/* Negroni */
/* Macaroni and Cheese */
/* Flush Orange */
/* Rose of Sharon */
.navbar-virtus {
  background-color: #011c48; /* virtusblau */
}

.navbar-virtus .nav-link,
.navbar-virtus .navbar-brand {
  color: #ffffff;
}

.navbar-virtus .nav-link:hover,
.navbar-virtus .nav-link:focus {
  color: #ff7e00; /* virtusorange */
}

.navbar-virtus .dropdown-menu {
  border-radius: 0.375rem;
}

.navbar-virtus .navbar-toggler {
  border-color: rgba(255, 255, 255, 0.4);
}

.navbar-virtus .navbar-toggler-icon {
  filter: invert(1);
}

/* Dark Mode NICHT verändern */
[data-bs-theme=dark] .navbar-virtus {
  background-color: #011c48;
}

/* -------------------------------------------------
   Font-Größe Navbar
------------------------------------------------- */
/* Für alle Links in der Navbar */
.navbar .nav-link {
  font-size: 1.3rem; /* Oder 18px, 1em usw. */
}

/* Für das Logo (navbar-brand) */
.navbar-brand {
  font-size: 1.5rem;
  font-weight: bold; /* Optional: Auch die Dicke ändern */
}

/* Für einen spezifischen Menüpunkt 
.navbar-nav .nav-item:last-child .nav-link {
    font-size: 0.9rem;
}
*/
/* =================================================
   Fix: Hamburger / Dropdown Lesbarkeit im Dark Mode
================================================= */
[data-bs-theme=dark] {
  /* Dropdown-Hintergrund */
}
[data-bs-theme=dark] .navbar-virtus .dropdown-menu {
  background-color: #1f2329;
  border-color: rgba(255, 255, 255, 0.15);
}
[data-bs-theme=dark] {
  /* Dropdown-Links */
}
[data-bs-theme=dark] .navbar-virtus .dropdown-item {
  color: #e6e6e6;
}
[data-bs-theme=dark] {
  /* Hover / Fokus */
}
[data-bs-theme=dark] .navbar-virtus .dropdown-item:hover,
[data-bs-theme=dark] .navbar-virtus .dropdown-item:focus {
  background-color: rgba(255, 255, 255, 0.1);
  color: #ffffff;
}
[data-bs-theme=dark] {
  /* Aktiver Menüpunkt */
}
[data-bs-theme=dark] .navbar-virtus .dropdown-item.active,
[data-bs-theme=dark] .navbar-virtus .dropdown-item:active {
  background-color: rgba(255, 255, 255, 0.2);
  color: #ffffff;
}

[data-bs-theme=dark] .navbar-virtus .navbar-nav .nav-link {
  color: #e6e6e6;
}
[data-bs-theme=dark] .navbar-virtus .navbar-nav .nav-link:hover {
  color: #ffffff;
}

/* =================================================
   Social Icons im Hamburger-Menü
================================================= */
.navbar-social-mobile {
  display: flex;
  justify-content: center; /* oder: flex-end */
  align-items: center;
  gap: 1rem;
  padding: 1rem 0;
}

.navbar-social-mobile a img {
  width: 22px;
  height: 22px;
  display: block;
}

/* Hover */
.navbar-social-mobile a:hover img {
  opacity: 0.8;
}

/* =====================================================
   MOBILE: Social Media Icons linksbündig
   ===================================================== */
@media (max-width: 1199.98px) {
  .navbar-social-mobile {
    display: flex;
    justify-content: flex-start; /* LINKS */
    gap: 1rem;
    margin: 1rem 0 0 0;
    /* padding-left: 0.75rem; /* bündig mit Menüpunkten */
  }
  .navbar-social-mobile img {
    height: 22px;
  }
}
/* Navbar Links */
.navbar .nav-link:hover,
.navbar .nav-link:focus {
  color: #ff7e00;
}

/* Dropdown Items */
.dropdown-menu .dropdown-item:hover,
.dropdown-menu .dropdown-item:focus {
  color: #ff7e00;
  background-color: transparent; /* kein graues Highlight */
}

/* Dark Mode Navbar */
[data-bs-theme=dark] .navbar .nav-link:hover,
[data-bs-theme=dark] .dropdown-menu .dropdown-item:hover {
  color: #ff7e00 !important;
}/*# sourceMappingURL=vstyle_navbar.css.map */