/* ============================================
   GiDS-Kids e.V. - Stylesheet
   Kindergerechtes, modernes Design
   ============================================ */

/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Farben - kindergerecht und fröhlich */
    --primary-color: #FF6B6B;
    --secondary-color: #4ECDC4;
    --accent-color: #FFE66D;
    --success-color: #95E1D3;
    --text-dark: #2C3E50;
    --text-light: #7F8C8D;
    --bg-light: #F8F9FA;
    --bg-white: #FFFFFF;
    --border-color: #E0E0E0;
    
    /* Schriften */
    --font-primary: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    --font-heading: 'Comic Sans MS', 'Segoe UI', cursive, sans-serif;
    
    /* Abstände */
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 2rem;
    --spacing-lg: 3rem;
    --spacing-xl: 4rem;
    
    /* Border Radius */
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 20px;
    
    /* Shadows */
    --shadow-sm: 0 2px 4px rgba(0,0,0,0.1);
    --shadow-md: 0 4px 8px rgba(0,0,0,0.15);
    --shadow-lg: 0 8px 16px rgba(0,0,0,0.2);
}

body {
    font-family: var(--font-primary);
    color: var(--text-dark);
    line-height: 1.6;
    background-color: var(--bg-white);
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    color: var(--text-dark);
    margin-bottom: var(--spacing-sm);
}

h1 {
    font-size: 2.5rem;
}

h2 {
    font-size: 2rem;
}

h3 {
    font-size: 1.5rem;
}

p {
    margin-bottom: var(--spacing-sm);
}

a {
    color: var(--primary-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: var(--secondary-color);
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--spacing-md);
}

/* Header */
.header {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    padding: var(--spacing-md) 0;
    box-shadow: var(--shadow-md);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.logo h1 {
    color: white;
    margin-bottom: 0;
    font-size: 2rem;
}

.tagline {
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.9rem;
    margin: 0;
}

/* Navigation */
.nav-toggle {
    display: none;
    flex-direction: column;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: var(--spacing-xs);
    min-width: 44px; /* Mobile Touch-Target */
    min-height: 44px;
    justify-content: center;
    align-items: center;
    -webkit-tap-highlight-color: rgba(255, 255, 255, 0.2);
    touch-action: manipulation;
}

.nav-toggle span {
    width: 25px;
    height: 3px;
    background: white;
    margin: 3px 0;
    transition: 0.3s;
    border-radius: 3px;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: var(--spacing-md);
    align-items: center;
}

.nav-link {
    color: white;
    font-weight: 500;
    padding: var(--spacing-xs) var(--spacing-sm);
    border-radius: var(--radius-sm);
    transition: background-color 0.3s ease;
    min-height: 44px; /* Mobile Touch-Target */
    display: flex;
    align-items: center;
    justify-content: center;
    -webkit-tap-highlight-color: rgba(255, 255, 255, 0.2);
    touch-action: manipulation;
}

.nav-link:hover,
.nav-link.active {
    background-color: rgba(255, 255, 255, 0.2);
    color: white;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, var(--accent-color), var(--success-color));
    padding: var(--spacing-xl) var(--spacing-md);
    text-align: center;
    position: relative;
    overflow: hidden;
    min-height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-icon-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-icons {
    display: flex;
    gap: 3rem;
    flex-wrap: wrap;
    justify-content: center;
    opacity: 0.2;
}

.hero-icons i {
    font-size: 6rem;
    color: var(--text-dark);
    animation: float 3s ease-in-out infinite;
}

.hero-icons i:nth-child(1) { animation-delay: 0s; }
.hero-icons i:nth-child(2) { animation-delay: 0.6s; }
.hero-icons i:nth-child(3) { animation-delay: 1.2s; }
.hero-icons i:nth-child(4) { animation-delay: 1.8s; }
.hero-icons i:nth-child(5) { animation-delay: 2.4s; }

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
}

.hero::before {
    content: '';
    position: absolute;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 1px, transparent 1px);
    background-size: 50px 50px;
    animation: moveBackground 20s linear infinite;
    top: -50%;
    left: -50%;
}

@keyframes moveBackground {
    0% { transform: translate(0, 0); }
    100% { transform: translate(50px, 50px); }
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
    margin: 0 auto;
}

.hero h2 {
    font-size: 3rem;
    color: var(--text-dark);
    margin-bottom: var(--spacing-sm);
}

.hero-subtitle {
    font-size: 1.3rem;
    color: var(--text-dark);
    margin-bottom: var(--spacing-md);
}

/* Buttons */
.btn {
    display: inline-block;
    padding: var(--spacing-sm) var(--spacing-md);
    border-radius: var(--radius-md);
    font-weight: 600;
    text-align: center;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
    font-size: 1rem;
    min-height: 44px; /* Mobile Touch-Target Mindestgröße */
    min-width: 44px;
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0.1);
    touch-action: manipulation; /* Verhindert 300ms Delay auf Touch-Geräten */
}

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

.btn-primary:hover {
    background-color: #FF5252;
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
    color: white;
}

.btn-secondary {
    background-color: var(--secondary-color);
    color: white;
    box-shadow: var(--shadow-md);
}

.btn-secondary:hover {
    background-color: #3BB5AE;
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
    color: white;
}

/* Sections */
.section {
    padding: var(--spacing-xl) 0;
}

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

.section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: var(--spacing-md);
    color: var(--text-dark);
    position: relative;
    padding-bottom: var(--spacing-sm);
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    border-radius: 2px;
}

.section-intro {
    text-align: center;
    font-size: 1.2rem;
    color: var(--text-light);
    margin-bottom: var(--spacing-lg);
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* Content Grid */
.content-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--spacing-md);
    margin-top: var(--spacing-lg);
}

.content-card {
    background: white;
    padding: 0;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    overflow: hidden;
}

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

.card-icon-wrapper {
    width: 100%;
    height: 150px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    padding: var(--spacing-md);
}

.card-icon-wrapper i {
    font-size: 4rem;
    transition: transform 0.3s ease;
}

.content-card:hover .card-icon-wrapper i {
    transform: scale(1.2) rotate(5deg);
}

.content-card h3,
.content-card p,
.content-card ul {
    padding: 0 var(--spacing-md);
}

.content-card h3 {
    padding-top: var(--spacing-md);
    margin-bottom: var(--spacing-sm);
}

.content-card p:last-child,
.content-card ul {
    padding-bottom: var(--spacing-md);
}

.content-card.highlight {
    background: linear-gradient(135deg, var(--accent-color), var(--success-color));
    color: var(--text-dark);
}

/* Activities Grid */
.activities-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: var(--spacing-md);
    margin-top: var(--spacing-lg);
}

.activity-card {
    background: white;
    padding: 0;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    text-align: center;
    transition: all 0.3s ease;
    border: 3px solid transparent;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.activity-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-color);
}

.activity-icon-wrapper {
    width: 100%;
    height: 150px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
}

.activity-icon-wrapper i {
    font-size: 5rem;
    transition: transform 0.3s ease;
}

.activity-card:hover .activity-icon-wrapper i {
    transform: scale(1.15) rotate(-5deg);
}

.activity-card ul li {
    display: flex;
    align-items: center;
    gap: var(--spacing-xs);
}

.activity-card ul li i {
    color: var(--secondary-color);
    font-size: 1.1rem;
    min-width: 20px;
}

.activity-card h3 {
    padding: 0 var(--spacing-md);
    margin-bottom: var(--spacing-sm);
}

.activity-card ul {
    padding: 0 var(--spacing-md) var(--spacing-md);
    text-align: left;
}

.activity-icon {
    font-size: 4rem;
    margin-bottom: var(--spacing-sm);
}

.activity-card h3 {
    color: var(--primary-color);
    margin-bottom: var(--spacing-sm);
}

.activity-card ul {
    list-style: none;
    text-align: left;
    padding-left: var(--spacing-md);
}

.activity-card li {
    padding: var(--spacing-xs) 0;
    position: relative;
}

.activity-card li::before {
    content: '✓';
    position: absolute;
    left: -20px;
    color: var(--secondary-color);
    font-weight: bold;
}

/* CTA Box */
.cta-box {
    background: white;
    padding: var(--spacing-md);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-md);
    margin-top: var(--spacing-lg);
    text-align: center;
    border-left: 5px solid var(--primary-color);
}

/* Events Info */
.events-info {
    background: white;
    padding: var(--spacing-md);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    max-width: 800px;
    margin: var(--spacing-lg) auto 0;
}

.events-info .note {
    margin-top: var(--spacing-md);
    font-style: italic;
    color: var(--text-light);
}

/* Upcoming Events */
.upcoming-events {
    margin-bottom: var(--spacing-lg);
}

.events-subtitle {
    text-align: center;
    color: var(--primary-color);
    font-size: 1.8rem;
    margin-bottom: var(--spacing-md);
}

.events-list {
    display: grid;
    gap: var(--spacing-md);
    margin-bottom: var(--spacing-md);
}

.event-card {
    background: white;
    padding: var(--spacing-md);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-md);
    display: flex;
    gap: var(--spacing-md);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-left: 5px solid var(--primary-color);
}

.event-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}

.event-date {
    min-width: 200px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    padding: var(--spacing-md);
    border-radius: var(--radius-sm);
    text-align: center;
}

.date-icon {
    font-size: 2.5rem;
    margin-bottom: var(--spacing-xs);
    opacity: 0.9;
}

.event-time i {
    margin-right: 0.25rem;
    font-size: 0.9rem;
}

.event-location-card {
    display: flex;
    align-items: center;
    gap: var(--spacing-xs);
    padding: var(--spacing-xs) var(--spacing-sm);
    background: var(--bg-light);
    border-left: 3px solid var(--primary-color);
    border-radius: var(--radius-sm);
    margin-bottom: var(--spacing-sm);
    font-weight: 600;
    color: var(--text-dark);
}

.event-location-card i {
    color: var(--primary-color);
    font-size: 1.1rem;
}

.event-location {
    display: flex;
    align-items: center;
    gap: var(--spacing-xs);
    color: var(--text-light);
    font-size: 0.95rem;
    margin: 0;
}

.event-card {
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.event-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}

/* Event Popup */
.event-popup {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.event-popup.active {
    opacity: 1;
    visibility: visible;
}

.popup-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(4px);
}

.popup-content {
    position: relative;
    background: white;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    max-width: 600px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    padding: var(--spacing-lg);
    z-index: 10001;
    transform: scale(0.9);
    transition: transform 0.3s ease;
}

.event-popup.active .popup-content {
    transform: scale(1);
}

.popup-close {
    position: absolute;
    top: var(--spacing-md);
    right: var(--spacing-md);
    background: var(--primary-color);
    color: white;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    transition: background-color 0.3s ease, transform 0.3s ease;
    z-index: 10002;
}

.popup-close:hover {
    background: var(--secondary-color);
    transform: rotate(90deg);
}

.popup-title {
    color: var(--primary-color);
    font-size: 2rem;
    margin-bottom: var(--spacing-md);
    padding-right: var(--spacing-xl);
}

.popup-date-info {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-sm);
    margin-bottom: var(--spacing-md);
    padding: var(--spacing-md);
    background: var(--bg-light);
    border-radius: var(--radius-sm);
}

.popup-date-item {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
    font-size: 1.1rem;
}

.popup-date-item i {
    color: var(--primary-color);
    min-width: 24px;
}

.popup-location {
    margin: var(--spacing-md) 0;
    padding: var(--spacing-md);
    background: var(--bg-light);
    border-left: 4px solid var(--primary-color);
    border-radius: var(--radius-sm);
}

.popup-location-item {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
    font-size: 1.1rem;
}

.popup-location-item i {
    color: var(--primary-color);
    font-size: 1.3rem;
    min-width: 24px;
}

.popup-location-item strong {
    color: var(--text-dark);
}

.popup-description {
    margin-bottom: var(--spacing-md);
}

.popup-description h3 {
    color: var(--text-dark);
    font-size: 1.3rem;
    margin-bottom: var(--spacing-sm);
}

.popup-description p,
.popup-description-text {
    line-height: 1.8;
    color: var(--text-dark);
    white-space: pre-wrap; /* Erhalte Zeilenumbrüche */
    word-wrap: break-word; /* Breche lange Wörter um */
}

.popup-actions {
    margin-top: var(--spacing-lg);
    text-align: center;
}

@media (max-width: 768px) {
    .popup-content {
        width: 95%;
        padding: var(--spacing-md);
        max-height: 95vh;
    }
    
    .popup-title {
        font-size: 1.5rem;
    }
    
    .popup-date-item {
        font-size: 1rem;
    }
}

.date-text {
    font-weight: 600;
    font-size: 1.1rem;
    margin-bottom: var(--spacing-xs);
}

.event-time {
    font-size: 0.9rem;
    opacity: 0.9;
}

.event-content {
    flex: 1;
}

.event-title {
    color: var(--primary-color);
    font-size: 1.5rem;
    margin-bottom: var(--spacing-sm);
    font-family: var(--font-heading);
}

.event-description {
    color: var(--text-dark);
    margin-bottom: var(--spacing-sm);
    line-height: 1.6;
}

.event-location {
    color: var(--text-light);
    font-size: 0.95rem;
    margin: 0;
}

.loading-text,
.error-text {
    text-align: center;
    color: var(--text-light);
    padding: var(--spacing-md);
    font-style: italic;
}

.error-text {
    color: var(--primary-color);
}

.no-events {
    text-align: center;
    color: var(--text-light);
    padding: var(--spacing-md);
    font-style: italic;
    background: white;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
}

/* Gallery Section */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--spacing-md);
    margin-top: var(--spacing-lg);
}

.gallery-item {
    position: relative;
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    aspect-ratio: 4 / 3;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.gallery-icon {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    transition: transform 0.3s ease;
}

.gallery-icon i {
    font-size: 5rem;
    transition: transform 0.3s ease;
}

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

.gallery-item:hover .gallery-icon i {
    transform: scale(1.2) rotate(10deg);
}

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.7), transparent);
    padding: var(--spacing-md);
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.gallery-item:hover .gallery-overlay {
    transform: translateY(0);
}

.gallery-caption {
    color: white;
    font-weight: 600;
    margin: 0;
    font-size: 1.1rem;
}

/* Responsive Images */
img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* Image Loading States */
img[loading="lazy"] {
    opacity: 0;
    transition: opacity 0.3s ease;
}

img[loading="lazy"].loaded {
    opacity: 1;
}

@media (max-width: 768px) {
    .event-card {
        flex-direction: column;
    }
    
    .event-date {
        min-width: 100%;
        flex-direction: row;
        justify-content: space-around;
    }
    
    .date-icon {
        margin-bottom: 0;
        margin-right: var(--spacing-xs);
    }
    
    .events-subtitle {
        font-size: 1.5rem;
    }
}

/* Feature List */
.feature-list {
    list-style: none;
    padding-left: 0;
}

.feature-list li {
    padding: var(--spacing-xs) 0;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    gap: var(--spacing-xs);
}

.feature-list li i {
    color: var(--success-color);
    min-width: 20px;
}

/* Contact Section */
.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--spacing-md);
    margin-top: var(--spacing-lg);
}

.contact-email {
    font-size: 1.2rem;
    margin: var(--spacing-md) 0;
    padding: var(--spacing-sm);
    background: var(--bg-light);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
}

.contact-email a {
    color: var(--primary-color);
    font-weight: 600;
    text-decoration: none;
}

.contact-email a:hover {
    text-decoration: underline;
}

.board-list {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-md);
}

.board-member {
    padding: var(--spacing-sm);
    background: var(--bg-light);
    border-radius: var(--radius-sm);
    border-left: 4px solid var(--primary-color);
}

.board-member strong {
    color: var(--primary-color);
    display: block;
    margin-bottom: var(--spacing-xs);
}

.board-member a {
    color: var(--text-dark);
    text-decoration: none;
    transition: color 0.3s ease;
}

.board-member a:hover {
    color: var(--primary-color);
}

.board-member i {
    color: var(--secondary-color);
    margin-right: var(--spacing-xs);
    min-width: 20px;
}

.contact-card {
    background: white;
    padding: var(--spacing-md);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
}

.location-list {
    list-style: none;
    padding-left: 0;
}

.location-list li {
    padding: var(--spacing-xs) 0;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    gap: var(--spacing-xs);
}

.location-list li i {
    color: var(--primary-color);
    min-width: 20px;
}

.contact-card p i {
    color: var(--primary-color);
    margin-right: var(--spacing-xs);
}

.contact-note {
    font-style: italic;
    color: var(--text-light);
    margin-top: var(--spacing-sm);
}

/* Footer */
.footer {
    background: var(--text-dark);
    color: white;
    padding: var(--spacing-lg) 0 var(--spacing-md);
}

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

.footer-section h3,
.footer-section h4 {
    color: white;
    margin-bottom: var(--spacing-sm);
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: var(--spacing-xs);
}

.footer-links a {
    color: rgba(255, 255, 255, 0.8);
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: white;
}

.footer-bottom {
    text-align: center;
    padding-top: var(--spacing-md);
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    color: rgba(255, 255, 255, 0.7);
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-toggle {
        display: flex;
    }
    
    .nav-menu {
        display: none;
        flex-direction: column;
        width: 100%;
        position: absolute;
        top: 100%;
        left: 0;
        background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
        padding: var(--spacing-md);
        box-shadow: var(--shadow-md);
    }
    
    .nav-menu.active {
        display: flex;
    }
    
    .nav-menu li {
        width: 100%;
        text-align: center;
    }
    
    .nav-link {
        display: flex;
        padding: var(--spacing-sm);
        width: 100%;
        min-height: 48px; /* Größerer Touch-Target auf Mobile */
    }
    
    .hero h2 {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    h1 {
        font-size: 1.8rem;
    }
    
    .container {
        padding: 0 var(--spacing-sm);
    }
    
    .section {
        padding: var(--spacing-lg) 0;
    }
    
    /* Größere Touch-Targets für alle interaktiven Elemente auf Mobile */
    .btn {
        min-height: 48px;
        padding: 0.875rem 1.5rem;
    }
    
    .activity-card,
    .content-card,
    .contact-card {
        /* Größere Clickable Areas */
        padding: var(--spacing-md);
    }
    
    .hero {
        min-height: 400px;
    }
    
    .gallery-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: var(--spacing-sm);
    }
    
    .card-icon-wrapper,
    .activity-icon-wrapper {
        height: 120px;
    }
    
    .card-icon-wrapper i,
    .activity-icon-wrapper i {
        font-size: 3rem;
    }
    
    .hero-icons i {
        font-size: 4rem;
    }
}

@media (max-width: 480px) {
    .hero h2 {
        font-size: 1.5rem;
    }
    
    .section-title {
        font-size: 1.5rem;
    }
    
    .activities-grid,
    .content-grid,
    .contact-grid {
        grid-template-columns: 1fr;
    }
    
    .hero {
        min-height: 350px;
        padding: var(--spacing-lg) var(--spacing-sm);
    }
    
    .gallery-grid {
        grid-template-columns: 1fr;
    }
    
    .card-icon-wrapper,
    .activity-icon-wrapper {
        height: 100px;
    }
    
    .card-icon-wrapper i,
    .activity-icon-wrapper i {
        font-size: 2.5rem;
    }
    
    .hero-icons {
        gap: 1.5rem;
    }
    
    .hero-icons i {
        font-size: 3rem;
    }
    
    .gallery-icon i {
        font-size: 3.5rem;
    }
}

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

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

.content-card,
.activity-card,
.contact-card {
    animation: fadeIn 0.6s ease-out;
}

