.elementor-302 .elementor-element.elementor-element-51a2794{--display:flex;}/* Start custom CSS *//* Galerie Container */
.gallery-container {
    display: grid;
    padding: 20px;
}

/* Einzelnes Bild in der Galerie */
.gallery-item {
    background-color: #333; /* Dunkler Hintergrund */
    color: #fff; /* Weiße Schrift */
    border-radius: 10px; /* Abgerundete Ecken */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2); /* Schatteneffekt */
    text-align: center;
    padding: 15px;
    transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
}

/* Hover-Effekt */
.gallery-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3);
}

/* Bilder in der Galerie */
.gallery-item img {
    max-width: 100%;
    height: auto;
    max-height: 250px;
    border-radius: 10px;
    margin-bottom: 10px;
}
/* Button-Container */
#gallery-filters {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
    margin-bottom: 20px;
}

/* Standard-Button-Styling */
.filter-btn {
    background-color: #444; /* Dunkler Hintergrund */
    color: white;
    border: none;
    padding: 10px 16px;
    font-size: 1rem;
    font-weight: bold;
    border-radius: 8px; /* Abgerundete Ecken */
    cursor: pointer;
    transition: background-color 0.3s, transform 0.2s;
    text-transform: uppercase;
}

/* Hover-Effekt */
.filter-btn:hover {
    background-color: #666;
    transform: translateY(-2px);
}

/* Aktiver Button */
.filter-btn.active {
    background-color: #0073aa;
    color: white;
    box-shadow: 0 4px 8px rgba(0, 115, 170, 0.3);
    transform: translateY(-2px);
}

/* Responsive Anpassungen */
@media (max-width: 768px) {
    .filter-btn {
        padding: 8px 12px;
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .filter-btn {
        padding: 6px 10px;
        font-size: 0.85rem;
    }
}/* End custom CSS */