.gallery-section {
    padding: 40px;
    text-align: center;
}

/* Filter Buttons */
.filter-buttons {
    margin-bottom: 30px;
}

.filter-buttons button {
    padding: 8px 18px;
    margin: 5px;
    border: 1px solid #f39c12;
    background: transparent;
    color: #f39c12;
    border-radius: 20px;
    cursor: pointer;
    transition: 0.3s;
}

.filter-buttons button:hover,
.filter-buttons button.active {
    background: #f39c12;
    color: #fff;
}

/* Gallery Grid */
.gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    display: none;
}

.gallery-item img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 8px;
    transition: 0.4s;
}

/* Overlay */
.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.6);
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: 0.4s;
    border-radius: 8px;
}

.gallery-item:hover .overlay {
    opacity: 1;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

/* View Button */
.view-btn {
    padding: 8px 20px;
    background: #f39c12;
    color: #fff;
    text-decoration: none;
    border-radius: 5px;
    transition: 0.3s;
}

.view-btn:hover {
    background: #e67e22;
}