/* =========================================
   1. GLOBAL VARIABLES & RESET
   ========================================= */
:root {
    /* Farben - BG Traditionell */
    --primary-color: #0a2540;
    /* Sehr dunkles Navy Blau */
    --primary-light: #183b5e;
    --accent-color: #dcb055;
    /* Beethoven Gold/Messing */
    --accent-hover: #c49b45;
    --text-dark: #1f2937;
    --text-light: #6b7280;
    --bg-light: #f3f4f6;
    --white: #ffffff;

    /* Layout */
    --container-width: 1280px;
    --header-height: 80px;
    --border-radius: 6px;

    /* Shadows */
    --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Segoe UI', system-ui, sans-serif;
    line-height: 1.7;
    color: var(--text-dark);
    background-color: var(--white);

}

a {
    text-decoration: none;
    color: inherit;
    transition: 0.3s;
}

img {
    width: 100%;
    display: block;
}

ul {
    list-style: none;
}

/* =========================================
   2. HEADER & TOP BAR
   ========================================= */
.top-bar {
    background-color: var(--primary-color);
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.85rem;
    padding: 8px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.flex-between {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.top-info span {
    margin-right: 20px;
}

.top-socials a {
    color: var(--accent-color);
    margin-left: 15px;
}

header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow-sm);
    padding: 0;
}

.logo {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--primary-color);
    letter-spacing: 1px;
}

.logo .highlight {
    color: var(--accent-color);
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: var(--header-height);
}

.nav-links {
    display: flex;
    gap: 30px;
    align-items: center;
}

.nav-links a {
    font-weight: 600;
    color: var(--primary-color);
    font-size: 0.95rem;
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--accent-color);
}

/* Hamburger Menu */
.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
}

.hamburger .bar {
    width: 25px;
    height: 3px;
    background-color: var(--primary-color);
    transition: all 0.3s ease;
    border-radius: 3px;
}

/* Hamburger Animation */
.hamburger.toggle .bar:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}

.hamburger.toggle .bar:nth-child(2) {
    opacity: 0;
}

.hamburger.toggle .bar:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}

/* Buttons */
.btn {
    padding: 10px 24px;
    border-radius: 50px;
    font-weight: 600;
    text-align: center;
    display: inline-block;
}

.btn-primary {
    background: var(--primary-color);
    color: var(--white) !important;
}

.btn-primary:hover {
    background: var(--primary-light);
    transform: translateY(-2px);
}

.btn-outline {
    border: 2px solid var(--white);
    color: var(--white) !important;
}

.btn-outline:hover {
    background: var(--white);
    color: var(--primary-color) !important;
}

/* =========================================
   3. HERO SECTION
   ========================================= */
.hero {
    height: 90vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--white);
    overflow: hidden;
}

.video-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -2;
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(10, 37, 64, 0.4), rgba(10, 37, 64, 0.8));
    z-index: -1;
}

.badge {
    background: var(--accent-color);
    color: var(--primary-color);
    padding: 5px 15px;
    border-radius: 20px;
    font-weight: bold;
    font-size: 0.9rem;
    text-transform: uppercase;
    margin-bottom: 20px;
    display: inline-block;
}

.hero h1 {
    font-size: 4rem;
    margin-bottom: 20px;
    line-height: 1.1;
}

.hero p {
    font-size: 1.25rem;
    max-width: 700px;
    margin: 0 auto 40px;
    opacity: 0.9;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
}

.scroll-down {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    color: var(--white);
    font-size: 2rem;
    animation: bounce 2s infinite;
}

/* =========================================
   4. CONTENT SECTIONS
   ========================================= */
.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 20px;

}

.section-padding {
    padding: 100px 0;
}

.text-center {
    text-align: center;
}

.mb-60 {
    margin-bottom: 60px;
}

.mt-20 {
    margin-top: 20px;
}

.bg-light {
    background-color: var(--bg-light);
}

.bg-dark {
    background-color: var(--primary-color);
    color: var(--white);
}

h2 {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.lead {
    font-size: 1.2rem;
    font-weight: 500;
    color: var(--primary-light);
    margin-bottom: 20px;
}

/* Grid Systems */
.grid-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.grid-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.grid-4 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

/* Stacked Images Effect */
.stacked-images {
    position: relative;
    padding: 20px;
}

.img-back {
    opacity: 0.6;
    transform: translate(20px, 20px);
    border-radius: 8px;
}

.img-front {
    position: absolute;
    top: 0;
    left: 0;
    border: 5px solid var(--white);
    border-radius: 8px;
    box-shadow: var(--shadow-lg);
}

/* Check List */
.check-list li {
    margin-bottom: 10px;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
}

.check-list i {
    color: var(--accent-color);
    margin-right: 10px;
}

/* Statistics */
.stat-item {
    padding: 20px;
}

.stat-item i {
    font-size: 3rem;
    color: var(--accent-color);
    margin-bottom: 15px;
}

.stat-item h3 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 5px;
}

/* Table Styles */
.schedule-table {
    overflow-x: auto;
    background: var(--white);
    border-radius: 8px;
    box-shadow: var(--shadow-md);
}

table {
    width: 100%;
    border-collapse: collapse;
    min-width: 600px;
}

th,
td {
    padding: 15px 20px;
    text-align: left;
    border-bottom: 1px solid #eee;
}

th {
    background-color: var(--primary-color);
    color: var(--white);
    text-transform: uppercase;
    font-size: 0.85rem;
}

tr:hover {
    background-color: #f9fafb;
}

/* Team Cards */
.team-card {
    background: var(--white);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: 0.3s;
}

.team-card:hover {
    transform: translateY(-10px);
}

.team-img img {
    height: 250px;
    object-fit: cover;
}

.team-info {
    padding: 25px;
    text-align: center;
}

.team-info .role {
    color: var(--accent-color);
    font-weight: bold;
    font-size: 0.9rem;
    display: block;
    margin-bottom: 10px;
}

/* Accordion */
.accordion-item {
    border-bottom: 1px solid #ddd;
}

.accordion-header {
    width: 100%;
    padding: 20px;
    text-align: left;
    background: none;
    border: none;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
}

.accordion-header::after {
    content: '+';
    font-size: 1.5rem;
    color: var(--accent-color);
}

.accordion-header.active::after {
    content: '-';
}

.accordion-body {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    padding: 0 20px;
    color: var(--text-light);
}

.accordion-body p {
    padding-bottom: 20px;
}

/* Footer */
footer {
    background: #051626;
    color: #9ca3af;
    padding-top: 60px;
    font-size: 0.95rem;
}

.footer-top {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 40px;
    padding-bottom: 40px;
}

.footer-logo h3 {
    color: var(--white);
    margin-bottom: 5px;
    font-size: 1.5rem;
}

footer h4 {
    color: var(--white);
    margin-bottom: 20px;
    text-transform: uppercase;
}

footer a:hover {
    color: var(--accent-color);
    padding-left: 5px;
}

.footer-bottom {
    padding: 30px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.legal a {
    margin-left: 20px;
}

/* Animations */
@keyframes bounce {

    0%,
    20%,
    50%,
    80%,
    100% {
        transform: translateX(-50%) translateY(0);
    }

    40% {
        transform: translateX(-50%) translateY(-10px);
    }

    60% {
        transform: translateX(-50%) translateY(-5px);
    }
}

.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: 0.8s;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* Responsive */
@media(max-width: 900px) {

    .grid-2,
    .grid-3,
    .grid-4 {
        grid-template-columns: 1fr;
    }

    .hero h1 {
        font-size: 2.5rem;
    }

    /* Braucht JS Toggle */
    .footer-top {
        grid-template-columns: 1fr;
    }

    /* Mobile Navigation */
    .hamburger {
        display: flex;
    }

    .nav-links {
        position: fixed;
        left: -100%;
        top: var(--header-height);
        flex-direction: column;
        background-color: rgba(255, 255, 255, 0.98);
        width: 100%;
        text-align: center;
        transition: left 0.3s ease;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.1);
        padding: 20px 0;
        gap: 0;
        z-index: 999;
    }

    .nav-links.active {
        left: 0;
    }

    .nav-links li {
        width: 100%;
        padding: 15px 0;
        border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    }

    .nav-links a {
        display: block;
        width: 100%;
    }
}



/* =========================================
   TIMELINE STYLES
   ========================================= */
.timeline {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
    padding: 40px 0;
}

/* Die vertikale Linie */
.timeline::after {
    content: '';
    position: absolute;
    width: 4px;
    background-color: var(--primary-color);
    top: 0;
    bottom: 0;
    left: 31px;
    /* Ausrichtung auf mobilen Punkt */
    margin-left: -2px;
}

.timeline-item {
    padding: 10px 30px;
    position: relative;
    background-color: inherit;
    width: 100%;
    margin-bottom: 30px;
}

/* Die Punkte am Zeitstrahl */
.timeline-dot {
    position: absolute;
    width: 20px;
    height: 20px;
    left: 20px;
    background-color: var(--accent-color);
    border: 4px solid var(--primary-color);
    top: 20px;
    border-radius: 50%;
    z-index: 1;
}

.timeline-date {
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 5px;
    font-size: 1.2rem;
    padding-left: 30px;
}

.timeline-content {
    padding: 20px;
    background-color: var(--white);
    position: relative;
    border-radius: 8px;
    box-shadow: var(--shadow-md);
    margin-left: 30px;
}

.timeline-content h3 {
    margin-top: 0;
    color: var(--primary-color);
    font-size: 1.3rem;
}

/* Farben für besondere Ereignisse */
.timeline-item.danger .timeline-dot {
    background-color: #e74c3c;
}

.timeline-item.success .timeline-dot {
    background-color: #2ecc71;
}

/* Responsive Timeline Desktop */
@media screen and (min-width: 768px) {
    .timeline::after {
        left: 50%;
    }

    .timeline-item {
        width: 50%;
    }

    .timeline-item:nth-child(even) {
        left: 50%;
    }

    .timeline-item:nth-child(odd) {
        left: 0;
        text-align: right;
    }

    .timeline-item:nth-child(odd) .timeline-dot {
        left: auto;
        right: -10px;
    }

    .timeline-item:nth-child(even) .timeline-dot {
        left: -10px;
    }

    .timeline-item:nth-child(odd) .timeline-content {
        margin-left: 0;
        margin-right: 30px;
    }

    .timeline-item:nth-child(even) .timeline-content {
        margin-left: 30px;
    }

    .timeline-date {
        padding-left: 0;
    }
}

/* Fix für den Team-Slider */
/* Container Fix: Swiper braucht Platz für die Schatten der Karten */
.team-slider {
    width: 100%;
    padding: 20px 5px 60px 5px;
    margin: 0 auto;
    overflow: visible !important;
    /* Erlaubt Schatten/Karten, über den Rand zu ragen ohne Cut */
}

/* Fix für die Bilder innerhalb der Karten */
.team-img {
    width: 100%;
    height: 250px;
    /* Feste Höhe */
    overflow: hidden;
}

.team-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    /* Bild wird eingepasst, ohne verzerrt zu werden */
    display: block;
}

/* Swiper Slide Fix */
.swiper-slide {
    height: auto;
    display: flex;
    justify-content: center;
    transition: transform 0.3s;
}

/* Karte selbst */
.team-card {
    background: var(--white);
    width: 100%;
    border-radius: 8px;
    box-shadow: var(--shadow-md);
    overflow: hidden;
    /* Damit das Bild oben an den Ecken abgerundet bleibt */
    display: flex;
    flex-direction: column;
}

/* Navigations-Pfeile nach außen schieben, damit sie nicht über dem Text liegen */
.swiper-button-next {
    right: -10px;
}

.swiper-button-prev {
    left: -10px;
}

@media (max-width: 1100px) {

    .swiper-button-next,
    .swiper-button-prev {
        display: none;
        /* Auf kleinen Schirmen Pfeile ausblenden (Wischen reicht) */
    }
}


/* 1. Verhindert das seitliche Ausbrechen der gesamten Website */
body,
html {
    overflow-x: hidden;
    width: 100%;
    position: relative;
}

/* 2. Fix für die Team-Sektion */
#team {
    overflow: hidden;
    /* Schneidet alles ab, was über die Sektionsgrenze geht */
    width: 100%;
}

.team-slider {
    /* Wichtig: Hier bleibt overflow: visible, damit die Schatten 
       innerhalb der Sektion schön aussehen, aber das #team darüber 
       verhindert das globale Scrollen. */
    overflow: visible !important;
}

/* Sicherstellen, dass der Slider nicht breiter als der Text darüber ist */
.team-slider {
    max-width: var(--container-width);
    /* Nutzt deine globale Variable */
    margin: 0 auto;
    padding: 20px 0 60px 0;
    overflow: hidden !important;
    /* Zurück auf hidden, da wir das Ausbrechen gefixt haben */
}

.swiper-wrapper {
    display: flex;
    align-items: stretch;
    /* Alle Karten gleich hoch */
}

.team-card {
    height: 100%;
    /* Wichtig für einheitliche Optik */
    margin: 0;
    /* Abstände werden nur über spaceBetween im JS geregelt */
}


/* =========================================
   9. KONTAKT & FORMULAR STYLES
   ========================================= */
.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 50px;
    background: var(--white);
    padding: 40px;
    border-radius: 15px;
    box-shadow: var(--shadow-soft);
}

.contact-info-sidebar {
    background: var(--primary-blue);
    color: var(--white);
    padding: 40px;
    border-radius: 10px;
}

.contact-info-sidebar h3 {
    color: var(--white);
    margin-bottom: 25px;
}

.info-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 25px;
}

.info-item i {
    font-size: 1.2rem;
    color: var(--water-blue);
    background: rgba(255, 255, 255, 0.1);
    padding: 10px;
    border-radius: 50%;
}

.contact-form-container h3 {
    margin-bottom: 30px;
}



/* Map Section */
.map-container {
    width: 100%;
    height: 450px;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow-soft);
    margin-top: 50px;
}

.map-container iframe {
    width: 100%;
    height: 100%;
    border: 0;
}

/* Download Section */
.download-box {
    background: var(--white);
    border-left: 5px solid var(--accent-red);
    padding: 30px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    box-shadow: var(--shadow-soft);
    border-radius: 0 10px 10px 0;
    margin-bottom: 20px;
}

.download-text h4 {
    margin-bottom: 5px;
}

.download-text p {
    margin-bottom: 0;
    font-size: 0.9rem;
}

.btn-download {
    background: var(--accent-red);
    color: white;
    padding: 12px 25px;
    border-radius: 5px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: bold;
}

.btn-download:hover {
    background: var(--primary-blue);
}

/* --- Modern Contact Form Upgrade --- */
.contact-form-container.card-elevation {
    background: #ffffff;
    padding: 50px;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 51, 102, 0.1);
    border: 1px solid rgba(0, 51, 102, 0.05);
    position: relative;
    overflow: hidden;
}

.form-header {
    margin-bottom: 40px;
    border-bottom: 2px solid #f0f4f8;
    padding-bottom: 20px;
}

.form-header h3 {
    font-size: 1.8rem;
    color: var(--primary-blue);
    display: flex;
    align-items: center;
    gap: 15px;
}

.form-header p {
    font-size: 0.95rem;
    color: #777;
    margin-top: 5px;
}

/* Form Grid & Floating Labels */
.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.form-group {
    position: relative;
    margin-bottom: 35px;
}

.form-input {
    width: 100%;
    padding: 15px 15px 15px 45px;
    background: #f8fafc;
    border: 2px solid #e2e8f0;
    border-radius: 12px;
    font-size: 1rem;
    color: var(--primary-blue);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.text-area {
    min-height: 180px;
    resize: none;
}

/* Floating Label Effekt */
.floating-group label {
    position: absolute;
    left: 45px;
    top: 15px;
    color: #94a3b8;
    pointer-events: none;
    transition: all 0.3s ease;
    font-weight: 500;
}

/* Wenn Input fokussiert ist oder Text enthält */
.form-input:focus~label,
.form-input:not(:placeholder-shown)~label {
    top: -25px;
    left: 10px;
    font-size: 0.85rem;
    color: var(--water-blue);
    font-weight: 700;
}

.form-input:focus {
    background: #fff;
    border-color: var(--water-blue);
    box-shadow: 0 0 0 4px rgba(0, 119, 190, 0.1);
    outline: none;
}

/* Icons im Input */
.input-icon {
    position: absolute;
    left: 15px;
    top: 18px;
    color: #94a3b8;
    transition: 0.3s;
}

.form-input:focus+label+.input-highlight+.input-icon {
    color: var(--water-blue);
}

/* Custom Select Styling */
.select-label {
    display: block;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--primary-blue);
    font-size: 0.9rem;
    text-transform: uppercase;
}

.select-container {
    position: relative;
}

.select-icon {
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 5;
    color: #94a3b8;
}

/* Checkbox & Button Area */
.form-footer {
    margin-top: 40px;
    padding-top: 30px;
    border-top: 2px solid #f0f4f8;
}

.checkbox-container {
    display: flex;
    align-items: center;
    position: relative;
    padding-left: 35px;
    margin-bottom: 30px;
    cursor: pointer;
    font-size: 0.9rem;
    user-select: none;
}

.checkbox-container input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
}

.checkmark {
    position: absolute;
    top: 0;
    left: 0;
    height: 24px;
    width: 24px;
    background-color: #e2e8f0;
    border-radius: 6px;
    transition: 0.3s;
}

.checkbox-container:hover input~.checkmark {
    background-color: #cbd5e1;
}

.checkbox-container input:checked~.checkmark {
    background-color: var(--water-blue);
}

.checkmark:after {
    content: "";
    position: absolute;
    display: none;
    left: 9px;
    top: 5px;
    width: 5px;
    height: 10px;
    border: solid white;
    border-width: 0 3px 3px 0;
    transform: rotate(45deg);
}

.checkbox-container input:checked~.checkmark:after {
    display: block;
}

/* High-End Submit Button */
.submit-btn {
    width: 100%;
    background: linear-gradient(135deg, var(--primary-blue), var(--water-blue));
    color: white;
    padding: 18px 30px;
    border: none;
    border-radius: 12px;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
    transition: all 0.4s;
    box-shadow: 0 10px 25px rgba(0, 51, 102, 0.2);
}

.submit-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(0, 51, 102, 0.3);
    filter: brightness(1.1);
}

.submit-btn i {
    transition: transform 0.3s;
}

.submit-btn:hover i {
    transform: translateX(5px);
}

@media (max-width: 768px) {
    .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .contact-form-container {
        padding: 30px 20px;
    }
}

#contact-form {
    background-color: #ddd;
    transform: translate(-50% -50%);
}

/* =========================================
   FINALES KONTAKT-LAYOUT (KONTRAST-FIX)
   ========================================= */

/* Der äußere Container bekommt ein leichtes Grau, damit das Weiß knallt */
.contact-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 40px;
    background: var(--bg-light);
    padding: 80px 20px;
    border-radius: 0;
    /* Modern: Full Width Look */
}

/* Sidebar Info Cards */
.contact-info-sidebar {
    width: 100%;
    max-width: 900px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.info-item {
    background: var(--white);
    padding: 25px;
    border-radius: 12px;
    box-shadow: var(--shadow-md);
    border-top: 4px solid var(--accent-color);
    /* Goldener Akzent oben */
    display: flex;
    align-items: center;
    gap: 15px;
}

.info-item i {
    font-size: 1.5rem;
    color: var(--primary-color);
}

/* DAS FORMULAR - Jetzt mit maximalem Kontrast */
.contact-form-container.card-elevation {
    width: 100%;
    max-width: 900px;
    background: var(--white) !important;
    padding: 50px;
    border-radius: 15px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
    /* Tiefer Schatten */
    border: 1px solid #d1d5db;
    /* Sichtbarer grauer Rand */
}

.form-header h3 {
    color: var(--primary-color) !important;
    font-size: 2rem;
    margin-bottom: 10px;
}

/* Eingabefelder - Endlich sichtbar */
.form-input {
    width: 100%;
    padding: 15px 15px 15px 45px;
    background: #ffffff !important;
    /* Reinweiß */
    border: 2px solid var(--primary-color) !important;
    /* Dunkelblauer Rand */
    border-radius: 8px;
    font-size: 1rem;
    color: var(--text-dark);
    display: block;
}

.form-input:focus {
    border-color: var(--accent-color) !important;
    background: #fffdf5 !important;
    /* Ganz leichter Goldschimmer */
    outline: none;
}

/* Labels über den Feldern */
.floating-group label {
    color: var(--primary-color) !important;
    font-weight: 700;
}

/* DER BUTTON - Jetzt unübersehbar */
.submit-btn {
    width: 100%;
    background: var(--accent-color) !important;
    /* Dein Beethoven Gold */
    color: var(--primary-color) !important;
    /* Dunkelblaue Schrift darauf */
    padding: 20px;
    border: none;
    border-radius: 50px;
    /* Rundes Design passend zu deinen anderen Buttons */
    font-size: 1.2rem;
    font-weight: 800;
    text-transform: uppercase;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
    transition: all 0.3s;
    box-shadow: 0 5px 15px rgba(220, 176, 85, 0.4);
}

.submit-btn:hover {
    background: var(--primary-color) !important;
    color: var(--white) !important;
    transform: translateY(-3px);
}

.submit-btn i {
    color: inherit;
}

/* Checkbox Label */
.label-text {
    color: var(--text-dark) !important;
    font-weight: 500;
}

.label-text a {
    color: var(--primary-light);
    text-decoration: underline;
}