/* Basisstile */
html {
    background-color: black;
    margin: 0;
}

body {
    font-family: 'Open Sans', sans-serif;
    color: white;
}

h1, h2, h3, h4, h5, h6, p {
    color: black;
}

h1 {
    font-size: 32px;
    margin-bottom: 20px;
    margin-top: 20px;

}

h2 {
    font-size: 24px;

}

p {
    font-size: 16px;
    line-height: 36px;
}

/* Navigation */
.navbar-nav .nav-item .nav-link {
    color: #a3a177;
}

.navbar-nav .nav-item.active .nav-link {
    color: #333;
}

.custom-navbar {
    padding: 0;
    background-color: #ffc017;
    border-bottom: 1px solid black;
}

.navbar-toggler {
    border: none;
}

.navbar-brand {
    color: black;
    font-family: 'Dancing Script', cursive;
    font-size: 42px;
}

.custom-navbar .navbar-collapse {
    flex-grow: 0;
}

.navbar-nav {
    text-align: right;
    padding-right: 15px;
}

.nav-item {
    display: block;
}

/* Hauptinhalte */
#ueberuns {
    margin-top: 20px;
    margin-bottom: 20px;
    margin-left: auto;
    margin-right: auto;
    width: 30%;
    text-align: center;
}

/* Footer */
#copyright {
    color: white;
    font-size: 14px;
    color: white;
    text-decoration: none;

}

.footer {
    background-color: black;
    padding: 10px 0;
    margin-top: 10px;
    line-height: 14px !important;
}

.footer-link {
    font-size: 14px;
    color: white;
    margin: 0 5px;
    text-decoration: none;
    transition: color 0.3s ease-in-out;
}

.footer-link:hover {
    color: #c0c0c0;
    text-decoration: underline;
}

.text-right {
    text-align: right;
}

/* Mobile Styles */
@media (max-width: 768px) {
    /* Navigation */
    .navbar-brand {
        font-size: 32px;
        margin-left: 20px;
    }

    h1 {
        font-size: 26px;
    }


    p {
        font-size: 14px;
        line-height: 24px;
    }

    #ueberuns {
        margin-top: 20px;
        margin-bottom: 20px;
        margin-left: auto;
        margin-right: auto;
        width: 90%;
        text-align: center;
    }

    #copyright {
        font-size: 10px;
    }

    .footer-link {
        font-size: 10px;
    }
}
