body {
    font-family: 'Poppins', sans-serif;
    margin: 0;
    padding: 0;
    color: #1f2225;
    line-height: 1.6;
}

/* Header transparent als Standard */
.header {
    background-color: transparent !important;
    padding: 10px 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    transition: background-color 0.3s ease;
}

/* Abstand unterhalb des fixierten Headers */
main {
    padding-top: 100px; /* Höhe des Headers ausgleichen */
}

/* Menülinks mit "Textmarker"-Effekt */
.navbar-nav .nav-link {
    color: white !important;
    background-color: black;
    padding: 4px 8px;
    border-radius: 3px;
    display: inline-block;
    margin: 2px 5px;
    font-weight: 500;
}

.navbar-nav .nav-link:hover {
    background-color: #222; /* etwas heller beim Hover */
    color: #fff !important;
}

/* Dropdown-Menü */
.dropdown-menu {
    background-color: rgba(0,0,0,0.9);
}

.dropdown-menu .dropdown-item {
    color: white;
    background-color: transparent;
}

.dropdown-menu .dropdown-item:hover {
    background-color: #222;
}

/* Hero mit Hintergrundbild */
.hero {
    min-height: 100vh;
    background-image: url('https://lehp.de/images/cropped-green-Blackfreakich_xl.webp');
    background-size: cover;
    background-position: center;
    color: white;
    display: flex;
    align-items: center;
    position: relative;
}

.hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.28);
}

.hero-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 1;
}

.hero h1 {
    font-size: 3.375em;
    margin-bottom: 16px;
}


 

/* Wrapper um Bild und Text */
.img-text-wrapper {
    display: inline-block;       /* Damit die Breite sich am Inhalt orientiert */
    max-width: 80%;             /* Nicht größer als der Container */
}

.img-text-wrapper img {
    display: block;
    width: 100%;                 /* Bild füllt die Breite des Wrappers */
    height: auto;
}

.img-text-wrapper p {
    margin-top: 0.5rem;
    margin-bottom: 1rem;
    word-wrap: break-word;       /* Zeilenumbruch bei langen Wörtern */
}

/* Footer */
.footer {
    background-color: #1f2225;
    color: rgba(255,255,255,0.7);
    padding: 30px 0;
    text-align: center;
}

.footer a {
    color: #2876fb;
}

.footer a:hover {
    color: #7cabfb;
}

/* --- NEU: Seiten ohne Hintergrundbild --- */
.body-no-bg .header {
    background-color: #222 !important; /* dunkler Hintergrund */
}

.body-no-bg .navbar-nav .nav-link {
    background-color: #444; /* etwas hellerer Marker */
    color: white !important;
}
/* Hamburger-Menü auf Seiten ohne Hintergrundbild sichtbar machen */
.body-no-bg .navbar-toggler-icon {
    background-image: url("data:image/svg+xml;charset=utf8,%3Csvg viewBox='0 0 30 30' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath stroke='white' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 7h22M4 15h22M4 23h22'/%3E%3C/svg%3E");
}
