 body { font-family: 'Inter', sans-serif; }
        section.hero-section {
            position: relative;
            overflow: hidden;
            height: 50vh;
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
        }
        section.hero-section img {
            width: 100%;
            height: auto;
            position: absolute;
            z-index: -1;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            min-height: 100%;
        }
        .blur {
            background-color: rgba(100, 100, 100, .3);
            backdrop-filter: blur(10px);
            border-radius: 0.5rem;
        }
        .hero-title {
            padding: 2rem;
        }
        .gallery-icon img {
            cursor: pointer;
            transition: transform 0.3s ease;
            border-radius: 0.5rem;
        }
        .gallery-icon img:hover {
            transform: scale(1.03);
        }
        /* Mobile-spezifische Galerie-Styles */
        .ciestra-gallery-slider {
            display: none;
        }
        @media (max-width: 767.98px) {
            .ciestra-gallery-slider {
                display: block;
            }
            .gallery-icon .row {
                display: none;
            }
        }

        /* Lightbox-Styling */
        #lightboxOverlay {
            z-index: 1050;
            background-color: rgba(0, 0, 0, 0.9);
            backdrop-filter: blur(10px);
            transition: opacity 0.3s ease;
        }
        #lightboxOverlay > div {
            position: relative;
            max-width: 90vw;
            max-height: 90vh;
            display: flex;
            justify-content: center;
            align-items: center;
        }
        #lightboxImg {
            max-height: 80vh;
            max-width: 90vw;
            object-fit: contain;
            display: block;
        }
        #lightboxOverlay .btn {
            border-radius: 50%;
            width: 45px;
            height: 45px;
            display: flex;
            justify-content: center;
            align-items: center;
            font-size: 1.5rem;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
            transition: transform 0.2s ease, opacity 0.2s ease;
        }
        #lightboxOverlay .btn:hover {
            transform: scale(1.1);
        }
        #lightboxPrev, #lightboxNext {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            opacity: 0.8;
            z-index: 1051;
        }
        #lightboxPrev { left: 15px; }
        #lightboxNext { right: 15px; }
        #lightboxClose {
            top: 15px;
            right: 15px;
            position: absolute;
            z-index: 1051;
        }
