/* Schriften - lokal eingebunden, kein Google-Aufruf */

@font-face {
  font-display: swap;
  font-family: 'Lora';
  font-style: normal;
  font-weight: 500;
  src: url('schriften/lora-v37-latin_latin-ext-500.woff2') format('woff2');
}

@font-face {
  font-display: swap;
  font-family: 'Lora';
  font-style: normal;
  font-weight: 600;
  src: url('schriften/lora-v37-latin_latin-ext-600.woff2') format('woff2');
}

@font-face {
  font-display: swap;
  font-family: 'Source Sans 3';
  font-style: normal;
  font-weight: 400;
  src: url('schriften/source-sans-3-v19-latin_latin-ext-regular.woff2') format('woff2');
}

@font-face {
  font-display: swap;
  font-family: 'Source Sans 3';
  font-style: normal;
  font-weight: 600;
  src: url('schriften/source-sans-3-v19-latin_latin-ext-600.woff2') format('woff2');
}
body {
    font-family: 'Source Sans 3', Arial, sans-serif;
    margin: 0;
    padding: 0;
    color: #332E23;
    line-height: 1.6;
    font-size: 17px;
}

h1, h2, h3, h4 {
    font-family: 'Lora', Georgia, serif;
    font-weight: 600;
    line-height: 1.3;
}

header {
    background-color: #5C6B47;
    color: white;
}

.header-inner {
    max-width: 800px;
    margin: 0 auto;
    padding: 20px;
}

header h1 {
    margin: 0;
}

nav a {
    color: white;
    text-decoration: none;
    margin-right: 20px;
    font-weight: bold;
    padding: 6px 10px;
    border-radius: 4px;
    transition: background-color 0.2s;
}

nav a:hover {
    background-color: rgba(255, 255, 255, 0.2);
    text-decoration: none;
}

main {
    padding: 20px;
    max-width: 800px;
    margin: 0 auto;
}

footer {
    background-color: #E8E2D6;
    text-align: center;
    padding: 15px;
    margin-top: 40px;
}
footer a {
    color: #332E23;
}
.media-text {
    display: flex;
    align-items: center;
    gap: 24px;
    margin: 24px 0;
}

.media-text img {
    max-width: 260px;
    width: 100%;
    border-radius: 8px;
    display: block;
}

.media-text .text {
    flex: 1;
}

.kurs-details {
    background-color: #E8E2D6;
    border-left: 4px solid #B8935A;
    padding: 16px 20px;
    margin: 24px 0;
    border-radius: 4px;
}

.termine {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    list-style: none;
    padding: 0;
    margin: 12px 0;
}

.termine li {
    background-color: white;
    padding: 6px 12px;
    border-radius: 4px;
    font-size: 14px;
}
form {
    max-width: 100%;
}

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

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

.form-group {
    margin-bottom: 16px;
}

label {
    display: block;
    margin-bottom: 4px;
    font-weight: bold;
}

input, select, textarea {
    width: 100%;
    padding: 8px;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-family: inherit;
    font-size: 1em;
    box-sizing: border-box;
}

button[type="submit"] {
    background-color: #5C6B47;
    color: white;
    border: none;
    padding: 10px 24px;
    border-radius: 4px;
    font-size: 1em;
    cursor: pointer;
}

button[type="submit"]:hover {
    background-color: #4a5639;
}
.kacheln {
    display: flex;
    gap: 20px;
    margin: 32px 0;
}

.kachel {
    flex: 1;
    background-color: #E8E2D6;
    padding: 20px;
    border-radius: 8px;
}

.kachel h3 {
    margin-top: 0;
}

.kachel a {
    color: #5C6B47;
    font-weight: bold;
}

.hinweis {
    background-color: #5C6B47;
    color: white;
    padding: 20px;
    border-radius: 8px;
    margin: 32px 0;
}

.hinweis h3 {
    margin-top: 0;
}

.hinweis a {
    color: white;
    font-weight: bold;
}
.disclaimer {
    background-color: #f5f5f5;
    border: 1px solid #ddd;
    padding: 16px 20px;
    border-radius: 4px;
    margin: 32px 0;
    font-size: 15px;
    color: #555;
}

.disclaimer h4 {
    margin-top: 0;
}
.honeypot {
    position: absolute;
    left: -9999px;
}
@media (max-width: 600px) {
    nav a {
        display: block;
        margin: 10px 0;
        padding: 10px;
        background-color: rgba(255, 255, 255, 0.1);
    }

    header h1 {
        font-size: 1.5em;
    }

    main {
        padding: 15px;
    }
    .media-text {
    flex-direction: column;
    }
    .form-row {
    flex-direction: column;
    gap: 0;
    }
    .kacheln {
    flex-direction: column;
    }
}