﻿.gallery-header {
    text-align: center;
    margin-bottom: 50px;
}

.gallery-badge {
    display: inline-block;
    background: #fff4e5;
    color: #c1121f;
    padding: 10px 22px;
    border-radius: 30px;
    font-weight: 600;
}

.gallery-header h1 {
    font-size: 48px;
    font-weight: 700;
}

.gallery-header p {
    color: #666;
    font-size: 18px;
    max-width: 700px;
    margin: auto;
}

.gallery-filter button {
    margin: 5px;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill,minmax(260px,1fr));
    gap: 20px;
}

.gallery-item {
    overflow: hidden;
    border-radius: 18px;
    box-shadow: 0 8px 20px rgba(0,0,0,.10);
    background: white;
    transition: .3s;
}

    .gallery-item:hover {
        transform: translateY(-5px);
    }

    .gallery-item img {
        width: 100%;
        height: 260px;
        object-fit: cover;
    }

.gallery-caption {
    padding: 15px;
}

    .gallery-caption h5 {
        margin: 0;
        font-size: 17px;
    }

    .gallery-caption p {
        margin: 5px 0 0;
        color: #666;
    }
