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

:root {
    --primary-color: #2c3e50;
    --accent-color: #e74c3c;
    --secondary-color: #3498db;
    --text-color: #333;
    --text-light: #666;
    --bg-light: #f8f9fa;
    --bg-white: #ffffff;
    --transition: all 0.3s ease;
    
    /* Sektions-Farben - sanftere, etwas dunklere Töne */
    --ueber-mich-color: #6b7fa3;
    --zirkuspaedagogik-color: #5fb885;
    --familienzirkus-color: #b88bc0;
    --eltern-kind-zirkus-color: #c99bc5;
    --kita-zirkuskurse-color: #5fb885;
    --workshops-color: #f59e0b;
    --privatstunde-color: #8b5cf6;
    --zirkusprojektwoche-color: #10b981;
    --kindergeburtstage-color: #ec4899;
    --preise-color: #5a9dd4;
    --kinderschutz-color: #7c9eb8;
    --projekte-color: #d88ba0;
    --kontakt-color: #5fb8b8;
}

body {
    font-family: 'Outfit', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    overflow-x: hidden;
}

/* Serifenschrift für Überschriften */
h1, h2, h3, .hero-title, .section-title {
    font-family: 'Crimson Pro', Georgia, serif;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    transition: var(--transition);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 1rem 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--primary-color);
}

.nav-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    pointer-events: auto;
    visibility: visible;
}

/* Hamburger Menu Button */
.hamburger-menu {
    display: none;
    flex-direction: column;
    justify-content: space-around;
    width: 44px;
    height: 44px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 7px;
    z-index: 1001;
    transition: var(--transition);
    -webkit-tap-highlight-color: transparent;
    touch-action: manipulation;
}

.hamburger-menu span {
    width: 100%;
    height: 3px;
    background: var(--primary-color);
    border-radius: 3px;
    transition: var(--transition);
    transform-origin: center;
}

.hamburger-menu.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

.hamburger-menu.active span:nth-child(2) {
    opacity: 0;
}

.hamburger-menu.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

.nav-button {
    background: var(--bg-light);
    border: 2px solid transparent;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--text-color);
    cursor: pointer;
    transition: var(--transition);
    font-family: 'Outfit', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    text-decoration: none;
    display: inline-block;
}

.nav-button:hover {
    background: var(--bg-white);
    border-color: var(--accent-color);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.nav-button.active {
    background: var(--accent-color);
    color: white;
    border-color: var(--accent-color);
}

/* Sektions-spezifische Button-Farben */
.nav-button[data-section="ueber-mich"].active {
    background: var(--ueber-mich-color);
    border-color: var(--ueber-mich-color);
}

.nav-button[data-section="zirkuspaedagogik"].active {
    background: var(--zirkuspaedagogik-color);
    border-color: var(--zirkuspaedagogik-color);
}

.nav-button[data-section="familienzirkus"].active {
    background: var(--familienzirkus-color);
    border-color: var(--familienzirkus-color);
}

.nav-button[data-section="kita-zirkuskurse"].active {
    background: var(--kita-zirkuskurse-color);
    border-color: var(--kita-zirkuskurse-color);
}

.nav-button[data-section="workshops"].active {
    background: var(--workshops-color);
    border-color: var(--workshops-color);
}

.nav-button[data-section="privatstunde"].active {
    background: var(--privatstunde-color);
    border-color: var(--privatstunde-color);
}

.nav-button[data-section="kindergeburtstage"].active {
    background: var(--kindergeburtstage-color);
    border-color: var(--kindergeburtstage-color);
}

.nav-button[data-section="preise"].active {
    background: var(--preise-color);
    border-color: var(--preise-color);
}

.nav-button[data-section="projekte"].active {
    background: var(--projekte-color);
    border-color: var(--projekte-color);
}

.nav-button[data-section="kontakt"].active {
    background: var(--kontakt-color);
    border-color: var(--kontakt-color);
}

/* Hover-Farben für Buttons */
.nav-button[data-section="ueber-mich"]:hover {
    border-color: var(--ueber-mich-color);
}

.nav-button[data-section="zirkuspaedagogik"]:hover {
    border-color: var(--zirkuspaedagogik-color);
}

.nav-button[data-section="familienzirkus"]:hover {
    border-color: var(--familienzirkus-color);
}

.nav-button[data-section="kita-zirkuskurse"]:hover {
    border-color: var(--kita-zirkuskurse-color);
}

.nav-button[data-section="workshops"]:hover {
    border-color: var(--workshops-color);
}

.nav-button[data-section="privatstunde"]:hover {
    border-color: var(--privatstunde-color);
}

.nav-button[data-section="kindergeburtstage"]:hover {
    border-color: var(--kindergeburtstage-color);
}

.nav-button[data-section="preise"]:hover {
    border-color: var(--preise-color);
}

.nav-button[data-section="projekte"]:hover {
    border-color: var(--projekte-color);
}

.nav-button[data-section="kontakt"]:hover {
    border-color: var(--kontakt-color);
}

.content-section {
    animation: fadeIn 0.5s ease;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--ueber-mich-color) 0%, #764ba2 100%);
    color: white;
    text-align: center;
    padding-top: 80px;
    position: relative;
    overflow: hidden;
    transition: background 0.5s ease;
}

/* Hero-Farben für verschiedene Sektionen */
.hero[data-section="ueber-mich"] {
    background: linear-gradient(135deg, var(--ueber-mich-color) 0%, #8b9dc3 100%);
}

.hero[data-section="zirkuspaedagogik"] {
    background: linear-gradient(135deg, var(--zirkuspaedagogik-color) 0%, #7dd3a0 100%);
}

.hero[data-section="familienzirkus"] {
    background: linear-gradient(135deg, var(--familienzirkus-color) 0%, #b88bc0 100%);
}

.hero[data-section="kita-zirkuskurse"] {
    background: linear-gradient(135deg, var(--kita-zirkuskurse-color) 0%, #7dd3a0 100%);
}

.hero[data-section="workshops"] {
    background: linear-gradient(135deg, var(--workshops-color) 0%, #fbbf24 100%);
}

.hero[data-section="privatstunde"] {
    background: linear-gradient(135deg, var(--privatstunde-color) 0%, #a78bfa 100%);
}

.hero[data-section="zirkusprojektwoche"] {
    background: linear-gradient(135deg, var(--zirkusprojektwoche-color) 0%, #34d399 100%);
}

.hero[data-section="kindergeburtstage"] {
    background: linear-gradient(135deg, var(--kindergeburtstage-color) 0%, #f472b6 100%);
}

.hero[data-section="preise"] {
    background: linear-gradient(135deg, var(--preise-color) 0%, #7ab8e8 100%);
}

.hero[data-section="kinderschutz"] {
    background: linear-gradient(135deg, var(--kinderschutz-color) 0%, #a8c5d8 100%);
}

.hero[data-section="projekte"] {
    background: linear-gradient(135deg, var(--projekte-color) 0%, #d88ba0 100%);
}

.hero[data-section="kontakt"] {
    background: linear-gradient(135deg, var(--kontakt-color) 0%, #7dd3d3 100%);
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><circle cx="50" cy="50" r="2" fill="rgba(255,255,255,0.1)"/></svg>');
    opacity: 0.3;
}

.hero-content {
    position: relative;
    z-index: 1;
    animation: fadeInUp 1s ease;
}

.hero-title {
    font-size: 4rem;
    font-weight: 700;
    margin-bottom: 1rem;
    letter-spacing: -1px;
}

.hero-subtitle {
    font-size: 1.5rem;
    font-weight: 300;
    margin-bottom: 0.5rem;
    opacity: 0.95;
}

.hero-location {
    font-size: 1rem;
    opacity: 0.8;
    font-weight: 300;
}

/* Sections */
section {
    padding: 80px 0;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 600;
    margin-bottom: 3rem;
    text-align: center;
    color: var(--primary-color);
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: var(--accent-color);
    border-radius: 2px;
}

/* About Section */
.about {
    background: linear-gradient(to bottom, rgba(107, 127, 163, 0.05) 0%, var(--bg-white) 100%);
}

.about .section-title {
    color: var(--ueber-mich-color);
}

.about-content {
    max-width: 1000px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 3rem;
    align-items: start;
}

.about-image {
    width: 100%;
    min-height: 400px;
    background: var(--bg-light);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    position: relative;
}

.about-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    display: block;
}

.about-image::before {
    content: 'Bild wird geladen...';
    position: absolute;
    color: var(--text-light);
    font-size: 0.9rem;
    z-index: 0;
}

.about-image img[src] {
    position: relative;
    z-index: 1;
}

.logo-overlay {
    position: absolute;
    top: 15%;
    right: 10%;
    width: 60px;
    height: 60px;
    background: var(--bg-light);
    border-radius: 50%;
    z-index: 2;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.about-text p {
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-light);
}

.about-text strong {
    color: var(--primary-color);
    font-weight: 600;
}

/* Family Circus Section */
.family-circus {
    background: linear-gradient(to bottom, rgba(184, 139, 192, 0.05) 0%, var(--bg-white) 100%);
}

.family-circus .section-title {
    color: var(--familienzirkus-color);
}

.family-circus-content {
    max-width: 800px;
    margin: 0 auto;
}

.family-circus-content h3 {
    font-size: 1.8rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.family-circus-content p {
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-light);
}

/* Kita Circus Section */
.kita-circus {
    background: linear-gradient(to bottom, rgba(95, 184, 133, 0.05) 0%, var(--bg-light) 100%);
}

.kita-circus .section-title {
    color: var(--kita-zirkuskurse-color);
}

.kita-circus-content {
    max-width: 1000px;
    margin: 0 auto;
}

.kita-content-wrapper {
    display: grid;
    grid-template-columns: 1fr 300px;
    gap: 3rem;
    align-items: start;
}

.kita-text-content {
    flex: 1;
}

.kita-image {
    position: sticky;
    top: 2rem;
    opacity: 0.6;
    transition: opacity 0.3s ease;
}

.kita-image:hover {
    opacity: 0.8;
}

.kita-image img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
    object-fit: contain;
    display: block;
}

.kita-circus-content h3 {
    font-size: 1.8rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    font-weight: 600;
    text-align: center;
}

.kita-circus-content p {
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-light);
}

.info-button {
    background: var(--accent-color);
    color: white;
    border: none;
    padding: 1rem 2rem;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition);
    margin-top: 0;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

.info-button:hover {
    background: var(--primary-color);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

/* Anmelde-Buttons mit eigener Farbe */
.anmeldung-button {
    position: relative;
    text-decoration: none;
    display: inline-block;
    padding: 0.75rem 1.5rem;
    background: #059669;
    color: white;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition);
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

.anmeldung-button:hover {
    background: #047857;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(5, 150, 105, 0.3);
}

/* Tooltip für Anmeldebutton */
.anmeldung-button::after {
    content: attr(data-tooltip);
    position: absolute;
    bottom: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(-8px);
    background-color: rgba(0, 0, 0, 0.9);
    color: white;
    padding: 0.5rem 0.75rem;
    border-radius: 6px;
    font-size: 0.85rem;
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease, transform 0.3s ease;
    z-index: 1000;
    margin-bottom: 0.5rem;
}

.anmeldung-button::before {
    content: '';
    position: absolute;
    bottom: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(-2px);
    border: 6px solid transparent;
    border-top-color: rgba(0, 0, 0, 0.9);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease, transform 0.3s ease;
    z-index: 1000;
}

.anmeldung-button:hover::after,
.anmeldung-button:hover::before {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
}


.info-content {
    margin-top: 2rem;
    padding: 2rem;
    background: var(--bg-white);
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    animation: fadeIn 0.5s ease;
}

.info-content h3 {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.info-content p {
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-light);
}

/* Workshops Section */
.workshops {
    background: linear-gradient(to bottom, rgba(245, 158, 11, 0.05) 0%, var(--bg-white) 100%);
}

.workshops .section-title {
    color: var(--workshops-color);
}

.workshops-content {
    max-width: 900px;
    margin: 0 auto;
}

.workshop-card {
    background: var(--bg-white);
    border-radius: 12px;
    padding: 2.5rem;
    margin-bottom: 2rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border-left: 4px solid var(--workshops-color);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.workshop-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.workshop-card h3 {
    font-size: 1.75rem;
    color: var(--workshops-color);
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.workshop-intro {
    font-size: 1.15rem;
    font-weight: 500;
    color: var(--text-color);
    margin-bottom: 1.5rem;
    line-height: 1.7;
    font-style: italic;
}

.workshop-card p {
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-light);
}

.workshop-card p:last-child {
    margin-bottom: 0;
}

.workshop-images {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.workshop-image {
    width: 100%;
}

.workshop-image img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.workshop-image img:hover {
    transform: translateY(-4px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}

@media (max-width: 768px) {
    .workshop-images {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}

/* Privatstunde Section */
.privatstunde-content {
    max-width: 900px;
    margin: 0 auto;
}

.privatstunde-card {
    background: var(--bg-white);
    border-radius: 12px;
    padding: 2.5rem;
    margin-bottom: 2rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border-left: 4px solid var(--privatstunde-color);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.privatstunde-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.privatstunde-intro {
    font-size: 1.15rem;
    font-weight: 500;
    color: var(--text-color);
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.privatstunde-card p {
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-light);
}

.privatstunde-card p:last-child {
    margin-bottom: 0;
}

.privatstunde-card strong {
    color: var(--privatstunde-color);
    font-weight: 600;
}

.privatstunde-video-button {
    background: var(--privatstunde-color) !important;
    color: white !important;
    padding: 1rem 2rem !important;
    border-radius: 8px !important;
    font-size: 1.1rem !important;
    font-weight: 500 !important;
    text-decoration: none !important;
    display: inline-block !important;
    transition: transform 0.3s ease, box-shadow 0.3s ease !important;
    cursor: pointer !important;
    border: none !important;
}

.privatstunde-video-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(139, 92, 246, 0.4);
    background: #7c3aed !important;
}

/* Zirkusprojektwoche Section */
.zirkusprojektwoche-content {
    max-width: 900px;
    margin: 0 auto;
}

.zirkusprojektwoche-card {
    background: var(--bg-white);
    border-radius: 12px;
    padding: 2.5rem;
    margin-bottom: 2rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border-left: 4px solid var(--zirkusprojektwoche-color);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.zirkusprojektwoche-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.zirkusprojektwoche-intro {
    font-size: 1.15rem;
    font-weight: 500;
    color: var(--text-color);
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.zirkusprojektwoche-card p {
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-light);
}

.zirkusprojektwoche-card p:last-child {
    margin-bottom: 0;
}

.zirkusprojektwoche-card strong {
    color: var(--zirkusprojektwoche-color);
    font-weight: 600;
}

.zirkusprojektwoche-subtitle {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--zirkusprojektwoche-color);
    margin-bottom: 1.5rem;
    margin-top: 0;
    line-height: 1.4;
}

/* Zirkuspädagogik Section */
.zirkuspaedagogik {
    background: linear-gradient(to bottom, rgba(95, 184, 133, 0.05) 0%, var(--bg-white) 100%);
}

/* NL-Button (rechts unten, wie C-Button) */
.nl-button {
    background: var(--zirkuspaedagogik-color) !important;
    color: white !important;
}

.nl-button:hover {
    background: #4fa870 !important;
    transform: translateY(-2px) !important;
}

.zirkuspaedagogik .section-title {
    color: var(--zirkuspaedagogik-color);
}

.zirkuspaedagogik-content {
    max-width: 1000px;
    margin: 0 auto;
}

.zirkuspaedagogik-intro {
    font-size: 1.2rem;
    text-align: center;
    color: var(--text-light);
    margin-bottom: 3rem;
    line-height: 1.7;
}

.zirkuspaedagogik-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.zirkuspaedagogik-card {
    background: var(--bg-white);
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border-left: 4px solid var(--zirkuspaedagogik-color);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    text-decoration: none;
    color: inherit;
}

.zirkuspaedagogik-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
    border-left-color: var(--zirkuspaedagogik-color);
}

.zirkuspaedagogik-card h3 {
    font-size: 1.5rem;
    color: var(--zirkuspaedagogik-color);
    margin-bottom: 1rem;
    font-weight: 600;
}

.zirkuspaedagogik-card p {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--text-light);
    margin-bottom: 1.5rem;
    flex-grow: 1;
}

.card-link {
    color: var(--zirkuspaedagogik-color);
    font-weight: 500;
    font-size: 0.95rem;
    display: inline-block;
    margin-top: auto;
}

.zirkuspaedagogik-card:hover .card-link {
    text-decoration: underline;
}

/* Auffälliger Newsletter-Banner */
.newsletter-banner {
    margin-top: 3rem;
    padding: 2rem 2.5rem;
    background: linear-gradient(135deg, #5fb885 0%, #3d9970 50%, #2d8659 100%);
    border-radius: 16px;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(95, 184, 133, 0.4);
    transition: all 0.4s ease;
    animation: pulse-glow 3s infinite;
    -webkit-tap-highlight-color: transparent;
    touch-action: manipulation;
    user-select: none;
    -webkit-user-select: none;
}

.newsletter-banner:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 15px 50px rgba(95, 184, 133, 0.5);
}

@keyframes pulse-glow {
    0%, 100% {
        box-shadow: 0 10px 40px rgba(95, 184, 133, 0.4);
    }
    50% {
        box-shadow: 0 10px 50px rgba(95, 184, 133, 0.6), 0 0 30px rgba(95, 184, 133, 0.3);
    }
}

.newsletter-banner::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(
        45deg,
        transparent 30%,
        rgba(255, 255, 255, 0.1) 50%,
        transparent 70%
    );
    animation: shine 4s infinite;
}

@keyframes shine {
    0% {
        transform: translateX(-100%) rotate(45deg);
    }
    100% {
        transform: translateX(100%) rotate(45deg);
    }
}

.newsletter-banner-content {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    position: relative;
    z-index: 1;
}

.newsletter-banner-icon {
    font-size: 3rem;
    animation: bounce-icon 2s infinite;
}

@keyframes bounce-icon {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-8px);
    }
}

.newsletter-banner-text {
    flex: 1;
}

.newsletter-banner-text h3 {
    color: white;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.25rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.newsletter-banner-text p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1rem;
    margin: 0;
}

.newsletter-banner-btn {
    background: white;
    color: #2d8659;
    border: none;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.newsletter-banner-btn:hover {
    background: #f0fdf4;
    transform: scale(1.05);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
}

.newsletter-banner-sparkle {
    position: absolute;
    top: 10px;
    right: 20px;
    width: 20px;
    height: 20px;
    background: white;
    border-radius: 50%;
    opacity: 0.6;
    animation: sparkle 2s infinite;
}

.newsletter-banner-sparkle::before,
.newsletter-banner-sparkle::after {
    content: '';
    position: absolute;
    width: 10px;
    height: 10px;
    background: white;
    border-radius: 50%;
    opacity: 0.4;
}

.newsletter-banner-sparkle::before {
    top: 30px;
    left: -40px;
    animation: sparkle 2.5s infinite 0.5s;
}

.newsletter-banner-sparkle::after {
    top: -20px;
    left: -80px;
    animation: sparkle 3s infinite 1s;
}

@keyframes sparkle {
    0%, 100% {
        transform: scale(1);
        opacity: 0.6;
    }
    50% {
        transform: scale(1.5);
        opacity: 1;
    }
}

/* Mobile Newsletter Banner */
@media (max-width: 768px) {
    .newsletter-banner {
        padding: 1.5rem;
    }
    
    .newsletter-banner-content {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .newsletter-banner-icon {
        font-size: 2.5rem;
    }
    
    .newsletter-banner-text h3 {
        font-size: 1.25rem;
    }
    
    .newsletter-banner-text p {
        font-size: 0.9rem;
    }
    
    .newsletter-banner-btn {
        width: 100%;
        padding: 0.875rem 1.5rem;
        font-size: 1rem;
    }
}

/* Kindergeburtstage Section */
.kindergeburtstage {
    background: linear-gradient(to bottom, rgba(236, 72, 153, 0.05) 0%, var(--bg-white) 100%);
}

.kindergeburtstage .section-title {
    color: var(--kindergeburtstage-color);
}

.kindergeburtstage-content {
    max-width: 900px;
    margin: 0 auto;
}

.kindergeburtstage-card {
    background: var(--bg-white);
    border-radius: 12px;
    padding: 2.5rem;
    margin-bottom: 2rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border-left: 4px solid var(--kindergeburtstage-color);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.kindergeburtstage-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.kindergeburtstage-card h3 {
    font-size: 1.75rem;
    color: var(--kindergeburtstage-color);
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.kindergeburtstage-intro {
    font-size: 1.15rem;
    font-weight: 500;
    color: var(--text-color);
    margin-bottom: 1.5rem;
    line-height: 1.7;
    font-style: italic;
}

.kindergeburtstage-card p {
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-light);
}

.kindergeburtstage-card p:last-child {
    margin-bottom: 0;
}

.kindergeburtstage-info {
    background: rgba(236, 72, 153, 0.05);
    border-radius: 8px;
    padding: 1.5rem;
    margin: 2rem 0;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.info-item {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.info-icon {
    font-size: 1.5rem;
    flex-shrink: 0;
}

.info-text {
    font-size: 1.1rem;
    line-height: 1.6;
    color: var(--text-color);
}

.kindergeburtstage-content-wrapper {
    display: grid;
    grid-template-columns: 1fr 300px;
    gap: 3rem;
    align-items: start;
    margin-top: 2rem;
}

.kindergeburtstage-text-content {
    flex: 1;
}

.kindergeburtstage-text-content p {
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-light);
}

.kindergeburtstage-text-content p:last-child {
    margin-bottom: 0;
}

.kindergeburtstage-images {
    position: sticky;
    top: 100px;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    align-self: start;
}

.kindergeburtstage-image {
    opacity: 0.6;
    transition: opacity 0.3s ease;
}

.kindergeburtstage-image:hover {
    opacity: 0.8;
}

.kindergeburtstage-image img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
    object-fit: contain;
    display: block;
    max-width: 100%;
}

.kindergeburtstage-image {
    min-height: 200px;
    background: #f9fafb;
    border-radius: 8px;
    overflow: hidden;
}

@media (max-width: 968px) {
    .kindergeburtstage-content-wrapper {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .kindergeburtstage-images {
        position: relative;
        top: 0;
        align-self: stretch;
    }
}

.kindergeburtstage-note {
    background: rgba(236, 72, 153, 0.08);
    border-left: 3px solid var(--kindergeburtstage-color);
    padding: 1.25rem;
    border-radius: 6px;
    margin-top: 1.5rem;
    font-size: 1rem;
    line-height: 1.7;
    color: var(--text-color);
    font-style: italic;
}

/* Pricing Section */
.pricing {
    background: linear-gradient(to bottom, rgba(90, 157, 212, 0.05) 0%, var(--bg-white) 100%);
}

.pricing .section-title {
    color: var(--preise-color);
}

.pricing-content {
    max-width: 800px;
    margin: 0 auto;
}

.pricing-content p {
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-light);
}

/* Pedagogy Section - inline in About */
.pedagogy-inline {
    background: var(--bg-light);
    padding-top: 20px;
    padding-bottom: 80px;
    margin-top: 0;
}

.pedagogy-content {
    max-width: 800px;
    margin: 0 auto;
}

.pedagogy-content p {
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-light);
}

.philosophy-box {
    background: var(--bg-white);
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    margin-top: 2rem;
}

.philosophy-box h3 {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.philosophy-text {
    font-size: 1.15rem;
    font-style: italic;
    color: var(--text-color);
    line-height: 1.9;
}

/* Kinderschutz Section */
.kinderschutz {
    background: linear-gradient(to bottom, rgba(124, 158, 184, 0.05) 0%, var(--bg-white) 100%);
}

.kinderschutz .section-title {
    color: var(--kinderschutz-color);
}

.kinderschutz-content {
    max-width: 900px;
    margin: 0 auto;
}

.kinderschutz-content h3 {
    font-size: 1.5rem;
    color: var(--kinderschutz-color);
    margin: 2rem 0 1rem 0;
    font-weight: 600;
}

.kinderschutz-content h3:first-child {
    margin-top: 0;
}

.kinderschutz-content h4 {
    font-size: 1.2rem;
    color: var(--primary-color);
    margin: 1.5rem 0 1rem 0;
    font-weight: 600;
}

.kinderschutz-content p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--text-color);
    margin-bottom: 1rem;
}

.kinderschutz-divider {
    border: none;
    border-top: 2px solid var(--kinderschutz-color);
    margin: 2.5rem 0;
    opacity: 0.3;
}

.kinderschutz-liste {
    list-style: none;
    padding: 0;
    margin: 1rem 0;
}

.kinderschutz-liste li {
    position: relative;
    padding-left: 1.5rem;
    margin-bottom: 1rem;
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--text-color);
}

.kinderschutz-liste li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: var(--kinderschutz-color);
    font-weight: bold;
}

.kinderschutz-liste li strong {
    color: var(--primary-color);
}

/* Projects Section */
.projects {
    background: linear-gradient(to bottom, rgba(216, 139, 160, 0.05) 0%, var(--bg-white) 100%);
}

.projects .section-title {
    color: var(--projekte-color);
}

.projects-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.project-card {
    background: var(--bg-light);
    padding: 2rem;
    border-radius: 12px;
    transition: var(--transition);
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.project-card-acoustic {
    border: 2px solid #000000;
}

.project-card-luna {
    border: 2px solid #4A90E2;
}

.project-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    border-color: var(--accent-color);
}

.project-card-knot,
.project-card-panama,
.project-card-luna,
.project-card-acoustic,
.project-card-girko {
    padding: 0;
    background: var(--bg-light);
}

.project-card-image-container {
    width: 100%;
    height: 200px;
    position: relative;
    overflow: hidden;
    transition: var(--transition);
}

.project-card-image-bw {
    width: 100%;
    height: 100%;
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    filter: grayscale(100%);
    transition: var(--transition);
}

.project-card-image-bw.project-card-image-knot {
    background-image: url('images/It didnt start with us -3.JPG');
}

.project-card-image-bw.project-card-image-panama {
    background-image: url('images/panama pictures.png');
}

.project-card-image-bw.project-card-image-luna {
    background-image: url('images/Crispin Mit kind teller Luna.png');
}

.project-card-image-bw.project-card-image-acoustic {
    background-image: url('images/Screenshot 2025-12-31 171849.png');
}

.project-card-image-bw.project-card-image-girko {
    background-image: url('images/Klub Girko.png');
}

.project-card-knot:hover .project-card-image-bw,
.project-card-panama:hover .project-card-image-bw,
.project-card-luna:hover .project-card-image-bw,
.project-card-acoustic:hover .project-card-image-bw,
.project-card-girko:hover .project-card-image-bw {
    filter: grayscale(0%);
}

.project-card-content {
    padding: 2rem;
    position: relative;
    z-index: 1;
}

.project-card-knot,
.project-card-panama,
.project-card-luna,
.project-card-acoustic,
.project-card-girko {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-color: var(--bg-light);
}

.project-card-knot:hover .project-card-content,
.project-card-panama:hover .project-card-content,
.project-card-luna:hover .project-card-content,
.project-card-acoustic:hover .project-card-content,
.project-card-girko:hover .project-card-content {
    background: rgba(0, 0, 0, 0.6);
    color: white;
}

.project-card-knot:hover .project-card-content h3,
.project-card-panama:hover .project-card-content h3,
.project-card-luna:hover .project-card-content h3,
.project-card-acoustic:hover .project-card-content h3,
.project-card-girko:hover .project-card-content h3 {
    color: white;
}

.project-card-knot:hover .project-card-content p,
.project-card-panama:hover .project-card-content p,
.project-card-luna:hover .project-card-content p,
.project-card-acoustic:hover .project-card-content p,
.project-card-girko:hover .project-card-content p {
    color: rgba(255, 255, 255, 0.9);
}

.project-card-knot:hover .project-card-content .project-link,
.project-card-panama:hover .project-card-content .project-link,
.project-card-luna:hover .project-card-content .project-link,
.project-card-acoustic:hover .project-card-content .project-link,
.project-card-girko:hover .project-card-content .project-link {
    color: white;
    border-bottom: 1px solid rgba(255, 255, 255, 0.5);
}


.project-logo {
    width: 100%;
    min-height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    padding: 0.5rem;
}

.project-logo img,
.project-logo svg {
    max-width: 100%;
    max-height: 100px;
    width: auto;
    height: auto;
    object-fit: contain;
    display: block;
}

.project-logo svg {
    width: 200px;
    height: 100px;
}

.project-card h3 {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.project-card p {
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 1rem;
}

.project-link {
    display: inline-block;
    color: var(--accent-color);
    text-decoration: none;
    font-weight: 500;
    margin-top: 0.5rem;
    transition: var(--transition);
}

.project-link:hover {
    color: var(--primary-color);
    transform: translateX(5px);
}

.project-links {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-top: 0.5rem;
}

/* Contact Section */
.contact {
    background: linear-gradient(to bottom, rgba(95, 184, 184, 0.05) 0%, var(--bg-light) 100%);
    text-align: center;
}

.contact .section-title {
    color: var(--kontakt-color);
}

.contact-content {
    max-width: 600px;
    margin: 0 auto;
}

.contact-content p {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 1.5rem;
}

.contact-info {
    background: var(--bg-white);
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.contact-info p {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    color: var(--text-color);
}

/* Kontaktformular */
.contact-form {
    background: var(--bg-white);
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    margin-top: 2rem;
    text-align: left;
}

.contact-form .field {
    margin-bottom: 1.5rem;
}

.contact-form label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: var(--text-color);
}

.contact-form input[type="text"],
.contact-form input[type="email"],
.contact-form textarea {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 1rem;
    font-family: inherit;
    transition: var(--transition);
}

.contact-form input[type="text"]:focus,
.contact-form input[type="email"]:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--accent-color);
    box-shadow: 0 0 0 3px rgba(231, 76, 60, 0.1);
}

.contact-form textarea {
    resize: vertical;
    min-height: 120px;
}

.contact-form button[type="submit"] {
    background: var(--accent-color);
    color: white;
    border: none;
    padding: 0.75rem 2rem;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition);
}

.contact-form button[type="submit"]:hover:not(:disabled) {
    background: #c0392b;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(231, 76, 60, 0.3);
}

.contact-form button[type="submit"]:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

.contact-form button[type="reset"] {
    background: #6b7280;
    color: white;
    border: none;
    padding: 0.75rem 2rem;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition);
}

.contact-form button[type="reset"]:hover {
    background: #4b5563;
}

.contact-form .error {
    color: #dc2626;
    font-size: 0.875rem;
    margin-top: 0.25rem;
    display: block;
}

.contact-form .success-message {
    background: #d1fae5;
    color: #065f46;
    padding: 1rem;
    border-radius: 8px;
    margin-top: 1rem;
}

.contact-form .error-message {
    background: #fee2e2;
    color: #991b1b;
    padding: 1rem;
    border-radius: 8px;
    margin-top: 1rem;
}

/* Footer */
.footer {
    background: var(--primary-color);
    color: white;
    text-align: center;
    padding: 2rem 0;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}

/* Responsive Design */
@media (max-width: 768px) {
    /* Navigation Mobile */
    .hamburger-menu {
        display: flex;
    }
    
    .nav-buttons {
        position: fixed;
        top: 70px;
        left: 0;
        width: 100%;
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(10px);
        flex-direction: column;
        padding: 1rem 0;
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
        transform: translateX(-100%);
        transition: transform 0.3s ease, visibility 0.3s ease;
        z-index: 999;
        max-height: calc(100vh - 70px);
        overflow-y: auto;
        visibility: hidden;
        pointer-events: none;
    }
    
    .nav-buttons.active {
        transform: translateX(0);
        visibility: visible;
        pointer-events: auto;
    }
    
    .nav-button {
        width: 100%;
        padding: 1rem 1.5rem;
        text-align: left;
        border-radius: 0;
        border-left: 4px solid transparent;
        border-right: none;
        border-top: none;
        border-bottom: 1px solid #e5e7eb;
        -webkit-tap-highlight-color: transparent;
        touch-action: manipulation;
        min-height: 48px;
    }
    
    .nav-button:hover,
    .nav-button:active {
        transform: none;
        border-left-color: var(--accent-color);
        background: var(--bg-light);
    }
    
    .nav-container {
        padding: 1rem 20px;
    }
    
    .logo {
        font-size: 1.25rem;
    }
    
    /* Hero Mobile */
    .hero {
        min-height: 100vh;
        padding-top: 70px;
        padding-bottom: 2rem;
    }
    
    .hero-title {
        font-size: 2rem;
        margin-bottom: 0.75rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
        margin-bottom: 0.5rem;
    }
    
    .hero-location {
        font-size: 0.9rem;
    }
    
    /* Sections Mobile */
    section {
        padding: 3rem 0;
    }
    
    .section-title {
        font-size: 1.75rem;
        margin-bottom: 1.5rem;
    }
    
    /* Container Mobile */
    .container {
        padding: 0 15px;
    }
    
    /* Content Sections Mobile */
    .projects-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .philosophy-box {
        padding: 1.25rem;
        margin: 1.5rem 0;
    }
    
    .about-content {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .about-image {
        max-width: 100%;
        margin: 0 auto;
    }
    
    .about-text p {
        font-size: 1rem;
    }
    
    .kita-content-wrapper {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .kita-image {
        position: relative;
        top: 0;
        max-width: 100%;
        margin: 0 auto;
    }
    
    .kita-text-content h3 {
        font-size: 1.5rem;
    }
    
    .kita-text-content p {
        font-size: 1rem;
    }
    
    /* Zirkuspädagogik Grid Mobile */
    .zirkuspaedagogik-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .zirkuspaedagogik-card {
        padding: 1.25rem;
    }
    
    .zirkuspaedagogik-card h3 {
        font-size: 1.25rem;
    }
    
    /* Family Circus Mobile */
    .family-circus-content h3 {
        font-size: 1.5rem;
    }
    
    .family-circus-content p {
        font-size: 1rem;
    }
    
    /* Privatstunde Mobile */
    .privatstunde-card {
        padding: 1.5rem;
    }
    
    .privatstunde-intro {
        font-size: 1rem;
    }
    
    .privatstunde-card p {
        font-size: 1rem;
    }
    
    /* Kindergeburtstage Mobile */
    .kindergeburtstage-card {
        padding: 1.5rem;
    }
    
    .kindergeburtstage-content-wrapper {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .kindergeburtstage-images {
        flex-direction: column;
        gap: 1rem;
    }
    
    .kindergeburtstage-info {
        flex-direction: column;
        gap: 1rem;
    }
    
    .info-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }
    
    /* Zirkusprojektwoche Mobile */
    .zirkusprojektwoche-card {
        padding: 1.5rem;
    }
    
    .zirkusprojektwoche-intro {
        font-size: 1rem;
    }
    
    .zirkusprojektwoche-card p {
        font-size: 1rem;
    }
    
    .zirkusprojektwoche-subtitle {
        font-size: 1.5rem;
    }
    
    /* Pricing Mobile */
    .pricing-content p {
        font-size: 1rem;
    }
    
    /* Info Boxes Mobile */
    .info-box {
        padding: 1rem;
        margin: 1.5rem 0;
    }
    
    .info-box h4 {
        font-size: 1.1rem;
    }
    
    .info-box p {
        font-size: 0.95rem;
    }
    
    /* Buttons Mobile */
    .anmeldung-button {
        width: 100%;
        padding: 0.875rem 1.25rem;
        font-size: 0.9rem;
        margin-bottom: 0.75rem;
    }
    
    .info-button {
        width: 100%;
        padding: 0.875rem 1.5rem;
        font-size: 0.95rem;
    }
    
    /* Modals Mobile */
    .modal {
        width: 95%;
        max-width: 95%;
        max-height: 90vh;
        padding: 1.25rem;
        margin: 1rem;
        overflow-y: auto;
    }
    
    .modal h2 {
        font-size: 1.5rem;
    }
    
    /* Forms Mobile */
    .field {
        margin-bottom: 1rem;
    }
    
    .field label {
        font-size: 0.95rem;
        margin-bottom: 0.5rem;
    }
    
    input[type="text"],
    input[type="email"],
    input[type="tel"],
    input[type="date"],
    input[type="number"],
    textarea,
    select {
        width: 100%;
        padding: 0.75rem;
        font-size: 1rem;
    }
    
    button[type="submit"],
    button[type="button"].primary {
        width: 100%;
        padding: 0.875rem 1.5rem;
        font-size: 1rem;
    }
    
    button[type="reset"],
    button[type="button"].secondary {
        width: 100%;
        padding: 0.875rem 1.5rem;
        font-size: 1rem;
        margin-top: 0.5rem;
    }
    
    /* Admin Buttons Mobile */
    .admin-button-bottom {
        bottom: 0.75rem;
        right: 0.75rem;
        padding: 0.5rem 0.75rem;
        font-size: 0.65rem;
    }
    
    /* Admin Selection Buttons Mobile */
    .admin-selection-btn {
        width: 100%;
        padding: 1rem;
        font-size: 0.95rem;
    }
    
    /* Footer Mobile */
    .footer {
        padding: 2rem 1rem;
        text-align: center;
    }
    
    .footer p {
        font-size: 0.9rem;
    }
    
    /* Contact Form Mobile */
    .contact-form {
        width: 100%;
    }
    
    .contact-info {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    /* Workshop Images Mobile */
    .workshop-images {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    /* Project Cards Mobile */
    .project-card {
        padding: 1.5rem;
    }
    
    .project-card h3 {
        font-size: 1.25rem;
    }
    
    .project-card p {
        font-size: 0.95rem;
    }
    
    /* Grid 2 Mobile */
    .grid-2 {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    /* Password Buttons Mobile */
    .password-buttons {
        flex-direction: column;
        gap: 0.75rem;
    }
    
    .password-button {
        width: 100%;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 1.75rem;
    }
    
    .hero-subtitle {
        font-size: 0.9rem;
    }
    
    .section-title {
        font-size: 1.5rem;
    }
    
    .logo {
        font-size: 1.1rem;
    }
    
    .nav-button {
        padding: 0.875rem 1.25rem;
        font-size: 0.9rem;
    }
    
    .container {
        padding: 0 10px;
    }
}

/* Admin-Button Styles */
.admin-button-bottom {
    position: fixed;
    bottom: 1rem;
    right: 1rem;
    background: rgba(107, 114, 128, 0.6);
    color: white;
    border: none;
    padding: 0.4rem 0.8rem;
    border-radius: 6px;
    font-size: 0.7rem;
    font-weight: 400;
    cursor: pointer;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
    z-index: 999;
    transition: background 0.3s, transform 0.2s, opacity 0.3s;
    opacity: 0.5;
}

.admin-button-bottom:hover {
    background: rgba(75, 85, 99, 0.8);
    transform: translateY(-1px);
    opacity: 1;
}

/* Probetraining Modal Styles */
.teilnehmer-entry {
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    padding: 1rem;
    margin-bottom: 1rem;
    background: #f9fafb;
}

.teilnehmer-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.teilnehmer-header h4 {
    margin: 0;
    color: #2563eb;
    font-size: 1rem;
}

.remove-teilnehmer-btn {
    background: #dc2626;
    color: white;
    border: none;
    padding: 0.5rem 1rem;
    border-radius: 6px;
    font-size: 0.875rem;
    cursor: pointer;
    transition: background 0.3s;
}

.remove-teilnehmer-btn:hover {
    background: #b91c1c;
}

.add-teilnehmer-btn {
    background: #10b981;
    color: white;
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    font-size: 0.875rem;
    font-weight: 500;
    cursor: pointer;
    transition: background 0.3s;
    margin-right: 0.5rem;
}

.add-teilnehmer-btn:hover {
    background: #059669;
}

.grid-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

@media (max-width: 768px) {
    .grid-2 {
        grid-template-columns: 1fr;
    }
}

fieldset {
    border: 2px solid #e5e7eb;
    border-radius: 12px;
    padding: 2rem;
    margin-bottom: 2rem;
    background: #fafafa;
    transition: all 0.3s ease;
}

fieldset:hover {
    border-color: #2563eb;
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.1);
}

legend {
    font-weight: 700;
    font-size: 1.1rem;
    color: #2563eb;
    padding: 0 1rem;
    background: white;
    border-radius: 6px;
}

.field {
    margin-bottom: 1.75rem;
}

.field:last-child {
    margin-bottom: 0;
}

.field label {
    display: block;
    margin-bottom: 0.75rem;
    font-weight: 600;
    color: #1f2937;
    font-size: 0.95rem;
}

.field input[type="text"],
.field input[type="email"],
.field input[type="tel"],
.field input[type="number"],
.field input[type="date"],
.field textarea,
.field select {
    width: 100%;
    padding: 0.875rem 1rem;
    border: 2px solid #d1d5db;
    border-radius: 8px;
    font-size: 1rem;
    font-family: inherit;
    transition: all 0.3s ease;
    background: white;
}

.field input:hover,
.field textarea:hover,
.field select:hover {
    border-color: #9ca3af;
}

.field input:focus,
.field textarea:focus,
.field select:focus {
    outline: none;
    border-color: #2563eb;
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

.error {
    color: #dc2626;
    font-size: 0.875rem;
    margin-top: 0.25rem;
    display: block;
}

.error.visible {
    display: block;
}

/* Submit Button - Anmeldung abschicken */
.actions {
    margin-top: 2.5rem;
    margin-bottom: 2rem;
    text-align: center;
    padding: 2rem;
    background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
    border-radius: 12px;
    border: 2px solid #2563eb;
}

.actions button[type="submit"] {
    background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
    color: white;
    border: none;
    padding: 1.25rem 3rem;
    border-radius: 12px;
    font-size: 1.25rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(37, 99, 235, 0.4);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    min-width: 280px;
}

.actions button[type="submit"]:hover {
    background: linear-gradient(135deg, #1d4ed8 0%, #1e40af 100%);
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(37, 99, 235, 0.5);
}

.actions button[type="submit"]:active {
    transform: translateY(-1px);
    box-shadow: 0 4px 15px rgba(37, 99, 235, 0.4);
}

.unterschrift-canvas-container {
    margin-top: 0.5rem;
}

.unterschrift-canvas {
    border: 2px solid #d1d5db;
    border-radius: 6px;
    cursor: crosshair;
    background: white;
}

.unterschrift-buttons {
    margin-top: 0.5rem;
}

.clear-signature {
    background: #6b7280;
    color: white;
    border: none;
    padding: 0.5rem 1rem;
    border-radius: 6px;
    font-size: 0.875rem;
    cursor: pointer;
    transition: background 0.3s;
}

.clear-signature:hover {
    background: #4b5563;
}

/* Radio Button Selection Styles */
.gruppe-options label {
    transition: all 0.3s;
}

.gruppe-options label:hover {
    border-color: #2563eb;
    background: #eff6ff;
}

.gruppe-options input[type="radio"]:checked + div {
    color: #2563eb;
}

.gruppe-options label:has(input[type="radio"]:checked) {
    border-color: #2563eb;
    background: #eff6ff;
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

/* Modal Styles */
.modal-backdrop {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
}

.modal {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    max-width: 400px;
    width: 90%;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

/* Newsletter Modal - höherer z-index und mobile-optimiert */
.newsletter-modal-backdrop {
    z-index: 99999 !important;
    padding: 1rem;
    box-sizing: border-box;
}

.newsletter-modal {
    max-width: 450px;
    width: calc(100% - 2rem);
    max-height: 90vh;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
}

.newsletter-modal input[type="email"] {
    font-size: 16px !important; /* Verhindert Zoom auf iOS */
    padding: 1rem !important;
    min-height: 50px;
    -webkit-appearance: none;
    appearance: none;
}

.newsletter-submit-btn {
    -webkit-tap-highlight-color: transparent;
    touch-action: manipulation;
}

.newsletter-submit-btn:active {
    transform: scale(0.98);
    background: #4da673 !important;
}

/* Mobile Newsletter Modal */
@media (max-width: 768px) {
    .newsletter-modal-backdrop {
        align-items: flex-start;
        padding-top: 10vh;
    }
    
    .newsletter-modal {
        width: calc(100% - 1rem);
        margin: 0 0.5rem;
        padding: 1.5rem;
    }
    
    .newsletter-modal h2 {
        font-size: 1.25rem;
    }
    
    .newsletter-modal p {
        font-size: 0.9rem;
    }
}

.modal h2 {
    color: #2563eb;
    margin-bottom: 1rem;
}

.password-box {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.password-box label {
    font-weight: 500;
    color: #333;
}

.password-box input {
    padding: 0.75rem;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-size: 1rem;
}

.password-box input:focus {
    outline: none;
    border-color: #2563eb;
}

.password-buttons {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.password-button {
    background: #2563eb;
    color: white;
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    transition: background 0.3s;
    flex: 1;
}

.password-button:hover {
    background: #1d4ed8;
}

.secondary {
    background: #6b7280;
    color: white;
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    transition: background 0.3s;
    flex: 1;
}

.secondary:hover {
    background: #4b5563;
}

.error {
    color: #dc2626;
    font-size: 0.875rem;
    margin-top: 0.25rem;
    display: none;
}

.error.visible {
    display: block;
}

/* Admin-Interface Styles */
.admin-interface {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10001;
}

.admin-interface-content {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    max-width: 500px;
    width: 90%;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

.admin-interface-content h2 {
    color: #2563eb;
    margin-bottom: 1rem;
}

.admin-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 1.5rem;
}

.admin-download-btn {
    background: #2563eb;
    color: white;
    border: none;
    padding: 1rem 1.5rem;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    transition: background 0.3s;
    width: 100%;
}

.admin-download-btn:hover {
    background: #1d4ed8;
}

.admin-download-btn.primary {
    background: #059669;
}

.admin-download-btn.primary:hover {
    background: #047857;
}

.admin-download-btn.secondary {
    background: #6b7280;
}

.admin-download-btn.secondary:hover {
    background: #4b5563;
}

.admin-download-btn.danger {
    background: #dc2626;
}

.admin-download-btn.danger:hover {
    background: #b91c1c;
}

.admin-hint {
    margin-top: 1rem;
    font-size: 0.85rem;
    color: #6b7280;
    line-height: 1.5;
}

/* Admin-Auswahl-Buttons */
.admin-selection-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.admin-selection-btn {
    background: #2563eb;
    color: white;
    border: none;
    padding: 1.5rem 2rem;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 500;
    cursor: pointer;
    transition: background 0.3s, transform 0.2s;
    width: 100%;
    display: block !important;
    visibility: visible !important;
}

#downloadProbetrainingModalBtn {
    background: #10b981 !important;
    color: white !important;
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
}

.admin-selection-btn:hover {
    background: #1d4ed8;
    transform: translateY(-2px);
}

/* Link-Button Stil für Datenschutz und Kursbeschreibung */
.link-button {
    background: none;
    border: none;
    color: #2563eb;
    text-decoration: underline;
    cursor: pointer;
    padding: 0;
    font-size: inherit;
    font-family: inherit;
    transition: color 0.2s;
}

.link-button:hover {
    color: #1d4ed8;
    text-decoration: underline;
}

.link-button:focus {
    outline: 2px solid #2563eb;
    outline-offset: 2px;
    border-radius: 2px;
}

/* Formular-Übersichtlichkeit verbessern */
.card {
    background: white;
    border-radius: 16px;
    padding: 2.5rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    margin: 2rem 0;
}

.card form {
    margin-top: 1.5rem;
}

/* Radio Card Styles für Beitrag */
.beitrag-options {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 1rem;
}

.radio-card {
    display: flex;
    align-items: flex-start;
    padding: 1.25rem;
    border: 2px solid #e5e7eb;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
    background: white;
}

.radio-card:hover {
    border-color: #2563eb;
    background: #f0f9ff;
    transform: translateX(4px);
}

.radio-card input[type="radio"] {
    margin-right: 1rem;
    margin-top: 0.25rem;
    width: 20px;
    height: 20px;
    cursor: pointer;
}

.radio-card input[type="radio"]:checked {
    accent-color: #2563eb;
}

.radio-card:has(input[type="radio"]:checked) {
    border-color: #2563eb;
    background: #eff6ff;
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

.radio-visual {
    flex: 1;
}

.radio-visual strong {
    display: block;
    font-size: 1.1rem;
    color: #1f2937;
    margin-bottom: 0.5rem;
}

.radio-visual small {
    display: block;
    color: #6b7280;
    font-size: 0.9rem;
}

/* Checkbox Field Styles */
.checkbox-field {
    padding: 1.25rem;
    background: #f9fafb;
    border-radius: 10px;
    border: 1px solid #e5e7eb;
    margin-bottom: 1rem;
}

.checkbox-field label {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    cursor: pointer;
    font-weight: 500;
    color: #374151;
    line-height: 1.6;
}

.checkbox-field input[type="checkbox"] {
    margin-top: 0.25rem;
    width: 20px;
    height: 20px;
    cursor: pointer;
    flex-shrink: 0;
}

.checkbox-field input[type="checkbox"]:checked {
    accent-color: #2563eb;
}

/* Hint Text */
.hint {
    font-size: 0.875rem;
    color: #6b7280;
    line-height: 1.6;
    margin-top: 0.5rem;
    padding: 1rem;
    background: #f9fafb;
    border-left: 4px solid #2563eb;
    border-radius: 6px;
}

/* Success Message */
.success-message {
    background: linear-gradient(135deg, #d1fae5 0%, #a7f3d0 100%);
    border: 2px solid #10b981;
    border-radius: 12px;
    padding: 2rem;
    margin-top: 2rem;
    box-shadow: 0 4px 15px rgba(16, 185, 129, 0.2);
}

.success-message h2 {
    color: #065f46;
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.success-message pre {
    background: white;
    padding: 1.5rem;
    border-radius: 8px;
    border: 1px solid #d1d5db;
    margin-top: 1rem;
    white-space: pre-wrap;
    font-family: inherit;
    line-height: 1.6;
}

