:root {
    --bg-color: #fff;
    --card-bg: #052c3e;
    --highlight: #fff;
    --text-white: #fffff;
    --form-bg: #ffff;
    --btn-dark: #1a6d84;
}


#kontakt {
        height: 100vh;
        display: flex;
        justify-content: center;
        align-items: flex-end;
    }

.main-wrapper {
    height: 80%;
    max-width: 1100px;
}

.page-header {
    margin-bottom: 40px;
    color: var(--card-bg);
}

.page-header h1 { font-size: 3rem; font-weight: 600; }
.page-header p { font-size: 1.5rem; opacity: 0.8; }

/* Die dunkle Karte */
.contact-card {
    background-color: var(--card-bg);
    border-radius: 30px;
    display: flex;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0,0,0,0.2);
    min-height: 600px;
    height: 60vw;
    max-height: 800px;
}

/* Linke Sektion */
.info-section {
    flex: 1;
    padding: 60px;
    color: white;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.info-section h2 {
    font-size: 2.5rem;
    line-height: 1.2;
    margin-bottom: 40px;
}

.highlight { color: var(--highlight); }

.contact-details { margin-bottom: 40px; }
.detail-item {
    display: flex;
    align-items: center;
    font-size: 1.1rem;
}

.detail-item i {
    margin-right: 20px;
    color: var(--highlight);
    width: 20px;
}

.social-icons a {
    color: white;
    font-size: 1.5rem;
    margin-right: 25px;
    text-decoration: none;
    transition: 0.3s;
}

.social-icons a img {
    height: 1.5rem;
    width: auto;
}

.social-icons a:hover { color: var(--highlight); }

/* Rechte Sektion (Weißes Formular) */
.form-section {
    flex: 1;
    margin: 30px;
    border-radius: 20px;
    padding: 40px;
}

.label-text {
    font-weight: 600;
    color: #052c3e;
    margin-bottom: 15px;
}


.input-group {
    margin-bottom: 25px;
}

.input-group label {
    display: block;
    font-size: 0.85rem;
    color: #fff;
    margin-bottom: 5px;
}

.input-group input, .input-group textarea {
    width: 100%;
    border: none;
    border-bottom: 1px solid #1a6d84;
    padding: 10px 0;
    outline: none;
    font-size: 1rem;
}

.input-group textarea {
    border: 1px solid #ccc;
    border-radius: 8px;
    padding: 10px;
    margin-top: 5px;
}

.submit-btn {
    width: 100%;
    background-color: var(--btn-dark);
    color: white;
    border: none;
    padding: 15px;
    border-radius: 30px;
    font-size: 1rem;
    cursor: pointer;
    transition: background 0.3s;
    margin-top: 10px;
}

.submit-btn:hover {
    background-color: #052c3e;
}

/* Responsive Anpassung für Handys */
@media (max-width: 900px) {
    .contact-card { flex-direction: column; min-height: fit-content;}
    .page-header h1 { font-size: 2rem; }
    .info-section { padding: 40px; }
    .main-wrapper {width: 90vw;}
    .form-section form {width: 80%;}
}