/* Galerie-spezifische Styles */
        .gallery-container {
            padding: 20px;
            max-width: 1400px;
            margin: 0 auto;
        }
        .gallery-filters {
            display: flex;
            justify-content: center;
            gap: 15px;
            margin-bottom: 40px;
            flex-wrap: wrap;
        }
        .filter-btn {
            padding: 10px 25px;
            background: white;
            color: var(--primary-green);
            border: 2px solid var(--primary-green);
            border-radius: 25px;
            cursor: pointer;
            transition: var(--transition);
            font-weight: 600;
        }
        .filter-btn:hover,.filter-btn.active {
            background: var(--primary-green);
            color: white;
        }
        .gallery-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 20px;
            margin-bottom: 40px;
        }
        .gallery-item {
            position: relative;
            overflow: hidden;
            border-radius: 10px;
            cursor: pointer;
            background: linear-gradient(135deg, var(--light-green), var(--primary-green));
            aspect-ratio: 1;
            transition: transform 0.3s ease;
        }
        .gallery-item.landscape {
            aspect-ratio: 16/10;
        }
        .gallery-item.portrait {
            aspect-ratio: 3/4;
        }
        .gallery-item:hover {
            transform: scale(1.05);
            box-shadow: 0 10px 30px rgba(0,0,0,0.3);
            z-index: 10;
        }
        .gallery-item img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: block;
        }
        .gallery-item-overlay {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
            color: white;
            padding: 20px;
            transform: translateY(100%);
            transition: transform 0.3s ease;
        }
        .gallery-item:hover .gallery-item-overlay {
            transform: translateY(0);
        }
        .gallery-item-title {
            font-size: 1.1rem;
            font-weight: bold;
            margin-bottom: 5px;
        }
        .gallery-item-category {
            font-size: 0.9rem;
            opacity: 0.9;
        }
        /* Lightbox */
        .lightbox {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: rgba(0,0,0,0.95);
            z-index: 10000;
            padding: 20px;
            cursor: pointer;
        }
        .lightbox.active {
            display: flex;
            align-items: center;
            justify-content: center;
            animation: fadeIn 0.3s ease;
        }
        .lightbox-content {
            max-width: 90%;
            max-height: 90vh;
            position: relative;
        }
        .lightbox-image {
            max-width: 100%;
            max-height: 90vh;
            object-fit: contain;
            border-radius: 5px;
        }
        .lightbox-close {
            position: absolute;
            top: -40px;
            right: 0;
            color: white;
            font-size: 2rem;
            cursor: pointer;
            padding: 10px;
            transition: transform 0.3s ease;
        }
        .lightbox-close:hover {
            transform: scale(1.2);
        }
        .lightbox-nav {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            color: white;
            font-size: 3rem;
            cursor: pointer;
            padding: 20px;
            transition: opacity 0.3s ease;
            user-select: none;
        }
        .lightbox-nav:hover {
            opacity: 0.7;
        }
        .lightbox-prev {
            left: 20px;
        }
        .lightbox-next {
            right: 20px;
        }
        .lightbox-info {
            position: absolute;
            bottom: -50px;
            left: 0;
            right: 0;
            text-align: center;
            color: white;
        }
        @keyframes fadeIn {
            from { opacity: 0; }
            to { opacity: 1; }
        }
        /* Responsive */
        @media (max-width: 968px) {
            .gallery-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 15px;
            }
        }
        @media (max-width: 568px) {
            .gallery-grid {
                grid-template-columns: 1fr;
                gap: 15px;
            }
            
            .lightbox-nav {
                font-size: 2rem;
                padding: 10px;
            }
        }

        /* Galerie Hero Fix */
.hero {
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-content {
    padding: 40px 20px;
}

.hero-title {
    font-size: 3rem;
    color: var(--white);
    margin-bottom: 15px;
    text-shadow: 0 2px 8px rgba(0,0,0,0.3);
}

.hero-subtitle {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.9);
    max-width: 700px;
    margin: 0 auto;
    text-shadow: 0 1px 4px rgba(0,0,0,0.2);
}