/* ==========================================
   RESET & BASIC STYLES
   ========================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #FFA726;
    --primary-dark: #FF8F00;
    --secondary-color: #4A90C8;
    --secondary-dark: #3B7AAF;
    --accent-color: #F76C6C;
    --text-dark: #2C3E50;
    --text-light: #7F8C8D;
    --bg-light: #F8F9FA;
    --bg-white: #FFFFFF;
    --shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 25px rgba(0, 0, 0, 0.15);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Helvetica Neue', Arial, sans-serif;
    color: var(--text-dark);
    line-height: 1.7;
    overflow-x: hidden;
}

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

/* ==========================================
   CONSTRUCTION BANNER
   ========================================== */
.construction-banner {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, #FF6B35, #FF8E53);
    color: white;
    padding: 15px 20px;
    z-index: 1001;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
    animation: slideDown 0.5s ease;
}

.construction-banner-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 15px;
    flex-wrap: wrap;
}

.construction-icon {
    font-size: 2rem;
    flex-shrink: 0;
    animation: pulse 2s infinite;
}

.construction-text {
    flex: 1;
    font-size: 1rem;
    line-height: 1.6;
    font-weight: 500;
}

.construction-text strong {
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

@keyframes slideDown {
    from {
        transform: translateY(-100%);
    }
    to {
        transform: translateY(0);
    }
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.1);
    }
}

/* ==========================================
   NAVIGATION
   ========================================== */
#navbar {
    position: fixed;
    top: 60px;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow);
    z-index: 1000;
    transition: all 0.3s ease;
}

#navbar.scrolled {
    box-shadow: var(--shadow-lg);
    background: rgba(255, 255, 255, 1);
}

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

.logo {
    display: flex;
    align-items: center;
}

.logo-sterntaler {
    height: 60px;
    width: auto;
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.mobile-menu-toggle span {
    width: 30px;
    height: 3px;
    background: var(--text-dark);
    transition: all 0.3s ease;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 30px;
}

.nav-menu a {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 600;
    transition: color 0.3s ease;
    position: relative;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 3px;
    background: var(--primary-color);
    transition: width 0.3s ease;
}

.nav-menu a:hover,
.nav-menu a.active {
    color: var(--primary-color);
}

.nav-menu a:hover::after,
.nav-menu a.active::after {
    width: 100%;
}

/* ==========================================
   HERO SECTION
   ========================================== */
.hero {
    min-height: 100vh;
    background: linear-gradient(135deg, var(--secondary-color), var(--primary-color));
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    margin-top: 140px;
    text-align: center;
    overflow: hidden;
}

.hero-logos {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
    margin-bottom: 20px;
}

.hero-logo-left,
.hero-logo-right {
    width: 150px;
    height: auto;
    background: rgba(255, 255, 255, 0.85);
    padding: 15px;
    border-radius: 12px;
    box-shadow: 
        0 4px 8px rgba(0, 0, 0, 0.15),
        0 2px 4px rgba(0, 0, 0, 0.1);
}

.hero-logo-left {
    border-radius: 12px;
}

/* Kaffeeringe */
.hero::before {
    content: '';
    position: absolute;
    top: 10%;
    right: 5%;
    width: 120px;
    height: 120px;
    border: 8px solid rgba(139, 69, 19, 0.15);
    border-radius: 50%;
    box-shadow: 
        inset 0 0 20px rgba(139, 69, 19, 0.1),
        15px 15px 0 -5px rgba(139, 69, 19, 0.08);
}

/* Regenbogen */
.hero::after {
    content: '';
    position: absolute;
    bottom: 15%;
    left: 8%;
    width: 220px;
    height: 110px;
    background-image: url('assets/regenbogen.png');
    background-size: contain;
    background-repeat: no-repeat;
    transform: rotate(-12deg);
    opacity: 1;
}

/* Transparentpapier-Fetzen */
.hero-overlay::before {
    content: '';
    position: absolute;
    top: 20%;
    left: -50px;
    width: 150px;
    height: 200px;
    background: linear-gradient(135deg, 
        rgba(255, 182, 193, 0.3) 0%, 
        rgba(255, 218, 224, 0.3) 100%);
    transform: rotate(-15deg);
    border-radius: 10px 50px 10px 50px;
    box-shadow: 3px 3px 10px rgba(0, 0, 0, 0.1);
}

.hero-overlay::after {
    content: '';
    position: absolute;
    bottom: 10%;
    right: -30px;
    width: 120px;
    height: 180px;
    background: linear-gradient(135deg, 
        rgba(173, 216, 230, 0.3) 0%, 
        rgba(176, 224, 230, 0.3) 100%);
    transform: rotate(20deg);
    border-radius: 50px 10px 50px 10px;
    box-shadow: 3px 3px 10px rgba(0, 0, 0, 0.1);
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.1'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    opacity: 0.5;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, rgba(0,0,0,0.1), rgba(0,0,0,0.3));
}

.hero-content {
    position: relative;
    z-index: 2;
    color: white;
    max-width: 900px;
    padding: 0 20px;
}

.hero-title {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Helvetica Neue', Arial, sans-serif;
    font-size: 3.5rem;
    font-weight: 700;
    margin: 0;
    animation: fadeInUp 1s ease;
}

.hero-subtitle {
    font-size: 1.3rem;
    margin-bottom: 40px;
    animation: fadeInUp 1.2s ease;
    line-height: 1.8;
}

.hero-subtitle a {
    color: white;
    text-decoration: underline;
    font-weight: 600;
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 60px;
    margin-top: 50px;
    animation: fadeInUp 1.4s ease;
}

.stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Helvetica Neue', Arial, sans-serif;
}

.stat-label {
    font-size: 1.1rem;
    margin-top: 8px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    color: white;
    animation: bounce 2s infinite;
}

.scroll-arrow {
    width: 20px;
    height: 20px;
    border-right: 2px solid white;
    border-bottom: 2px solid white;
    transform: rotate(45deg);
    margin-top: 10px;
}

/* ==========================================
   HOME CONTENT SECTION
   ========================================== */
.home-content {
    padding: 80px 0;
    background: var(--bg-light);
}

.content-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.content-box {
    background: var(--bg-white);
    padding: 40px;
    border-radius: 12px;
    box-shadow: var(--shadow);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.content-box:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.content-box .icon {
    font-size: 3rem;
    margin-bottom: 20px;
}

.content-box h3 {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Helvetica Neue', Arial, sans-serif;
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.highlight-box {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: white;
    padding: 50px;
    border-radius: 12px;
    box-shadow: var(--shadow-lg);
    margin-top: 40px;
}

.highlight-box h3 {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Helvetica Neue', Arial, sans-serif;
    font-size: 2rem;
    margin-bottom: 20px;
}

.highlight-box p {
    font-size: 1.1rem;
    margin-bottom: 15px;
}

.quote {
    font-style: italic;
    font-size: 1.2rem;
    margin-top: 30px;
    border-left: 4px solid white;
    padding-left: 20px;
}

/* ==========================================
   SECTIONS
   ========================================== */
.section {
    padding: 80px 0;
}

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

.section-title {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Helvetica Neue', Arial, sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 50px;
    color: var(--text-dark);
    position: relative;
}

.section-title::after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background: var(--primary-color);
    margin: 20px auto 0;
}

.section-intro {
    text-align: center;
    font-size: 1.2rem;
    max-width: 800px;
    margin: 0 auto 50px;
    color: var(--text-light);
}

/* ==========================================
   INFO CARDS
   ========================================== */
.info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.info-card {
    background: var(--bg-white);
    padding: 40px;
    border-radius: 12px;
    box-shadow: var(--shadow);
}

.info-card h3 {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Helvetica Neue', Arial, sans-serif;
    font-size: 1.5rem;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.info-card ul {
    list-style: none;
    padding-left: 0;
}

.info-card li {
    padding: 8px 0;
    padding-left: 25px;
    position: relative;
}

.info-card li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: bold;
}

.groups {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-top: 20px;
}

.group-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    flex: 1;
    min-width: 100px;
}

.group-icon {
    font-size: 3rem;
    margin-bottom: 10px;
}

/* ==========================================
   SCHEDULE TABLE
   ========================================== */
.schedule-section {
    margin: 50px 0;
}

.schedule-section h3 {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Helvetica Neue', Arial, sans-serif;
    font-size: 1.8rem;
    margin-bottom: 25px;
    color: var(--text-dark);
}

.schedule-table {
    width: 100%;
    border-collapse: collapse;
    background: var(--bg-white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow);
}

.schedule-table thead {
    background: var(--primary-color);
    color: white;
}

.schedule-table th,
.schedule-table td {
    padding: 15px;
    text-align: left;
    border-bottom: 1px solid #ddd;
}

.schedule-table tbody tr:nth-child(even) {
    background: #f9f9f9;
}

.schedule-table tbody tr:hover {
    background: #f0f0f0;
}

/* ==========================================
   CONCEPT SECTIONS
   ========================================== */
.concept-preview,
.team-section,
.gallery-section {
    background: var(--bg-white);
    padding: 40px;
    border-radius: 12px;
    box-shadow: var(--shadow);
    margin: 30px 0;
}

.concept-preview h3,
.team-section h3,
.gallery-section h3 {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Helvetica Neue', Arial, sans-serif;
    font-size: 1.8rem;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.gallery-intro {
    text-align: center;
    color: var(--text-light);
    margin-bottom: 30px;
    font-size: 1.1rem;
}

/* ==========================================
   IMAGE GALLERY
   ========================================== */
.image-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    margin-top: 30px;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    box-shadow: var(--shadow);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    aspect-ratio: 4/3;
    background: var(--bg-light);
}

.gallery-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.3s ease;
}

.gallery-item:hover img {
    transform: scale(1.05);
}

.concept-list {
    list-style: none;
    padding: 0;
    margin: 20px 0;
}

.concept-list li {
    padding: 10px 0 10px 30px;
    position: relative;
}

.concept-list li::before {
    content: '●';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-size: 1.5rem;
}

.btn-download,
.btn-primary {
    display: inline-block;
    padding: 12px 30px;
    background: var(--primary-color);
    color: white;
    text-decoration: none;
    border-radius: 25px;
    font-weight: 600;
    transition: all 0.3s ease;
    margin-top: 20px;
}

.btn-download:hover,
.btn-primary:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow);
}

/* ==========================================
   IMAGE WITH TEXT INTEGRATION
   ========================================== */
.content-with-image {
    display: flex;
    gap: 30px;
    align-items: flex-start;
    margin: 40px 0;
}

.content-with-image.image-left {
    flex-direction: row;
}

.content-with-image.image-right {
    flex-direction: row-reverse;
}

.content-image {
    flex: 0 0 400px;
    max-width: 400px;
}

.content-image img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: var(--shadow);
}

.content-image figcaption {
    margin-top: 10px;
    font-size: 0.9rem;
    color: var(--text-light);
    font-style: italic;
    text-align: center;
}

.content-text {
    flex: 1;
}

/* Team Member Card with Photo */
.team-member {
    display: flex;
    gap: 30px;
    align-items: center;
    background: var(--bg-white);
    padding: 30px;
    border-radius: 12px;
    box-shadow: var(--shadow);
    margin: 30px 0;
}

.team-photo {
    flex: 0 0 300px;
}

.team-photo img {
    width: 300px;
    height: 400px;
    border-radius: 12px;
    object-fit: cover;
    object-position: center;
    box-shadow: var(--shadow-lg);
}

.team-info {
    flex: 1;
}

.team-info h3 {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Helvetica Neue', Arial, sans-serif;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.team-info h4 {
    color: var(--text-light);
    font-weight: 400;
    margin-bottom: 15px;
}

/* Contact Form */
.contact-form {
    background: var(--bg-white);
    padding: 40px;
    border-radius: 12px;
    box-shadow: var(--shadow);
    margin: 30px 0;
}

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

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--text-dark);
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid #ddd;
    border-radius: 8px;
    font-family: inherit;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
}

.form-group textarea {
    min-height: 150px;
    resize: vertical;
}

.form-group.checkbox {
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.form-group.checkbox input[type="checkbox"] {
    width: auto;
    margin-top: 4px;
}

.form-group.checkbox label {
    margin-bottom: 0;
    font-weight: 400;
}

.form-group small {
    display: block;
    margin-top: 5px;
    color: var(--text-light);
    font-size: 0.85rem;
}

.btn-submit {
    display: inline-block;
    padding: 15px 40px;
    background: var(--primary-color);
    color: white;
    text-decoration: none;
    border: none;
    border-radius: 25px;
    font-weight: 600;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-submit:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow);
}

.btn-submit:disabled {
    background: #ccc;
    cursor: not-allowed;
    transform: none;
}

.form-message {
    padding: 15px;
    border-radius: 8px;
    margin-bottom: 20px;
    display: none;
}

.form-message.success {
    background: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
    display: block;
}

.form-message.error {
    background: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
    display: block;
}

/* ==========================================
   RESPONSIVE DESIGN FOR NEW ELEMENTS
   ========================================== */
@media (max-width: 768px) {
    .content-with-image {
        flex-direction: column !important;
    }
    
    .content-image {
        flex: 1;
        max-width: 100%;
    }
    
    .team-member {
        flex-direction: column;
        text-align: center;
    }
    
    .team-photo {
        flex: 0 0 auto;
    }
}

/* ==========================================
   CONCEPT PAGE
   ========================================== */
.concept-intro {
    text-align: center;
    margin-bottom: 50px;
}

.lead {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 20px;
}

.concept-grid,
.concept-card {
    margin-bottom: 30px;
}

.concept-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.concept-card {
    background: var(--bg-white);
    padding: 30px;
    border-radius: 12px;
    box-shadow: var(--shadow);
}

.concept-card h3 {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Helvetica Neue', Arial, sans-serif;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.schwerpunkte {
    margin: 50px 0;
}

.schwerpunkte h3 {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Helvetica Neue', Arial, sans-serif;
    font-size: 2rem;
    text-align: center;
    margin-bottom: 40px;
}

.schwerpunkt-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.schwerpunkt-item {
    background: var(--bg-white);
    padding: 30px;
    border-radius: 12px;
    box-shadow: var(--shadow);
    text-align: center;
    transition: transform 0.3s ease;
}

.schwerpunkt-item:hover {
    transform: translateY(-5px);
}

.schwerpunkt-icon {
    font-size: 3rem;
    margin-bottom: 15px;
}

.schwerpunkt-item h4 {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Helvetica Neue', Arial, sans-serif;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.integration-section {
    background: var(--bg-white);
    padding: 40px;
    border-radius: 12px;
    box-shadow: var(--shadow);
    margin-top: 50px;
}

.integration-section h3 {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Helvetica Neue', Arial, sans-serif;
    color: var(--primary-color);
    margin-bottom: 20px;
}

/* ==========================================
   PROTECTION / SCHUTZKONZEPT
   ========================================== */
.protection-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 50px;
    font-size: 1.1rem;
}

.protection-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.protection-card {
    background: var(--bg-white);
    padding: 30px;
    border-radius: 12px;
    box-shadow: var(--shadow);
}

.protection-card h3 {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Helvetica Neue', Arial, sans-serif;
    color: var(--secondary-color);
    margin-bottom: 15px;
}

.values-list {
    list-style: none;
    padding: 0;
}

.values-list li {
    padding: 10px 0;
    font-size: 1.1rem;
}

.sexualpaed-section {
    background: var(--bg-white);
    padding: 40px;
    border-radius: 12px;
    box-shadow: var(--shadow);
    margin-top: 40px;
}

.sexualpaed-section h3 {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Helvetica Neue', Arial, sans-serif;
    color: var(--accent-color);
    margin-bottom: 20px;
}

.rules-box {
    background: var(--bg-light);
    padding: 25px;
    border-radius: 8px;
    margin-top: 20px;
}

.rules-box h4 {
    color: var(--text-dark);
    margin-bottom: 15px;
}

/* ==========================================
   FÖRDERVEREIN
   ========================================== */
.foerderverein-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 50px;
}

.foerderverein-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.foerderverein-card {
    background: var(--bg-white);
    padding: 40px;
    border-radius: 12px;
    box-shadow: var(--shadow);
}

.card-icon {
    font-size: 3rem;
    text-align: center;
    margin-bottom: 20px;
}

.foerderverein-card h3 {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Helvetica Neue', Arial, sans-serif;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.cta-box {
    background: linear-gradient(135deg, var(--secondary-color), var(--primary-color));
    color: white;
    padding: 50px;
    border-radius: 12px;
    text-align: center;
    box-shadow: var(--shadow-lg);
}

.cta-box h3 {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Helvetica Neue', Arial, sans-serif;
    font-size: 2rem;
    margin-bottom: 15px;
}

.cta-box .btn-primary {
    background: white;
    color: var(--primary-color);
}

.cta-box .btn-primary:hover {
    background: var(--bg-light);
}

/* ==========================================
   CONTACT
   ========================================== */
.contact-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 50px;
    font-size: 1.1rem;
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.contact-card {
    background: var(--bg-white);
    padding: 30px;
    border-radius: 12px;
    box-shadow: var(--shadow);
}

.contact-card.main-contact {
    grid-column: span 2;
}

.contact-card h3 {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Helvetica Neue', Arial, sans-serif;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.contact-details {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
}

.contact-item {
    padding: 15px 0;
}

.contact-item a {
    color: var(--secondary-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-item a:hover {
    color: var(--primary-color);
}

.map-placeholder {
    margin-top: 15px;
}

.impressum-section {
    background: var(--bg-light);
    padding: 40px;
    border-radius: 12px;
    margin-top: 50px;
}

.impressum-section h3 {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Helvetica Neue', Arial, sans-serif;
    color: var(--text-dark);
    margin-bottom: 20px;
}

.impressum-content p {
    margin-bottom: 10px;
}

.impressum-content a {
    color: var(--secondary-color);
    text-decoration: none;
}

.impressum-content a:hover {
    color: var(--primary-color);
}

/* ==========================================
   FOOTER
   ========================================== */
.footer {
    background: var(--text-dark);
    color: white;
    padding: 50px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 30px;
}

.footer-section h4 {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Helvetica Neue', Arial, sans-serif;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.footer-section a {
    color: white;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: var(--primary-color);
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--text-light);
}

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

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-20px);
    }
    60% {
        transform: translateY(-10px);
    }
}

/* ==========================================
   RESPONSIVE DESIGN
   ========================================== */
@media (max-width: 768px) {
    .mobile-menu-toggle {
        display: flex;
    }

    .construction-banner {
        padding: 12px 15px;
    }

    .construction-icon {
        font-size: 1.5rem;
    }

    .construction-text {
        font-size: 0.9rem;
    }

    #navbar {
        top: 50px;
    }

    .nav-container {
        height: 70px;
        padding: 0 15px;
    }

    .logo-sterntaler {
        height: 50px;
    }

    .hero-logos {
        flex-direction: column;
        gap: 20px;
    }

    .hero-logo-left,
    .hero-logo-right {
        width: 100px;
    }

    .nav-menu {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 70px);
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(10px);
        flex-direction: column;
        padding: 30px 20px;
        transition: left 0.3s ease;
        box-shadow: var(--shadow-lg);
        overflow-y: auto;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-menu li {
        width: 100%;
        text-align: center;
    }

    .nav-menu a {
        display: block;
        padding: 15px;
        font-size: 1.1rem;
        border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    }

    .hero {
        margin-top: 120px;
        min-height: 80vh;
        padding: 40px 20px;
    }

    .hero-logos {
        gap: 15px;
    }

    .hero-logo-left,
    .hero-logo-right {
        width: 80px;
    }

    .hero-title {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .hero-stats {
        flex-direction: row;
        gap: 20px;
        flex-wrap: wrap;
        justify-content: center;
    }

    .stat-number {
        font-size: 2.5rem;
    }

    .stat-label {
        font-size: 0.9rem;
    }

    .section {
        padding: 50px 0;
    }

    .section-title {
        font-size: 1.8rem;
    }

    .content-grid,
    .info-grid,
    .concept-grid,
    .protection-grid,
    .foerderverein-grid,
    .contact-grid,
    .image-gallery {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .contact-card.main-contact {
        grid-column: span 1;
    }

    .contact-details {
        grid-template-columns: 1fr;
    }

    .schedule-table {
        font-size: 0.85rem;
    }

    .schedule-table th,
    .schedule-table td {
        padding: 8px 5px;
    }

    .content-box,
    .info-card,
    .concept-card,
    .protection-card,
    .foerderverein-card,
    .contact-card {
        padding: 25px 20px;
    }

    .highlight-box,
    .cta-box {
        padding: 30px 20px;
    }

    .schwerpunkt-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .construction-banner {
        padding: 10px 12px;
    }

    .construction-icon {
        font-size: 1.3rem;
    }

    .construction-text {
        font-size: 0.85rem;
    }

    #navbar {
        top: 45px;
    }

    .logo-sterntaler {
        height: 45px;
    }

    .hero {
        margin-top: 115px;
        min-height: 70vh;
    }

    .hero-logos {
        gap: 10px;
    }

    .hero-logo-left,
    .hero-logo-right {
        width: 70px;
    }

    .hero-title {
        font-size: 1.6rem;
    }

    .hero-subtitle {
        font-size: 0.95rem;
    }

    .stat-number {
        font-size: 2rem;
    }

    .stat-label {
        font-size: 0.8rem;
    }

    .section {
        padding: 40px 0;
    }

    .section-title {
        font-size: 1.5rem;
    }

    .content-box,
    .info-card,
    .concept-card,
    .protection-card,
    .foerderverein-card,
    .contact-card {
        padding: 20px 15px;
    }

    .highlight-box,
    .cta-box {
        padding: 25px 15px;
    }

    .schedule-table {
        font-size: 0.75rem;
        display: block;
        overflow-x: auto;
    }

    .btn-download,
    .btn-primary {
        padding: 10px 20px;
        font-size: 0.9rem;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }
}
