/* --- Grundlegende Layout- und Schriftstile --- */
body {
    font-family: 'Inter', sans-serif;
    margin: 0;
    background-color: #fff;
    color: #333;
}

/* Container für den gesamten Inhalt */
.page-wrapper {
    max-width: 1140px;
    margin: 0 auto;
    padding: 40px 20px 60px;
}

/* Navigation: Logo links, Links rechts */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
    margin-bottom: 30px;
}

.navbar-brand {
    display: inline-flex;
    align-items: center;
}

.navbar-logo {
    max-height: 58px;
    height: auto;
    width: auto;
}

.navbar-links {
    display: flex;
    align-items: center;
}

.navbar a {
    font-size: 1.1em;
    margin-left: 20px;
    color: #333;
    text-decoration: none;
    padding: 8px 16px;
    border: 2px solid transparent;
    border-radius: 8px;
}

.navbar a:hover {
    background-color: #f0f4f8;
    color: #4C60DA;
    cursor: pointer;
}

/* Footer */
.footer {
    text-align: center;
    padding: 30px 10px 40px;
    font-size: 0.9em;
    color: #999;
}

.footer a {
    color: #4C60DA;
    margin: 0 10px;
    text-decoration: none;
}

.footer a:hover {
    text-decoration: underline;
}

/* Formular */
.form-group {
    margin-bottom: 25px;
}

.form-group label {
    font-weight: 600;
    display: block;
    margin-bottom: 6px;
}

.form-control {
    padding: 12px 14px;
    font-size: 1.1em;
    border: 1px solid #ccc;
    border-radius: 8px;
    width: 100%;
    box-sizing: border-box;
}

textarea.form-control {
    resize: vertical;
}

/* Button Styles */
.btn-success {
    background-color: #4C60DA !important;
    color: white !important;
    padding: 12px 24px;
    border: none;
    border-radius: 8px;
    font-size: 1em;
    font-weight: 600;
    font-family: 'Inter', sans-serif;
    transition: background-color 0.3s ease, transform 0.15s ease;
    text-decoration: none;
}

.btn-success:hover {
    background-color: #3a4fc0 !important;
    transform: translateY(-1px);
    box-shadow: 0 6px 16px rgba(76, 96, 218, 0.25);
}

/* Deaktivierter Button */
.btn.disabled,
.btn[disabled] {
    background-color: #ccc !important;
    cursor: not-allowed;
}

/* --- Hero Section --- */
.hero {
    padding: 80px 20px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.hero-img {
    flex: 1 1 300px;
    max-width: 500px;
    padding: 20px;
}

.hero-content {
    flex: 1 1 300px;
    max-width: 500px;
    padding: 20px;
}

/* Großer Titel in der Hero-Sektion */
.hero-title {
    font-size: 3.5em;
    font-weight: 700;
    color: transparent;
    background: linear-gradient(45deg, #4C60DA, #F39C12);
    -webkit-background-clip: text;
    background-clip: text;
    margin-bottom: 20px;
}

/* Hervorhebung des "leicht gemacht" */
.highlight {
    color: #F39C12;
}

/* Subtitle für mehr Information */
.hero-subtitle {
    font-size: 1.5em;
    color: #555;
    margin-bottom: 30px;
}

/* App-Info Box - Direkt unter dem Hero */
.app-info-section {
    padding: 30px 20px;
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    margin-top: 30px;
}

/* App-Info Box Stil */
.app-info-box {
    background-color: #f0f4f8;
    border-left: 4px solid #4C60DA;
    padding: 20px;
    border-radius: 8px;
}

.app-info-box h3 {
    font-size: 1.5em;
    color: #333;
    margin-bottom: 10px;
}

.app-info-box p {
    font-size: 1em;
    color: #555;
    line-height: 1.6;
}

/* Abstand unterhalb des Dropdowns */
.event-select {
    margin-bottom: 20px;
}
.centered-select {
    height: 48px;
    padding-top: 10px;
    padding-bottom: 10px;
    display: flex;
    align-items: center;
}


/* Mobile Anpassungen */
@media (max-width: 768px) {
    .hero {
        flex-direction: column;
    }

    .hero-content {
        padding: 20px;
    }

    .hero-title {
        font-size: 2.5em;
    }

    .hero-subtitle {
        font-size: 1.2em;
    }
}
