body{
    background: linear-gradient(to right, rgb(134, 98, 12), rgb(223, 194, 33), rgb(175, 115, 3));
}
/*navigationsbar Anfang*/
.my-navbar{
    background-color: black !important;
}
.nav-link{
    color: white !important;
    font-size: 20px !important;
    font-weight: bold;
    padding: 30px !important;
}
.btn-primary{
    background: linear-gradient(to right,rgb(134, 98, 12), rgb(223, 194, 33), rgb(175, 115, 3)) !important;
    border-color: black !important;
    height: 45px;
    margin: 20px;
}
.btn-primary:hover{
    background: rgb(172, 157, 21) !important;
    border-color: black !important;
}
.modal-title{
    text-align: center !important;
}
.modal-body{
    font-weight: bold;
    font-size: 16px;
    text-align: center;
}
.modal-body1{
    font-weight: bold ;
    font-size: 20px;
    text-align: center; 
}
/*Navigationsbar Ende*/
.about-us {
    max-width: 1000px;
    margin: 50px auto;
    padding: 40px 30px;
    background: rgba(0, 0, 0, 0.85); /* leicht transparentes Schwarz */
    color: #fff;
    border-radius: 20px;
    box-shadow: 0 0 25px rgba(223, 194, 33, 0.3); /* goldener Glow */
    line-height: 1.8;
    font-family: 'Segoe UI', Tahoma, sans-serif;
    transition: all 0.4s ease;
}

/* Überschriften */
.about-us h1 {
    color: rgb(223, 194, 33);
    font-size: 40px;
    text-align: center;
    margin-bottom: 40px;
    letter-spacing: 1px;
}

.about-us h2 {
    color: rgb(223, 194, 33);
    font-size: 28px;
    margin-top: 40px;
    margin-bottom: 20px;
    border-bottom: 2px solid rgb(223, 194, 33);
    display: inline-block;
    padding-bottom: 5px;
}
.text-container {
    max-width: 1000px;
    margin: 40px auto;
    padding: 40px 30px;
    background: rgba(0, 0, 0, 0.8); /* dunkler transparenter Hintergrund */
    color: white;
    border-radius: 15px;
    box-shadow: 0 0 25px rgba(0, 0, 0, 0.5);
    line-height: 1.8;
    font-family: Arial, sans-serif;
    transition: all 0.4s ease;
}

/* Hauptüberschrift */
.text-container h1 {
    color: rgb(223, 194, 33);
    font-size: 36px;
    text-align: center;
    margin-bottom: 30px;
}

/* Bereichsüberschriften */
.text-container h2 {
    color: rgb(223, 194, 33);
    font-size: 28px;
    margin-top: 30px;
    margin-bottom: 15px;
    border-bottom: 2px solid rgb(223, 194, 33);
    display: inline-block;
    padding-bottom: 5px;
}

/* Standard-Text */
.text-container p {
    font-size: 18px;
    margin-bottom: 20px;
    text-align: justify;
    opacity: 0.95;
}

/* Listen */
.text-container ul {
    padding-left: 30px;
    margin-bottom: 20px;
}

.text-container li {
    font-size: 18px;
    margin-bottom: 10px;
    list-style-type: square;
}


/*footer Anfang*/
.footer-contain{
    background-color: black;
    justify-content: center;
    text-align: center;
    display: flex;
    flex-direction: column;
}
.footer-img{
    align-self: center;
}
.footer-link{
    display: flex;
    flex-direction: column;
    color: rgb(128, 108, 0);
}
.copyright{
    color: white;
}
/*footer Ende*/
/* Responsive Anpassung */
/* Global auf größeren Bildschirmen */
.text-container p,
.text-container li {
    text-align: justify;
    font-size: 18px;
    line-height: 1.6;
}

/* Optimierung für Smartphones */
@media (max-width: 768px) {
    /* ✅ Navbar */
    .my-navbar {
        font-size: 15px !important;
        flex-direction: column;
    }

    .nav-link {
        padding: 8px 0 !important;
        font-size: 18px;
        text-align: center;
    }

    .btn-primary {
        margin-left: 5%;
        width: 90%;
        margin-top: 10px;
    }

    /* ✅ Text & Listen in .text-container (Über Uns etc.) */
    .text-container p,
    .text-container li {
        text-align: left !important;
        word-spacing: normal !important;
        letter-spacing: normal !important;
        white-space: normal !important;
        word-break: normal !important;
        font-size: 16px;
        line-height: 1.5;
        margin-bottom: 1em;
    }

    .text-container h1 {
        font-size: 32px;
    }

    .text-container h2 {
        font-size: 22px;
    }

    .text-container {
        padding: 25px 15px;
        margin: 20px;
    }
}


