/* css/templates/gallery.css */
.gallery-content {
    width: 100%;
}

.gallery-header {
    width: 100%;
    height: 60vh;
    position: relative;
}

.gallery-hero {
    width: 100%;
    height: 100%;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
	opacity: 1 !important; /* Verhindert GSAP-Overrides */
    transform: none !important; /* Verhindert GSAP-Overrides */
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    filter: brightness(0.7);
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 800px;
    padding: 2rem;
    color: var(--white);
opacity: 1 !important;
    transform: none !important;
}

.hero-content h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: var(--gold);
}

.hero-description {
    font-size: 1.2rem;
    line-height: 1.6;
}

/* Rest des CSS bleibt gleich */