/* Allgemeine Stile */
body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    background-color: #f8f9fa;
    color: #333;
    padding-top: 56px;
    text-align: center;
}

h1, h2, h3, h4, h5, h6 {
    margin-top: 20px;
    margin-bottom: 20px;
    font-weight: bold;
}

/* Navigation */
.navbar-brand {
    font-size: 1.5em;
    font-weight: bold;
}

.navbar-nav .nav-link {
    font-size: 1.1em;
    padding: 10px 20px;
}

/* Hero Section */
.hero-section {
    background: url('Bild1.webp') no-repeat center center;
    background-size: cover;
    color: white;
    text-align: center;
    padding: 150px 0;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.hero-section h1 {
    font-size: 3em;
    margin-bottom: 20px;
}

.hero-section .lead {
    font-size: 1.5em;
    margin-bottom: 40px;
}

/* Über uns */
#about {
    padding: 60px 0;
    text-align: center;
}

#about h2 {
    margin-bottom: 40px;
}

#about p {
    margin-bottom: 20px;
}

#about .row {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
}

#about .col-md-6 {
    flex: 0 0 50%;
    max-width: 50%;
    text-align: center;
    margin-bottom: 20px;
}

/* Line-Up */
#lineup {
    padding: 60px 0;
    text-align: center;
}

#lineup h2 {
    margin-bottom: 40px;
}

#lineup .row {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
}

#lineup .col-md-4 {
    flex: 0 0 33.3333%;
    max-width: 33.3333%;
    text-align: center;
    margin-bottom: 30px;
}

/* Tickets */
#tickets {
    padding: 60px 0;
    text-align: center;
}

#tickets h2 {
    margin-bottom: 40px;
}

#tickets .row {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
}

#tickets .col-md-6 {
    flex: 0 0 50%;
    max-width: 50%;
    text-align: center;
    margin-bottom: 30px;
}

#tickets .btn {
    margin-top: 20px;
}

/* Kontakt */
#contact {
    padding: 60px 0;
    text-align: center;
}

#contact h2 {
    margin-bottom: 40px;
}

#contact .form-row {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

#contact .form-group {
    flex: 0 0 100%;
    max-width: 100%;
    margin-bottom: 20px;
}

#contact .form-group.col-md-6 {
    flex: 0 0 50%;
    max-width: 50%;
    margin-right: 0%;
}

#contact .form-group.col-md-6:last-child {
    margin-right: 0;
}

.message-container {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.message-field {
    width: 100%;
    min-height: 200px; 
    height: 100px;
}

#contact .btn {
    margin-top: 20px;
}

/* Footer */
footer {
    background-color: #343a40;
    color: #adb5bd;
    padding: 20px 0;
    text-align: center;
}

footer small {
    display: block;
    margin-top: 10px;
}

/* Zusätzliche Anpassungen */
.container {
    max-width: 1140px;
}

.bg-light {
    background-color: #f8f9fa !important;
}

.bg-dark {
    background-color: #343a40 !important;
}

.text-center {
    text-align: center !important;
}

.text-white {
    color: #fff !important;
}

.text-white-50 {
    color: rgba(255, 255, 255, 0.5) !important;
}

.btn-primary {
    background-color: #007bff;
    border-color: #007bff;
}

.btn-primary:hover {
    background-color: #0056b3;
    border-color: #004085;
}

/* Responsive Anpassungen */
@media (max-width: 1200px) {
    #about .col-md-6,
    #tickets .col-md-6 {
        flex: 0 0 100%;
        max-width: 100%;
    }
    #lineup .col-md-4 {
        flex: 0 0 50%;
        max-width: 50%;
    }
}

@media (max-width: 768px) {
    #lineup .col-md-4 {
        flex: 0 0 100%;
        max-width: 100%;
    }
    #contact .form-group.col-md-6 {
        flex: 0 0 100%;
        max-width: 100%;
        margin-right: 0;
    }
    .message-container {
        width: 100%;
    }
    .message-field {
        width: 100%;
    }
}
