/* Allgemeine Styles */
body, html {
    margin: 0;
    padding: 0;
    font-family: Arial, sans-serif;
    height: auto;
    min-height: 100%;
    overflow-x: hidden;
    overflow-y: auto;
}

/* Hintergrundbild */
.hero {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: url('background.png') no-repeat center center/cover;
    z-index: -2;
}

/* Navbar */
#navbar-container {
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 1000;
    pointer-events: auto;
}

/* Main Content Wrapper */
.main-content {
    position: relative;
    z-index: 10;
    margin-top: 120px;
    padding-bottom: 100px;
}

/* Formular Container */
.formular-container {
    width: 100%;
    display: flex;
    justify-content: center;
}

/* Kein Overwrite des Formulars mehr! */

/* Tab Container */
#tab-container {
    margin-top: 40px;
    display: flex;
    justify-content: center;
    width: 100%;
    pointer-events: auto;
}

/* Footer */
#footer-container {
    margin-top: 50px;
    width: 100%;
}
