/* ========================================================
   KFZ WERKSTATT BADER – MODERNES BASIS-DESIGN
   ======================================================== */

:root {
  --bg-color: #ffffff;
  --text-color: #333333;
  --text-light: #a49f9f;
  --card-bg: #f9f9f9;
  --header-text: #070707;
  --accent-hover: #5e8e7d;
  --primary-color: #5e8e7d;
  --text-dark: #2b2b2b;
  --bg-light: #ffffff;
  --accent: #d4af37;
}

body.dark-mode {
  --bg-color: #4f4d4d;
  --text-color: #f5f5f5;
  --card-bg: #1e1e1e;
  --text-light: #d2c9c9;
  --header-text: #070707;
  --accent-hover: #074d32;
  --primary-color: #7dcfb2;
  --text-dark: #2b2b2b;
  --bg-light: #c6b8b8;
  --accent: #d4af37;
}

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

body {
  background-color: var(--bg-color);
  color: var(--text-color);
  font-family: 'Segoe UI', Arial, sans-serif;
  line-height: 1.6;
  transition: 0.3s ease;
  overflow-x: hidden;
}

/* --- HEADER & NAV --- */
.site-header {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 2rem;
  background: transparent;
  z-index: 1000;
}

.site-title h1 { color: var(--header-text); font-size: 1.2rem; }

/* Gemeinsame Basis für beide Buttons */
.theme-btn, 
#lang-switch {
    background-color: transparent;    /* Weißer Hintergrund */
    color: #070707;            /* Weiße Schrift */
    border: 2px solid #070707; /* Abgerundeter weißer Rand */
    border-radius: 20px;       /* Macht die Ecken abgerundet */
    padding: 8px 16px;         /* Innenabstand für bessere Form */
    font-size: 0.9rem;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

/* Optional: Hover-Effekt (damit es beim Drüberfahren dunkler wird) */
.theme-btn:hover, 
#lang-switch:hover {
    background-color: #a7a6a6;
}

/* ========================================================
   NAVIGATION & MOBILE MENÜ
   ======================================================== */

nav.main-nav {
    display: flex;
    gap: 2rem;
}

nav.main-nav a {
    text-decoration: none;
    color: var(--header-text);
    font-size: 0.95rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    position: relative;
    padding-bottom: 4px;
}

nav.main-nav a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0;
    height: 1px;
    background: #7a6a58;
    transition: width 0.3s ease;
}

nav.main-nav a:hover::after {
    width: 100%;
}

/* Burger Button */
.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
}

.menu-toggle span {
    width: 25px;
    height: 2px;
    background: #2b2b2b;
    transition: all 0.3s ease;
}

/* X-Animation */
.menu-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.menu-toggle.open span:nth-child(2) { opacity: 0; }
.menu-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile Anpassung */
@media (max-width: 768px) {
    .site-header {
        min-height: 80px; 
        padding: 0 1rem; 
    }

    .menu-toggle {
        display: flex;
    }

    nav.main-nav {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 80px;
        left: 0;
        width: 100%;
        background: rgba(255, 255, 255, 0.475);
        backdrop-filter: blur(10px);
        -webkit-backdrop-filter: blur(10px);
        padding: 1rem;
        box-shadow: 0 4px 6px rgba(30, 30, 30, 0.384);
        text-align: center;
        z-index: 1000;
    }

    nav.main-nav.active {
        display: flex;
    }
}

/* --- HERO BEREICH --- */
.hero-parallax {
    position: relative;
    width: 100%;
    aspect-ratio: 5 / 6;
    background-image: url('images/oldtimer.PNG');
    background-size: cover;
    background-position: center;
    height: 80vh;
    background-repeat: no-repeat;
}

/* --- ZWEITER PARALLAX BEREICH --- */
.parallax-section {
    position: relative;
    width: 100%;
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background-image: url('images/motor.PNG');
    background-size: cover;
    background-position: center 0px;
}

.parallax-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5); /* 50% Dunkler Schleier */
    z-index: 1;
}

.highlight-item {
    position: relative;
    z-index: 2;
    color: white;
    text-align: center;
}

/* --- MOBILE ANPASSUNG (Damit es nicht zuschneidet) --- */
@media (max-width: 768px) {
    .hero-parallax, .parallax-section {
        background-image: url('images/oldtimer_mobile.PNG');
        background-size: cover;      /* Bild wird ganz gezeigt */
        background-position: center center; /* Zentriert das Bild */
        background-attachment: scroll; /* Fixed funktioniert auf Handys nicht gut */
        aspect-ratio: 5 / 6;
    }
}

/* =========================================================
    Startseite
    ======================================================== */

@import url('https://fonts.googleapis.com/css2?family=Rajdhani:wght@500;700&family=Inter:wght@300;400;600&display=swap');

body {
    font-family: 'Inter', sans-serif;
    color: var(--text-dark);
    margin: 0;
    overflow-x: hidden;
}

/* --- TEXT & INTRO BEREICH --- */
#home-text {
    padding: 60px 20px;
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

#home-text h1 {
    font-family: 'Rajdhani', sans-serif;
    font-size: 2.4rem;
    color: var(--primary-color) !important;
    text-transform: uppercase;
    margin-bottom: 20px;
}

#home-text p {
    font-size: 1.2rem;
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 30px;
}

/* --- HIGHLIGHTS & SERVICES --- */
.highlights {
    background: #f4f4f4;
    padding: 40px 20px;
    text-align: center;
}

.services-preview, .career-preview {
    padding: 60px 20px;
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

/* --- FORMULAR DESIGN --- */
.form-container {
    background: var(--card-bg);
    padding: 40px;
    border-top: 5px solid var(--primary-color);
    max-width: 700px;
    margin: 40px auto;
    box-shadow: 0 10px 30px var(--bg-light);
}

.form-group { margin-bottom: 20px; }
input, select, textarea {
    width: 100%;
    padding: 12px;
    margin-top: 8px;
    border: 1px solid #ddd;
    border-radius: 4px;
}

.submit-btn {
    background: var(--primary-color);
    color: var(--bg-light);
    padding: 15px;
    width: 100%;
    border: none;
    cursor: pointer;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* --- TEXT-SEKTIONEN: FEINE LINIEN & DESIGN --- */

/* Gemeinsames Styling für Überschriften in den Sektionen */
#home-text h1, 
.services-preview h2, 
.career-preview h2 {
    position: relative;
    padding-bottom: 20px; /* Platz für die Linie */
    margin-bottom: 30px;
    display: inline-block; /* Damit die Linie nur so lang wie der Text ist */
    color: var(--text-color);
}

/* Die feine Linie unter den Überschriften */
#home-text h1::after, 
.services-preview h2::after, 
.career-preview h2::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px; /* Breite der Linie */
    height: 2px;
    background-color: var(--primary-color); /* Dein Werkstatt-Grün */
    border-radius: 2px;
}

/* Text-Inhalte etwas schicker gestalten */
.services-preview p, .career-preview p {
    max-width: 600px;
    margin: 0 auto 30px auto;
    color: var(--text-light); /* Ein etwas weicheres Grau für die Lesbarkeit */
    font-size: 1.1rem;
}

/* --- BUTTONS NOCH ETWAS MEHR "SCHLIFF" --- */
.btn-hero, .btn-career {
    border: 1px solid var(--primary-color);
    background: transparent;
    color: var(--primary-color);
    padding: 12px 30px;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.8rem;
    font-weight: 700;
    transition: all 0.3s ease;
}

.btn-hero:hover, .btn-career:hover {
    background: var(--primary-color);
    color: #fff;
    box-shadow: 0 5px 15px rgba(9, 90, 62, 0.2);
}

/* =========================================================
    FOOTER DESIGN
    ========================================================= */

.site-footer {
    background-color: #372d2d; /* Helles Grau für Kontrast zum weißen Content */
    border-top: 1px solid #e0e0e0;
    padding: 60px 20px 20px 20px;
    margin-top: 50px;
}

.footer-container {
    max-width: 1000px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
}

.footer-col h4 {
    font-family: 'Rajdhani', sans-serif;
    text-transform: uppercase;
    margin-bottom: 20px;
    color: var(--text-light);
}

.footer-col p, .footer-col a {
    font-size: 0.9rem;
    color: var(--text-light);
    text-decoration: none;
    line-height: 1.8;
}

.footer-col a:hover {
    color: var(--primary-color);
    text-decoration: underline;
}

.footer-bottom {
    text-align: center;
    margin-top: 40px;
    padding-top: 20px;
    border-top: 1px solid #e0e0e0;
    font-size: 0.8rem;
    color: #999;
}

/*==========================================================
    Formular
    ======================================================== */

/* --- Fortschritts-Punkte --- */
.progress-bar {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 30px;
}

.step-dot {
    width: 12px;
    height: 12px;
    background: #ddd;
    border-radius: 50%;
    transition: 0.3s;
}

.step-dot.active {
    background: var(--primary-color);
    transform: scale(1.2);
}

/* --- Formular-Schritte --- */
.form-step {
    display: none; /* Alles ausgeblendet... */
}

.form-step.active {
    display: block; /* ...außer das aktive */
}

/* Navigation Buttons */
.form-navigation {
    display: flex;
    justify-content: space-between;
    margin-top: 20px;
}

.form-navigation button {
    padding: 10px 20px;
    cursor: pointer;
    background: var(--primary-color);
    color: white;
    border: none;
    border-radius: 4px;
}

.form-navigation button:disabled {
    background: #ccc;
    cursor: not-allowed;
}

/* Feine Input-Felder */
.kfz-form input, 
.kfz-form select, 
.kfz-form textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #e0e0e0; /* Sehr dezenter Rahmen */
    border-radius: 4px;
    background: #ffffff;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
    font-size: 0.95rem;
}

/* Effekt beim Anklicken */
.kfz-form input:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 5px rgba(9, 90, 62, 0.1);
}

/* Row-Struktur für Vorname/Nachname nebeneinander */
.form-row {
    display: flex;
    gap: 15px;
}

.form-row .form-group {
    flex: 1;
}

/* Die Navigation Buttons noch dezenter */
.form-navigation button {
    background: transparent;
    border: 1px solid var(--primary-color);
    color: var(--primary-color);
    padding: 10px 25px;
    border-radius: 20px; /* Abgerundet wirkt feiner */
    font-weight: 600;
    transition: 0.3s;
}

.form-navigation button:hover:not(:disabled) {
    background: var(--primary-color);
    color: white;
}

/* ===========================================================
    Kontaktseite & Header dunkel
    ======================================================== */
/* --- KONTAKT GRID: Ordnung für alle Items --- */
.contact-grid {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
    margin-top: 80px;
    padding: 0 20px;
    max-width: 1200px;
    margin: 0 auto;
}

/* --- CONTACT ITEM: Dein Standard-Design (passend zur Startseite) --- */
.contact-item {
    flex: 0 1 300px;
    max-width: 350px;
    background: #fff;
    padding: 30px;
    border: 1px solid #eee;
    border-radius: 8px;
    text-align: center;
}

.contact-item h2 {
    font-family: 'Rajdhani', sans-serif;
    color: var(--primary-color);
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.contact-item p {
    color: #555;
    line-height: 1.6;
    margin-bottom: 10px;
}

/* --- CONTACT: Die abgehobene Haupt-Sektion --- */
.contact {
    grid-column: 1 / -1; /* Geht über die volle Breite des Grids */
    background: #fdfdfd; /* Ganz leicht anderes Weiß/Grau */
    padding: 50px 20px;
    text-align: center;
    border-bottom: 1px solid #ddd;
    margin-bottom: 20px;
}

.contact h1 {
    font-family: 'Rajdhani', sans-serif;
    font-size: 2.8rem;
    color: var(--primary-color);
    text-transform: uppercase;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 20px;
    display: inline-block;
}

.contact h1::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background-color: var(--primary-color);
}

.contact p {
    font-size: 1.2rem;
    color: #ffffff;
    max-width: 800px;
    margin: 0 auto;
}

/* --- Telefonnummer-Link von Unterstreichung und Standard-Blau befreien --- */
.contact-item a {
    color: inherit;            /* Übernimmt die Farbe vom Text */
    text-decoration: none;     /* Entfernt die Unterstreichung */
    font-weight: 600;          /* Hebt die Nummer etwas hervor */
}

/* --- 1. Der Parallax Bereich (Das Bild) --- */
.contact-parallax, .angebot-parallax {
    position: relative;
    min-height: 400px;
    display: flex;
    flex-direction: column; /* Damit Elemente untereinander stehen */
    margin-left: calc(-50vw + 50%);
    align-items: center;
    justify-content: center;
    background-image: url('images/motor.PNG');
    background-size: cover;
    background-position: center center;
    background-attachment: fixed;
    width: 100%;
}

/* --- 2. Das Overlay (jetzt als eigene Klasse) --- */
.parallax-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1;
}

/* --- 3. Die Überschrift (Über dem Overlay) --- */
.contact-parallax h1 {
    position: relative;
    z-index: 2;
    color: #ffffff;
    font-family: 'Rajdhani', sans-serif;
    text-align: center;
    font-size: 2.5rem; 
    word-wrap: break-word; /* Bricht lange Wörter um */
    overflow-wrap: break-word;
    hyphens: auto; /* Silbentrennung */
    padding: 0 20px; /* Sicherer Abstand zum Rand */
    max-width: 100%; /* Verhindert Ausbruch */
    box-sizing: border-box; /* Padding wird eingerechnet */
}

/* --- NEU: Responsives Design für Handys --- */
@media (max-width: 600px) {
    .contact-parallax h1 {
        font-size: 1.8rem; /* Auf kleinen Geräten kleiner machen */
    }
    
    .contact-parallax {
        aspect-ratio: 5 / 6;
    }
}

/* --- 4. Der Text unter dem Bild --- */
.contact-text {
    grid-column: 1 / -1; /* Geht auch über die volle Breite */
    background: #fff;
    padding: 40px 20px;
    text-align: center;
}

.contact-text p {
    color: #555;
    font-size: 1.2rem;
    line-height: 1.6;
    max-width: 800px;
    margin: 0 auto;
}

/*===========================================================
    Ueber
    ======================================================== */
/* --- ABOUT GRID: Struktur --- */
.about-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    padding: 40px 20px;
    max-width: 1100px;
    margin: 0 auto;
    width: 100%;
    box-sizing: border-box;
}

/* --- ABOUT-ITEM: Karten-Design (wie Service-Preview) --- */
.about-item {
    background: #fff;
    padding: 30px;
    text-align: left;
    border-top: 4px solid var(--primary-color);
    margin-bottom: 10px;
}

.about-item h2 {
    font-family: 'Inter', sans-serif;
    color: var(--primary-color);
    margin-bottom: 20px;
    text-align: center;
}

.about-item h3 {
    position: relative;
    padding-bottom: 20px;
    font-family: 'Inter', sans-serif;
    color: #333;
    margin-top: 25px;
    text-align: center;
}

/* --- TEAM & FOOTER: Zentrierter Block --- */
.about-team, .about {
    grid-column: 1 / -1;
    text-align: center;
    padding: 20px 0px;
}

.about-team h1 {
    font-family: 'Rajdhani', sans-serif;
    color: var(--primary-color);
    text-transform: uppercase;
}

#morespace {
    margin-top: 20px;
    display: block;
}

main {
    display: block; /* Oder was dein Layout erfordert */
    width: 100%;
}

.about-text {
    background: #fff;
    padding: 30px;
    text-align: left;
    margin-bottom: 10px;
}

.about-text p {
    max-width: 800px;
    margin: 0 auto 30px auto;
    color: #666; /* Ein etwas weicheres Grau für die Lesbarkeit */
    font-size: 1.1rem;
    padding-top: 15px;
    padding-bottom: 15px;
}

.about-hero {
    background: #fff;
    padding: 30px;
    text-align: center;
}

/* Die feine Linie unter den Überschriften */
.about-item h3:after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px; /* Breite der Linie */
    height: 2px;
    background-color: var(--primary-color); /* Dein Werkstatt-Grün */
    border-radius: 2px;
}

/* Text-Inhalte etwas schicker gestalten */
.about-item p {
    max-width: 800px;
    margin: 0 auto 30px auto;
    color: #666; /* Ein etwas weicheres Grau für die Lesbarkeit */
    font-size: 1.1rem;
    padding-top: 30px;
    padding-bottom: 30px;
}

.about-history {
    background: #f2eeee;
    padding: 30px;
    border-top: 2px solid var(--primary-color);
    border-radius: 8px;
    box-shadow: inset 0 0 20px rgba(0,0,0,0.3);
    text-align: left;
}

.about-history h2 {
    font-family: 'Inter', sans-serif;
    color: var(--text-dark);
    margin-bottom: 20px;
    text-align: center;
}

.about-history p {
    max-width: 800px;
    margin: 0 auto 30px auto;
    color: #666; /* Ein etwas weicheres Grau für die Lesbarkeit */
    font-size: 1.1rem;
    padding-top: 15px;
}

/*============================================================
    Leistungen
    ======================================================== */
 .angebot-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 80px;
    max-width: 1100px;
    margin: 0 auto;
}

.angebot-parallax h1 {
    color: #ffffff;
    font-size: 1.6rem;
    line-height: 1.8;
    max-width: 85%;
    margin: 0 auto;
    text-align: center;
    z-index: 2;
}

.angebot-text {
    grid-column: 1 / -1; /* Geht auch über die volle Breite */
    background: #fff;
    padding: 40px 20px;
    text-align: center;
}

.angebot-text p {
    padding-top: 15px;
    color: #555;
    font-size: 1.2rem;
    line-height: 1.6;
    max-width: 800px;
    margin: 0 auto;
}

.angebot-text h4 {
    position: relative;
    padding-bottom: 20px;
    padding-top: 20px;
    color: #555;
    font-size: 1.6rem;
    line-height: 1.8;
    max-width: 800px;
    margin: 0 auto;
}

/* Die feine Linie unter den Überschriften */
.angebot-text h4::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px; /* Breite der Linie */
    height: 2px;
    background-color: var(--primary-color); /* Dein Werkstatt-Grün */
    border-radius: 2px;
}

.angebot-item {
    background: #fff;
    padding: 30px;
    border: 1px solid #eee;
    border-radius: 8px;
    display: flex;
    flex-direction: column; /* Alles untereinander anordnen */
    align-items: center;    /* Alles horizontal zentrieren */
    width: 85%;
    margin: 0 auto;
}

.angebot-item h2 {
    font-family: 'Rajdhani', sans-serif;
    color: var(--primary-color);
    font-size: 1.5rem;
    margin-bottom: 15px;
    text-align: center;
}

.angebot-item p {
    color: #555;
    line-height: 1.6;
    margin-bottom: 10px;
}

.angebot-button {
    border: 1px solid var(--primary-color);
    background: transparent;
    color: var(--primary-color);
    padding: 12px 30px;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.8rem;
    font-weight: 700;
    transition: all 0.3s ease;
    align-self: center;
    margin-top: 20px;
}

.angebot-button:hover {
    background: var(--primary-color);
    color: #fff;
    box-shadow: 0 5px 15px rgba(9, 90, 62, 0.2);
}

/* ==========================================================
    Karriere
    ======================================================== */
/* --- Der Haupt-Container (Standard für Desktop) --- */
#karriere-hero {
    position: relative;
    width: 100%;
    min-height: 80vh; 
    background-image: url('images/oldtimer.PNG');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed; 
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Der Container für den Text, damit er besser lesbar ist */
.hero-overlay-content {
    text-align: center;
    color: black;
    z-index: 2;
}

.hero-overlay-content h1 {
    font-family: 'Rajdhani', sans-serif;
    font-size: 3rem;
    margin-bottom: 15px;
}

.hero-overlay-content p {
    font-size: 1.2rem;
}

@media (max-width: 768px) {
    .karriere-parallax {
        /* Handy-Bild */
        background-image: url('../images/oldtimer_mobile.PNG');
        background-size: cover; 
        background-position: center;
        background-attachment: fixed; 
        min-height: 60vh;
    }
    
    .hero-overlay-content h1 {
        font-size: 2rem;
    }
}

.karriere-text {
    grid-column: 1 / -1; /* Geht auch über die volle Breite */
    background: #fff;
    padding: 40px 20px;
    text-align: center;
}

.karriere-text p {
    position: relative;
    padding-top: 15px;
    padding-bottom: 30px;
    color: #555;
    font-size: 1.2rem;
    line-height: 1.6;
    max-width: 800px;
    margin: 0 auto;
}

.karriere-benefits {
    padding: 40px 20px;
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.karriere {
    padding: 15px 20px;
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.karriere-benefits h3, 
.karriere h1 {
    position: relative;
    padding-bottom: 20px; /* Platz für die Linie */
    margin-bottom: 20px;
    display: inline-block; /* Damit die Linie nur so lang wie der Text ist */
}

/* Die feine Linie unter den Überschriften */
.karriere-benefits h3::after, 
.karriere h1::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px; /* Breite der Linie */
    height: 2px;
    background-color: var(--primary-color); /* Dein Werkstatt-Grün */
    border-radius: 2px;
}

/* Text-Inhalte etwas schicker gestalten */
.karriere-benefits p, .karriere p {
    max-width: 600px;
    margin: 0 auto 30px auto;
    color: #666; /* Ein etwas weicheres Grau für die Lesbarkeit */
    font-size: 1.1rem;
}

.karriere-benefits h3 {
    max-width: 600px;
    margin: 0 auto 30px auto;
    color: var(--text-dark);
    font-size: 1.4rem;
}

.btn-offene_stellen {
    background: transparent;
    color: var(--text-dark);
    width: 100%;
    border: none;
    cursor: pointer;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}