* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Helvetica Neue", Arial, sans-serif;
}

:root {
    --bg: #0f0f0f;
    --bg-2: #141414;
    --bg-3: #0a0a0a;
    --text: #e5e5e5;
    --muted: #b5b5b5;
    --gold: #c9a96e;
    --border: #1f1f1f;
}

body {
    background: var(--bg);
    color: var(--text);
    line-height: 1.6;
}

.container {
    width: 90%;
    max-width: 1100px;
    margin: 0 auto;
}

/* =========================
   Header / Navigation
   ========================= */

.header {
    background: var(--bg-3);
    border-bottom: 1px solid var(--border);
    position: sticky;
    top: 0;
    z-index: 100;
    backdrop-filter: blur(8px);
}

.nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 5px 0;
    gap: 28px;
}

/* Navbar Logo – größer */
.logo img {
    height: 200px;
    width: auto;
    display: block;
    filter: drop-shadow(0 0 14px rgba(201, 169, 110, 0.45));
}

/* Navigation Schrift – größer */
.nav-links a {
    margin-left: 22px;
    text-decoration: none;
    color: var(--muted);
    font-size: 16px;
    letter-spacing: 0.4px;
    font-weight: 500;
    transition: color 0.2s ease;
}

.nav-links a:hover {
    color: #ffffff;
}

/* =========================
   Hero
   ========================= */

.hero {
    padding: 90px 0 100px;
    background: linear-gradient(180deg, var(--bg), #151515);
}

/* HERO LOGO – mittig */
.hero-logo {
    margin-bottom: 26px;
    display: flex;
    justify-content: center;
}

.hero-logo img {
    height: 350px;
    width: auto;
    display: block;
    filter: drop-shadow(0 0 20px rgba(201, 169, 110, 0.35));
}

.hero h1 {
    font-size: clamp(30px, 4vw, 44px);
    margin-bottom: 16px;
}

.subline {
    font-size: 18px;
    color: var(--gold);
    margin-bottom: 18px;
}

.usp-list {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin: 28px 0;
}

.usp-list span {
    background: #1a1a1a;
    padding: 10px 14px;
    border: 1px solid #222;
    border-radius: 8px;
    font-size: 13px;
    color: #d9d9d9;
}

/* =========================
   Buttons
   ========================= */

.btn {
    display: inline-block;
    padding: 12px 22px;
    border-radius: 10px;
    text-decoration: none;
    font-size: 14px;
    letter-spacing: 0.2px;
    transition: transform 0.15s ease, opacity 0.15s ease;
}

.btn:hover {
    transform: translateY(-1px);
    opacity: 0.95;
}

.primary {
    background: var(--gold);
    color: #0f0f0f;
}

.secondary {
    border: 1px solid var(--gold);
    color: var(--gold);
    background: transparent;
}

/* =========================
   Sections
   ========================= */

.section {
    padding: 80px 0;
}

.section.alt {
    background: var(--bg-2);
}

.section h2 {
    font-size: 32px;
    margin-bottom: 16px;
}

.values {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 18px;
    margin-top: 34px;
}

.card {
    background: #121212;
    border: 1px solid #222;
    border-radius: 16px;
    padding: 20px;
}

.card h3 {
    margin-bottom: 10px;
    color: var(--gold);
    font-size: 18px;
}

/* Lists */
.list {
    list-style: none;
    margin: 26px 0;
}

.list li {
    padding: 10px 0;
    border-bottom: 1px solid #202020;
}

/* Contact */
.contact-info {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 18px;
}

.contact-pill {
    text-decoration: none;
    color: var(--text);
    border: 1px solid #222;
    background: #121212;
    padding: 10px 14px;
    border-radius: 999px;
    font-size: 14px;
    transition: border-color 0.2s ease, color 0.2s ease;
}

.contact-pill:hover {
    border-color: var(--gold);
    color: var(--gold);
}

/* Footer */
.footer {
    background: var(--bg-3);
    border-top: 1px solid var(--border);
    padding: 26px 0;
    text-align: center;
    font-size: 14px;
    color: #888;
}

/* =========================
   Bewerbung – Formular
   ========================= */

.form-wrap {
    margin-top: 22px;
    background: #121212;
    border: 1px solid #222;
    border-radius: 16px;
    padding: 22px;
}

.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
}

.field label {
    display: block;
    font-size: 13px;
    color: #cfcfcf;
    margin-bottom: 6px;
}

.field input,
.field select,
.field textarea {
    width: 100%;
    background: #0f0f0f;
    border: 1px solid #242424;
    color: var(--text);
    padding: 12px 12px;
    border-radius: 12px;
    outline: none;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.field textarea {
    resize: vertical;
    min-height: 130px;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
    border-color: rgba(201, 169, 110, 0.7);
    box-shadow: 0 0 0 4px rgba(201, 169, 110, 0.12);
}

.field.full {
    grid-column: 1 / -1;
}

.check {
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.check input {
    margin-top: 4px;
    accent-color: var(--gold);
}

.form-actions {
    margin-top: 16px;
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
}

.form-actions .btn {
    border: none;
    cursor: pointer;
}

.form-note {
    color: #9a9a9a;
    font-size: 13px;
}

/* =========================
   Thank You Page
   ========================= */

.thanks-wrap {
    max-width: 820px;
    margin: 0 auto;
    background: #121212;
    border: 1px solid #222;
    border-radius: 18px;
    padding: 34px 24px;
    text-align: center;
}

.thanks-logo {
    display: flex;
    justify-content: center;
    margin-bottom: 18px;
}

.thanks-logo img {
    height: 140px;
    width: auto;
    filter: drop-shadow(0 0 18px rgba(201, 169, 110, 0.35));
}

.thanks-title {
    font-size: clamp(26px, 3vw, 40px);
    margin-bottom: 10px;
}

.thanks-text {
    color: #cfcfcf;
    font-size: 16px;
    margin: 14px auto 22px;
    max-width: 60ch;
}

.thanks-actions {
    display: flex;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
    margin-top: 10px;
}

.thanks-note {
    margin-top: 18px;
    color: #8f8f8f;
    font-size: 13px;
}

/* =========================
   Mobile
   ========================= */

@media (max-width: 720px) {

    .nav {
        flex-direction: column;
        align-items: flex-start;
        padding: 10px 0;
    }

    .nav-links {
        width: 100%;
        display: flex;
        flex-wrap: wrap;
        gap: 10px;
    }

    .nav-links a {
        margin-left: 0;
        padding: 10px 12px;
        border: 1px solid #202020;
        border-radius: 10px;
        background: #111;
        font-size: 15px;
    }

    .logo img {
        height: 150px;
    }

    .hero-logo img {
        height: 180px;
    }

    /* Formular & Danke-Seite */
    .form-grid {
        grid-template-columns: 1fr;
    }

    .thanks-logo img {
        height: 110px;
    }
}
