/* Allgemeine Stilvorlagen */
body {
    font-family: 'Arial', sans-serif;
    margin: 0;
    padding: 0;
    background-color: #111;
    color: #fff;
}

.dark-theme {
    background-color: #111;
    color: #fff;
}

.light-theme {
    background-color: #fff;
    color: #111;
}

header {
    background-color: #222;
    padding: 20px 0;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 20px;
}

nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

nav ul li {
    display: none;
}

.menu-icon {
    display: block;
    font-size: 24px;
    cursor: pointer;
    color: #fff;
}

nav input[type="checkbox"] {
    display: none;
}

nav input[type="checkbox"]:checked ~ ul li {
    display: block;
    margin-right: 20px;
}

nav ul li a {
    text-decoration: none;
    color: #fff;
    font-weight: 600;
    font-size: 14px;
    transition: color 0.3s ease;
}

nav ul li a:hover {
    color: #ff6e40;
}

.cta-button {
    display: inline-block;
    padding: 10px 20px;
    background-color: #ff9ad1; /* Hellrosa Farbe für den CTA-Button */
    color: #fff;
    text-decoration: none;
    border: none;
    border-radius: 5px;
    font-weight: bold;
    transition: background-color 0.3s ease;
}

.cta-button:hover {
    background-color: #ff6e40;
}

footer {
    background-color: #222;
    padding: 20px 0;
    color: #fff;
}

.social-icon {
    display: inline-block;
    margin-right: 20px;
    text-decoration: none;
    color: #fff;
    font-size: 18px;
}

/* CSS für responsive Bilder */
img {
    max-width: 100%;
    height: auto;
}

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

.form-group label {
    display: block;
    font-weight: bold;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
}

form button {
    display: inline-block;
    padding: 10px 20px;
    background-color: #ff9ad1;
    color: #fff;
    text-decoration: none;
    border: none;
    border-radius: 5px;
    font-weight: bold;
    transition: background-color 0.3s ease;
}

form button:hover {
    background-color: #ff6e40;
}