/* CSS für den Block Navbar mit seinen Elementen nach BEM */ .nav { display: flex; justify-content: space-between; align-items: center; background-color: #333d43; padding: 0 1rem; } .nav__left, .nav__right { display: flex; align-items: center; } .nav__logo img { height: 3rem; } .nav__center { display: flex; align-items: center; } .nav__item { position: relative; margin: 0 0.5rem; } .nav__dropdown-toggle { background: none; border: none; cursor: pointer; font-weight: 600; padding: 0.5rem 1rem; color: #fff; text-decoration: none; } .nav__dropdown-menu { display: none; position: absolute; top: 100%; left: 0; background: #f9f9f9; min-width: 12rem; box-shadow: 0 2px 5px rgba(0,0,0,.15); padding: 0.5rem 0; } .nav__dropdown-menu a { padding: 0.5rem 1rem; /* Abstand um den Text */ color: #333; text-decoration: none; font-weight: 600; } .nav__link { display: inline-block; font-weight: 600; background: none; border: none; cursor: pointer; padding: 0.5rem 1rem; color: #fff; text-decoration: none; } .nav__button { display: inline-block; background: #fff; border: none; border-radius: 4px; padding: 0.5rem 1rem; cursor: pointer; color: #333; text-decoration: none; font-weight: 600; margin-left: 0.5rem; } .nav__search { display: flex; align-items: center; border-radius: 4px; /* Abgerundete Ecken */ background: #fff; margin: 0 0.5rem; } .nav__search-button { display: inline-block; background: #fff; border: none; border-radius: 4px; padding: 0.4rem 0.6rem; font-size: 0.8rem; font-weight: 600; cursor: pointer; margin-left: 4px; } .nav__dropdown:hover .nav__dropdown-menu { display: block; } /* Responsive Anpassung ab 1210px und darunter */ @media (max-width: 1210px) { .nav { flex-wrap: wrap; /* zweite Nav-Zeile*/ padding: 0.5rem 1rem; } .nav__left { order: 1; flex: 1; /* nimmt den Platz ganz links ein */ } .nav__right { order: 2; flex: 1; justify-content: flex-end; /* schiebt Buttons nach ganz rechts */ } .nav__center { order: 3; flex-basis: 100%; /* Erzwingt, dass dieses Element eine eigene Zeile einnimmt */ justify-content: center; /*zentriert die Links in der zweiten Zeile */ padding: 0.5rem 0; border-top: 1px solid rgba(255,255,255,0.1); /* Optionale Trennlinie */ margin-top: 0.5rem; } .nav__item { margin: 0.25rem; } } #mobile-nav { display: none; } @media (max-width: 660px) { .nav { flex-direction: row; flex-wrap: wrap; justify-content: space-between; padding: 0 1rem; } .nav_logo img { height: 40px; } .nav__left { order: 2; flex: 1; justify-content: flex-start; } .nav__right { order: 3; width: 100%; display: flex; margin-top: 0.5em; } #mobile-nav { display: block; order: 1; background: #333d43; border: none; color: #fff; font-size: 1.5rem; padding: 0.5rem 0.5rem; border-radius: 0.2rem; cursor: pointer; } .nav__search { display: flex; width: 100%; margin: 0; } .nav__search-button { display: inline-block; background: #fff; border: none; border-radius: 4px; padding: 0.4rem 0.6rem; font-size: 0.8rem; font-weight: 600; cursor: pointer; margin-left: 4px; } /* restliche desktop-navbar aus */ .nav__center, .nav__right .nav__button, .nav__right .nav__link { display: none; } /* off canvas menu */ .nav__mobile-menu { display: flex; flex-direction: column; position: fixed; top: 0; left: -100%; /* kommt von links */ width: 280px; height: 100vh; background: #333d43; z-index: 1000; transition: left 0.3s ease; padding: 2rem 1rem; box-shadow: 2px 0 10px rgba(0,0,0,0.5); overflow-y: auto; } .nav_mobile-menu.is-active { left: 0; } .nav__mobile-menu a { color: #fff; text-decoration: none; font-size: 1.2rem; font-weight: 600; display: block; padding: 0.5rem 1rem; border-bottom: 1px solid #333d43; } }