.gallery-page {
    padding: 2rem;
    background-color: var(--background-dark);
    min-height: 100vh;
}

.gallery-navigation {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin: 2rem 0;
}

.gallery-nav-btn {
    background: transparent;
    border: 1px solid var(--primary-color);
    color: var(--text-light);
    padding: 0.8rem 1.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
    border-radius: 25px; /* Runde Ecken für Buttons */
}

.gallery-nav-btn:hover,
.gallery-nav-btn.active {
    background-color: var(--primary-color);
    border-color: var(--gold-color);
    box-shadow: 0 0 15px var(--primary-color);
    transform: scale(1.05); /* Leichte Vergrößerung beim Hover */
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    cursor: pointer;
    height: 250px;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-item-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0,0,0,0.9));
    padding: 1rem;
    color: var(--text-light);
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.gallery-item:hover .gallery-item-overlay {
    transform: translateY(0);
}

/* Lightbox Styles */
.lightbox {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.9);
    z-index: 1000;
}

.lightbox.active {
    display: flex;
    justify-content: center;
    align-items: center;
}
/* Hero Section Styles */
.gallery-hero {
    position: relative;
    height: 60vh;
    min-height: 400px;
    overflow: hidden;
}

.gallery-hero .hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.gallery-hero .hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.gallery-hero .hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0,0,0,0.4), rgba(0,0,0,0.8));
}

.gallery-hero .hero-content {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100%;
    text-align: center;
    padding: 2rem;
}

.gallery-hero .hero-subtitle {
    color: var(--text-light);
    font-size: 1.2rem;
    margin-top: 1rem;
    max-width: 600px;
    text-shadow: 0 2px 4px rgba(0,0,0,0.5);
}

/* Anpassung der bestehenden gallery-page Styles */
.gallery-page {
    padding: 0 2rem 2rem;
    background-color: var(--background-dark);
}

.gallery-navigation {
    padding-top: 2rem;
}

/* Responsive Anpassungen */
@media (max-width: 768px) {
    .gallery-hero {
        height: 50vh;
        min-height: 300px;
    }

    .gallery-hero .hero-subtitle {
        font-size: 1rem;
        padding: 0 1rem;
    }
}
/* Lightbox Navigation Styles */
.lightbox-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: transparent;
    border: none;
    color: var(--text-light);
    font-size: 2rem;
    cursor: pointer;
    padding: 1rem;
    z-index: 1010;
    transition: all 0.3s ease;
    border-radius: 50%;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.lightbox-nav:hover {
    background-color: rgba(255, 255, 255, 0.1);
    color: var(--gold-color);
}

.lightbox-nav.prev {
    left: 20px;
}

.lightbox-nav.next {
    right: 20px;
}

.lightbox-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: transparent;
    border: none;
    color: var(--text-light);
    font-size: 1.5rem;
    cursor: pointer;
    z-index: 1010;
    padding: 1rem;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.lightbox-close:hover {
    color: var(--gold-color);
    transform: scale(1.1);
}