:root {
    --dark-blue: #050714;
    --light-blue: #e1e7f5;
    --header-text-color: #06091e;
    --white: #ffffff;
    --font-size-global: 16pt;
    --font-family: 'IBM Plex Mono', monospace;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-family);
    background-color: var(--dark-blue);
    color: var(--white);
    font-size: var(--font-size-global);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

.container {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 25px;
}

/* Header */
.hero {
    position: relative;
    width: 100%;
    height: 60vh;
    min-height: 350px;
    background-image: url('Header-Timm.jpg');
    background-size: cover;
    background-position: center top;
}

.nav-wrapper {
    width: 100%;
    display: flex;
    justify-content: center;
}

.nav-overlay {
    width: 100%;
    max-width: 900px;
    display: flex;
    justify-content: space-between;
    padding: 40px 25px;
    color: var(--header-text-color);
    font-size: 18pt; /* Spezifischer Wunsch für Header */
    font-weight: 500;
    font-style: italic;
}

/* Sektionen */
.section {
    padding: 80px 0;
    width: 100%;
}

.about p {
    margin-bottom: 25px;
}

.contact {
    background-color: var(--light-blue);
    color: var(--dark-blue);
}

.contact h2 {
    font-weight: 400;
    margin-bottom: 40px;
    font-size: var(--font-size-global);
}

/* Formular Fix */
.contact-form {
    display: flex;
    flex-direction: column;
    width: 100%;
}

.form-row {
    display: flex;
    gap: 20px;
}

.input-group {
    display: flex;
    flex-direction: column;
    margin-bottom: 20px;
    flex: 1;
}

.input-group label {
    font-size: 10pt;
    text-transform: uppercase;
    margin-bottom: 5px;
    font-weight: 500;
}

.input-group input, 
.input-group textarea {
    background: rgba(255, 255, 255, 0.4);
    border: 1px solid var(--dark-blue);
    border-radius: 8px;
    padding: 12px;
    font-family: var(--font-family);
    font-size: 14pt;
    color: var(--dark-blue);
    width: 100%;
    outline: none;
}

.button-wrapper {
    display: flex;
    justify-content: flex-end;
    margin-top: 10px;
}

button {
    background-color: var(--dark-blue);
    color: var(--white);
    border: none;
    padding: 14px 45px;
    border-radius: 30px;
    font-family: var(--font-family);
    font-size: 14pt;
    cursor: pointer;
    transition: opacity 0.3s ease;
}

button:hover {
    opacity: 0.9;
}

/* Footer */
.footer {
    background-color: #000;
    padding: 50px 0;
}

.footer-nav {
    display: flex;
    justify-content: flex-end;
    gap: 30px;
}

.footer-nav a {
    color: var(--white);
    text-decoration: none;
    font-size: 10pt;
    opacity: 0.7;
}

/* Responsive */
@media (max-width: 768px) {
    .form-row {
        flex-direction: column;
        gap: 0;
    }
    .nav-overlay {
        font-size: 14pt;
        flex-direction: column;
        gap: 5px;
    }
    .section {
        padding: 50px 0;
    }
}