/* Example CSS file */ 

/* Filter-Buttons */
.filters {
    text-align: center;
    margin-bottom: 20px;
}
.filters button {
    margin: 5px;
    padding: 10px 20px;
    border: none;
    background: #eee;
    cursor: pointer;
    font-size: 16px;
    transition: background 0.3s, color 0.3s;
}
.filters button.active {
    background: #333;
    color: #fff;
}

/* Portfolio-Grid */
.portfolio-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
}
.portfolio-item {
    width: 30%; /* Passe die Breite je nach Design an */
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    border: 1px solid #ddd;
    padding: 10px;
    text-align: center;
    transition: transform 0.3s, opacity 0.3s;
}
.portfolio-item:hover {
    transform: scale(1.05);
}
.portfolio-item img {
    max-width: 100%;
    height: auto;
}

/* Spezifisches Styling für Kategorien */
.portfolio-item.design {
    border-color: #ff9900; /* Design-Items orange hervorheben */
}
.portfolio-item.photography {
    border-color: #00ccff; /* Photography-Items blau hervorheben */
}
.portfolio-item.architecture {
    border-color: #66cc66; /* Architecture-Items grün hervorheben */
}
.portfolio-item.movies {
    border-color: #ff6666; /* Movies-Items rot hervorheben */
}