/* Globale Menü-Stile */
.u-navbar {
  background-color: #333333 !important; /* Dunkelgraue Menü-Hintergrundfarbe */
  color: #ffffff !important; /* Einheitliche Schriftfarbe */
}

.u-navbar a {
  color: #ffffff !important; /* Einheitliche Linkfarbe */
}

.u-navbar a:hover {
  color: #cccccc !important; /* Hover-Effekt für Links */
}

/* Desktop-Ansicht */
@media (min-width: 1200px) {
  .u-section-6 .u-sheet-1 {
    min-height: 768px;
  }
  .u-navbar .u-nav-item {
    display: inline-block;
  }
}

/* Tablet-Ansicht */
@media (min-width: 768px) and (max-width: 1199px) {
  .u-section-6 .u-sheet-1 {
    min-height: 584px;
  }
  .u-navbar .u-nav-item {
    display: block;
    text-align: center;
  }
}

/* Mobile Ansicht */
@media (max-width: 767px) {
  .u-section-6 .u-sheet-1 {
    min-height: 404px;
  }
  .u-navbar {
    background-color: #333333 !important; /* Dunkelgraue Hintergrundfarbe auf mobilen Geräten */
  }
  .u-navbar .u-nav-item {
    display: block;
    text-align: center;
  }
}

/* Zusätzliche Media Queries für spezielle Bildschirmeinstellungen */
@media (max-width: 575px) {
  .u-section-6 .u-sheet-1 {
    min-height: 404px;
  }
}
