/* Import Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&display=swap');

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-green: #2D5016;
    --light-green: #6B8E23;
    --accent-green: #8FBC3F;
    --secondary-beige: #FAF8F3;
    --accent-brown: #8B4513;
    --text-dark: #1a1a1a;
    --text-medium: #555555;
    --white: #FFFFFF;
    --shadow-sm: rgba(0, 0, 0, 0.08);
    --shadow-md: rgba(0, 0, 0, 0.12);
    --shadow-lg: rgba(0, 0, 0, 0.18);
    --gradient-green: linear-gradient(135deg, #2D5016 0%, #6B8E23 100%);
    --gradient-overlay: linear-gradient(180deg, rgba(0, 0, 0, 0.3) 0%, rgba(0, 0, 0, 0.1) 100%);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.7;
    color: var(--text-dark);
    background-color: var(--white);
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Custom Scrollbar - Modern Design */
::-webkit-scrollbar {
    width: 12px;
}

::-webkit-scrollbar-track {
    background: var(--secondary-beige);
}

::-webkit-scrollbar-thumb {
    background: var(--gradient-green);
    border-radius: 10px;
    border: 2px solid var(--secondary-beige);
}

::-webkit-scrollbar-thumb:hover {
    background: var(--primary-green);
}

* {
    scrollbar-width: thin;
    scrollbar-color: var(--light-green) var(--secondary-beige);
}

/* Header - Modern Glass Effect */
.header {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: 0 4px 20px var(--shadow-sm);
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 20px 0;
    transition: all 0.3s ease;
}

.header:hover {
    box-shadow: 0 6px 30px var(--shadow-md);
}

.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 15px;
    text-decoration: none;
    color: var(--text-dark);
    font-size: 22px;
    font-weight: 700;
    transition: transform 0.3s ease;
}

.logo:hover {
    transform: scale(1.05);
}

.logo img {
    height: 55px;
    width: auto;
    filter: drop-shadow(0 2px 8px var(--shadow-sm));
    transition: filter 0.3s ease;
}

.logo:hover img {
    filter: drop-shadow(0 4px 12px var(--shadow-md));
}

.nav {
    display: flex;
    gap: 35px;
}

.nav a {
    color: var(--text-dark);
    text-decoration: none;
    font-size: 17px;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
    padding: 8px 0;
}

.nav a::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 3px;
    background: var(--gradient-green);
    border-radius: 2px;
    transition: width 0.3s ease;
}

.nav a:hover {
    color: var(--light-green);
}

.nav a:hover::before {
    width: 100%;
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    transition: transform 0.3s ease;
}

.mobile-menu-toggle:hover {
    transform: scale(1.1);
}

.mobile-menu-toggle span {
    width: 28px;
    height: 3px;
    background: var(--gradient-green);
    border-radius: 2px;
    transition: all 0.3s ease;
}

/* Hero Slider - Modern Contained Design */
.hero-slider {
    position: relative;
    width: 100%;
    padding: 40px 20px;
    background: linear-gradient(180deg, var(--secondary-beige) 0%, var(--white) 100%);
}

.slider-container {
    position: relative;
    width: 100%;
    max-width: 1400px;
    height: 650px;
    margin: 0 auto;
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    background-color: var(--text-dark);
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1.2s ease-in-out;
}

.slide::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gradient-overlay);
    border-radius: 30px;
}

.slide.active {
    opacity: 1;
}

.slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 30px;
    transform: scale(1.05);
    animation: zoomOut 8s ease-out forwards;
}

@keyframes zoomOut {
    to {
        transform: scale(1);
    }
}

.slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.3);
    font-size: 40px;
    width: 65px;
    height: 65px;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    z-index: 10;
    color: var(--primary-green);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
    font-weight: 700;
}

.slider-btn:hover {
    background-color: var(--white);
    transform: translateY(-50%) scale(1.15);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.3);
    border-color: var(--accent-green);
}

.slider-btn.prev {
    left: 25px;
}

.slider-btn.next {
    right: 25px;
}

.slider-dots {
    position: absolute;
    bottom: 25px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 10;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 12px 20px;
    border-radius: 50px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 2px solid transparent;
}

.dot:hover {
    background-color: rgba(255, 255, 255, 0.8);
    transform: scale(1.3);
}

.dot.active {
    background-color: var(--white);
    border-color: var(--accent-green);
    transform: scale(1.4);
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
}

/* About Section - Modern Card Design */
.about-section {
    padding: 100px 20px;
    background: linear-gradient(180deg, var(--secondary-beige) 0%, var(--white) 100%);
    position: relative;
    text-align: left;
}

.about-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--light-green), transparent);
}

.main-heading {
    font-size: 48px;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 50px;
    line-height: 1.2;
    background: var(--gradient-green);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-align: center;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.about-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 60px;
    align-items: center;
    max-width: 1100px;
    margin: 0 auto;
}

.about-text p {
    font-size: 19px;
    color: var(--text-medium);
    line-height: 1.8;
    margin-bottom: 25px;
}

.about-text strong {
    color: var(--primary-green);
    font-weight: 700;
}

.about-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
}

.stat-item {
    background: var(--white);
    padding: 30px 20px;
    border-radius: 20px;
    box-shadow: 0 10px 30px var(--shadow-sm);
    text-align: center;
    transition: transform 0.3s ease;
    border: 1px solid rgba(107, 142, 35, 0.1);
}

.stat-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px var(--shadow-md);
    border-color: var(--accent-green);
}

.stat-item:last-child {
    grid-column: span 2;
}

.stat-number {
    display: block;
    font-size: 42px;
    font-weight: 800;
    color: var(--primary-green);
    line-height: 1;
    margin-bottom: 5px;
}

.stat-label {
    font-size: 16px;
    color: var(--text-medium);
    font-weight: 500;
}

@media (max-width: 900px) {
    .about-grid {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }

    .about-text {
        text-align: left;
    }
}

.cta-link {
    display: inline-block;
    color: var(--white);
    text-decoration: none;
    font-size: 18px;
    font-weight: 600;
    padding: 16px 40px;
    background: var(--gradient-green);
    border-radius: 50px;
    transition: all 0.4s ease;
    box-shadow: 0 4px 15px var(--shadow-md);
    position: relative;
    overflow: hidden;
    margin-top: 10px;
}

.cta-link::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.cta-link:hover::before {
    width: 300px;
    height: 300px;
}

.cta-link:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px var(--shadow-lg);
}

/* Aktuelles Section - Modern Cards */
.aktuelles-section {
    padding: 100px 20px;
    background-color: var(--white);
}

.aktuelles-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 35px;
    margin-top: 50px;
}

.aktuelles-card {
    background: linear-gradient(135deg, var(--white) 0%, var(--secondary-beige) 100%);
    padding: 45px 35px;
    border-radius: 20px;
    box-shadow: 0 8px 30px var(--shadow-sm);
    text-align: center;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 1px solid rgba(107, 142, 35, 0.1);
    position: relative;
    overflow: hidden;
}

.aktuelles-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--gradient-green);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.aktuelles-card:hover::before {
    transform: scaleX(1);
}

.aktuelles-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px var(--shadow-lg);
    border-color: rgba(107, 142, 35, 0.3);
}

.card-icon {
    font-size: 48px;
    margin-bottom: 25px;
    background: linear-gradient(135deg, var(--light-green) 0%, rgba(255, 255, 255, 0.5) 100%);
    width: 90px;
    height: 90px;
    line-height: 90px;
    border-radius: 50%;
    margin-left: auto;
    margin-right: auto;
    box-shadow: 0 5px 15px rgba(143, 188, 63, 0.2);
    display: inline-block;
    /* Ensure centering works */
}

.aktuelles-card h3 {
    margin-bottom: 15px !important;
    font-size: 24px;
    font-weight: 700;
}

.event-subtitle {
    color: var(--primary-green);
    font-weight: 600;
    font-size: 16px;
    margin-bottom: 15px !important;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.aktuelles-card p {
    color: var(--text-medium);
    margin-bottom: 25px;
    line-height: 1.6;
    font-size: 16px;
}

.event-details {
    margin-top: 20px;
    border-top: 1px dashed rgba(107, 142, 35, 0.3);
    padding-top: 20px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    text-align: left;
    background: rgba(255, 255, 255, 0.5);
    padding: 15px;
    border-radius: 10px;
}

.event-details span {
    font-size: 15px;
    color: var(--text-dark);
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 10px;
}



.card-link {
    color: var(--light-green);
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
    position: relative;
    padding-bottom: 3px;
}

.card-link::after {
    content: ' →';
    transition: transform 0.3s ease;
    display: inline-block;
}

.card-link:hover::after {
    transform: translateX(5px);
}

.card-link:hover {
    color: var(--primary-green);
}

/* Initiativen Section - Modern Grid */
.initiativen-section {
    padding: 100px 20px;
    background: linear-gradient(180deg, var(--white) 0%, var(--secondary-beige) 100%);
}

.section-heading {
    font-size: 42px;
    font-weight: 800;
    background: var(--gradient-green);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-align: center;
    margin-bottom: 25px;
}

.section-description {
    font-size: 19px;
    color: var(--text-medium);
    text-align: center;
    max-width: 900px;
    margin: 0 auto 60px;
    line-height: 1.9;
}

.initiativen-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 35px;
}

.initiative-card {
    background: var(--white);
    padding: 40px 30px;
    border-radius: 20px;
    box-shadow: 0 6px 25px var(--shadow-sm);
    text-align: center;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.initiative-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gradient-green);
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 0;
}

.initiative-card:hover::before {
    opacity: 0.05;
}

.initiative-card:hover {
    transform: translateY(-10px) scale(1.03);
    box-shadow: 0 12px 40px var(--shadow-md);
    border-color: var(--accent-green);
}

.initiative-icon {
    font-size: 55px;
    margin-bottom: 20px;
    filter: drop-shadow(0 3px 6px var(--shadow-sm));
    transition: all 0.4s ease;
    position: relative;
    z-index: 1;
}

.initiative-card:hover .initiative-icon {
    transform: scale(1.25) rotate(-5deg);
}

.initiative-card h3 {
    font-size: 24px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 15px;
    position: relative;
    z-index: 1;
    transition: color 0.3s ease;
}

.initiative-card:hover h3 {
    color: var(--light-green);
}

.initiative-card p {
    font-size: 16px;
    color: var(--text-medium);
    line-height: 1.7;
    position: relative;
    z-index: 1;
}

/* Leitsystem Section - Modern Map View */
.leitsystem-section {
    padding: 100px 20px;
    background: var(--white);
    position: relative;
}

.leitsystem-map-container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto 50px;
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 0 15px 50px var(--shadow-lg);
    border: 1px solid rgba(107, 142, 35, 0.2);
    position: relative;
}

.leitsystem-map-container::before {
    content: '';
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.02), transparent);
    pointer-events: none;
    z-index: 1;
}

.leitsystem-map {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s ease;
}

.leitsystem-map:hover {
    transform: scale(1.02);
}

.legend-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

.legend-category {
    background: var(--secondary-beige);
    padding: 30px;
    border-radius: 20px;
    border: 1px solid rgba(107, 142, 35, 0.1);
    transition: all 0.3s ease;
}

.legend-category:hover {
    box-shadow: 0 10px 30px var(--shadow-sm);
    transform: translateY(-5px);
    border-color: var(--accent-green);
}

.legend-category h3 {
    color: var(--primary-green);
    font-size: 20px;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--accent-green);
    display: inline-block;
}

.legend-category ul {
    list-style: none;
    padding: 0;
}

.legend-category li {
    position: relative;
    padding-left: 25px;
    margin-bottom: 12px;
    color: var(--text-dark);
    font-size: 16px;
    transition: color 0.2s ease;
}

.legend-category li::before {
    content: '•';
    color: var(--light-green);
    font-size: 24px;
    position: absolute;
    left: 0;
    top: -5px;
}

.legend-category li:hover {
    color: var(--primary-green);
}

.location-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    max-width: 1000px;
    margin: 0 auto;
}

.location-item {
    background: var(--secondary-beige);
    padding: 30px;
    border-radius: 20px;
    text-align: center;
    transition: all 0.3s ease;
}

.location-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px var(--shadow-sm);
    background: var(--white);
}

.location-item h4 {
    font-size: 20px;
    font-weight: 700;
    color: var(--primary-green);
    margin-bottom: 10px;
}

.location-item p {
    color: var(--text-medium);
    font-size: 16px;
}

/* Contact Section - Modern Design */
.contact-section {
    padding: 100px 20px;
    background: linear-gradient(135deg, var(--primary-green) 0%, #1e3a0f 100%);
    text-align: center;
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.contact-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    filter: blur(60px);
    animation: drift 20s infinite alternate;
}

.contact-section::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(143, 188, 63, 0.15) 0%, transparent 70%);
    border-radius: 50%;
    filter: blur(60px);
    animation: drift 15s infinite alternate-reverse;
}

@keyframes drift {
    from {
        transform: translate(0, 0);
    }

    to {
        transform: translate(30px, 20px);
    }
}

.contact-section h2 {
    font-size: 42px;
    font-weight: 800;
    margin-bottom: 60px;
    position: relative;
    z-index: 1;
    text-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.contact-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    padding: 40px 30px;
    border-radius: 24px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    text-align: center;
    transition: all 0.4s ease;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
}

.contact-card:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.4);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

.contact-icon {
    font-size: 50px;
    margin-bottom: 20px;
    display: inline-block;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.2));
}

.contact-card h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--white);
    letter-spacing: 0.5px;
}

.contact-card p,
.contact-card li {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
}

.contact-card a {
    color: var(--accent-green);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.contact-card a:hover {
    color: var(--white);
    text-decoration: underline;
}

.address {
    margin-bottom: 15px;
}

.contact-detail {
    margin-bottom: 25px;
}

.transport-info {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    padding-top: 20px;
    margin-top: 20px;
}

.transport-info strong {
    display: block;
    margin-bottom: 8px;
    color: var(--white);
}

.opening-hours {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: left;
}

.opening-hours li {
    display: flex;
    justify-content: space-between;
    padding: 8px 0;
    border-bottom: 1px dashed rgba(255, 255, 255, 0.2);
}

.opening-hours li:last-child {
    border-bottom: none;
}

.note {
    font-size: 14px !important;
    opacity: 0.8;
    margin-top: 20px;
    font-style: italic;
}

.sub-title {
    font-size: 18px !important;
    font-weight: 600;
    margin-bottom: 20px;
    color: var(--accent-green) !important;
}

/* Footer - Modern Dark Design */
.footer {
    background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 100%);
    color: var(--white);
    padding: 40px 20px;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 25px;
}

.footer-links {
    display: flex;
    gap: 25px;
}

.footer-links a {
    color: var(--white);
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    padding-bottom: 3px;
}

.footer-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent-green);
    transition: width 0.3s ease;
}

.footer-links a:hover::after {
    width: 100%;
}

.footer-links a:hover {
    color: var(--accent-green);
}

/* Responsive Design */
@media (max-width: 768px) {
    .mobile-menu-toggle {
        display: flex;
    }

    .nav {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(10px);
        flex-direction: column;
        padding: 25px;
        box-shadow: 0 8px 30px var(--shadow-md);
        display: none;
        border-radius: 0 0 20px 20px;
    }

    .nav.active {
        display: flex;
    }

    .hero-slider {
        padding: 20px 15px;
    }

    .slider-container {
        height: 500px;
        border-radius: 20px;
    }

    .slide::after,
    .slide img {
        border-radius: 20px;
    }

    .slider-btn {
        width: 55px;
        height: 55px;
        font-size: 35px;
    }

    .slider-btn.prev {
        left: 15px;
    }

    .slider-btn.next {
        right: 15px;
    }

    .main-heading {
        font-size: 36px;
    }

    .main-description {
        font-size: 17px;
    }

    .section-heading {
        font-size: 32px;
    }

    .aktuelles-grid,
    .initiativen-grid {
        grid-template-columns: 1fr;
    }

    .footer-content {
        flex-direction: column;
        text-align: center;
    }

    .contact-info {
        padding: 35px 25px;
    }

    .contact-info p strong {
        font-size: 17px;
    }

    /* Mobile Overrides for New Sections */
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .about-stats {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .stat-item:last-child {
        grid-column: auto;
    }

    .legend-grid {
        grid-template-columns: 1fr;
    }

    .leitsystem-map {
        height: auto;
        min-height: 200px;
        object-fit: cover;
    }
}

@media (max-width: 480px) {
    .logo span {
        font-size: 18px;
    }

    .logo img {
        height: 45px;
    }

    .hero-slider {
        padding: 15px 10px;
    }

    .slider-container {
        height: 400px;
        border-radius: 15px;
    }

    .slide::after,
    .slide img {
        border-radius: 15px;
    }

    .slider-btn {
        width: 50px;
        height: 50px;
        font-size: 30px;
    }

    .slider-btn.prev {
        left: 10px;
    }

    .slider-btn.next {
        right: 10px;
    }

    .main-heading {
        font-size: 28px;
    }

    .about-section,
    .aktuelles-section,
    .initiativen-section,
    .contact-section {
        padding: 60px 20px;
    }

    .contact-info {
        padding: 30px 20px;
    }

    .contact-info p {
        font-size: 15px;
    }

    .contact-info p:first-child {
        font-size: 20px;
    }

    .contact-info p:nth-child(2) {
        font-size: 16px;
    }

    .contact-info p strong {
        font-size: 16px;
        margin-top: 20px;
    }

    .contact-section h2 {
        font-size: 32px;
    }
}