/** Header-Bereich **/

.bg-header {
    background-color: #2f2f2d;
}

.text-green {
    color: #1e7546;
}

.text-warning {
    color: #e4a435;
}

.header-logo {
    max-width: 100px;     /* ggf. 360px testen */
    width: 100%;
    height: auto;
    object-fit: contain;
    display: block;
}


/** Navigation **/
/* Hintergrundfarbe der Navigation */
.bg-nav {
    background-color: #2f2f2d;
    padding: 0.75rem 0;
    border-bottom: 3px solid #e4a435;
}

/* Toggler-Button anpassen */
.navbar-toggler {
    border-color: #e4a435; /* Gelber Rahmen */
}

/* Hamburger-Icon */
.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='%23e4a435' stroke-width='3' stroke-linecap='round' stroke-miterlimit='10' d='M4 7h22M4 15h22M4 23h22'/%3E%3C/svg%3E");
}

/* Button-Gruppe-Links */
.btn-group .btn-nav {
    background-color: #3a3a38;
    color: #ffffff;
    font-weight: 600;
    text-transform: uppercase;
    padding: 0.6rem 1.2rem;
    margin: 0.25rem;
    border: 2px solid transparent;
    border-radius: 0.4rem;
    transition: all 0.3s ease;
}

/* Hover / Fokus */
.btn-group .btn-nav:hover,
.btn-group .btn-nav:focus {
    background-color: #e4a435;
    color: #2f2f2d;
    border-color: #e4a435;
}

/* Aktiver Menüpunkt */
.btn-group .active .btn-nav,
.btn-group .btn-nav.active {
    background-color: #e4a435;
    color: #2f2f2d;
    border-color: #e4a435;
    font-weight: 700;
    box-shadow: 0 0 0.25rem rgba(0, 0, 0, 0.3);
}

/* Mobil */
@media (max-width: 991px) {
    .btn-group {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .btn-group .btn-nav {
        width: 100%;
        max-width: 300px;
        text-align: center;
    }
}


/** Hero-Section **/
/* Hero Bereich */
.hero-section {
    background: rgb(30, 116, 69); /* Abdunklung */
    background: url(../img/hero_bg.jpg);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    height: 40vh;
    min-height: 400px;
    position: relative;
}

.overlay-textbox {
    background-color: rgb(0 0 0 / 69%);
    color: #fff;
    padding: 1rem 3rem;
    text-align: center;
    border-radius: 0.5rem;
    z-index: 2;
    position: relative;
    max-width: 90%;
    margin: 0 auto;
}

.hero-h1 {
    color: #1e7344; /* dein Wunschgrün */
    text-shadow:
            -1px -1px 0 #fff,
            1px -1px 0 #fff,
            -1px  1px 0 #fff,
            1px  1px 0 #fff;  /* ergibt eine weiße Kontur */
}

.hero-p{
    color: #e4a435;
}

/* Optionaler Overlay */
.hero-section::before {
    content: "";
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    rgba(30, 116, 69, 0.6); /* Abdunklung */
    z-index: 1;
}

/* Text im Hero */
.hero-section .container {
    z-index: 2;
    position: relative;
}

/* Call-to-Action Button */
.btn-hero {
    background-color: #e4a435;
    color: #2f2f2d;
    font-weight: bold;
    padding: 0.75rem 1.5rem;
    border-radius: 0.5rem;
    transition: all 0.3s ease;
    text-transform: uppercase;
}

.btn-hero:hover {
    background-color: #2f2f2d;
    color: #e4a435;
    border: 2px solid #e4a435;
}


/* ---------- Hauptbereich / CMS-Content ---------- */

/* Abschnitt um den Hauptinhalt */
.content-section {
    background: #105b31db; /* leichtes Grau */
    border-top: 3px solid #e4a435;
    border-bottom: 3px solid #e4a435;
}

/* Optional: Schatten oder runder Rahmen */
main.container {
    background: #fff;
    padding: 2rem;
    border-radius: 1rem;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.05);
}

main {
    font-size: 1rem;
    color: #222;
    line-height: 1.7;
}

/* Überschriften */
main h1, main h2, main h3, main h4 {
    font-weight: 700;
    color: #2f2f2d;
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
    text-transform: uppercase;
}

main h1 {
    font-size: 2rem;
    color: #e4a435;
    border-bottom: 3px solid #e4a435;
    padding-bottom: 0.25rem;
}

main h2 {
    font-size: 1.5rem;
    color: #1e7445;
}

main h3 {
    font-size: 1.25rem;
    color: #2f2f2d;
}

/* Textabsätze */
main p {
    margin-bottom: 1rem;
    color: #333;
}

/* Links */
main a {
    color: #e4a435;
    text-decoration: none;
    font-weight: 500;
}
main a:hover {
    color: #c47c18;
    text-decoration: underline;
}

/* Listen */
main ul, main ol {
    padding-left: 1.5rem;
    margin-bottom: 1rem;
}
main li {
    margin-bottom: 0.5rem;
}

/* Bilder im Content */
main img {
    max-width: 100%;
    height: auto;
    margin: 1rem 0;
    border-radius: 0.5rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

/* Zitate */
main blockquote {
    background: #f8f9fa;
    border-left: 5px solid #e4a435;
    margin: 1.5rem 0;
    padding: 1rem;
    font-style: italic;
    color: #555;
}

/** Footer-Bereich **/
.bg-footer {
    background-color: #2f2f2d;
    border-top: 3px solid #e4a435;
    font-size: 0.95rem;
}

.footer a {
    color: #ffffff;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer a:hover {
    color: #e4a435;
}

.footer h5 {
    font-size: 1.1rem;
    margin-bottom: 1rem;
}





