.gallery-section {
    margin: 2.5rem auto;
    background: #fffbe6;
    border-radius: 18px;
    box-shadow: 0 4px 24px rgba(255,179,0,0.10);
    padding: 2.2rem 2.5rem 1.5rem 2.5rem;
    border: 1.5px solid #ffe082;
    max-width: 1200px;
}
.gallery-section h1 {
    text-align: center;
    color: #ff9800;
    font-size: 2.2rem;
    font-weight: 900;
    margin-bottom: 2rem;
    letter-spacing: 0.04em;
    text-shadow: 0 2px 8px #ffe08244;
}
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1.5rem;
}
.gallery-item {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 2px 12px rgba(255,179,0,0.07);
    border: 1.5px solid #ffe082;
    overflow: hidden;
    transition: box-shadow 0.18s, border 0.18s, transform 0.18s;
    position: relative;
}
.gallery-item:hover {
    box-shadow: 0 8px 32px rgba(255,179,0,0.13);
    border-color: #ffb300;
    transform: translateY(-3px) scale(1.03);
}
.gallery-item img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    display: block;
    border-bottom: 1px solid #ffe082;
    background: #fffbe6;
    transition: filter 0.18s;
}
.gallery-item img:hover {
    filter: brightness(0.95) blur(1px);
}
@media (max-width: 700px) {
    .gallery-section { padding: 1.2rem 0.7rem; }
    .gallery-grid { grid-template-columns: 1fr 1fr; gap: 0.7rem; }
    .gallery-item img { height: 100px; }
}