/* dogalgaz-vanalari.css */

.gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    padding: 4rem 2rem;
    background-color: #f8f9fa;
}

.gallery-item {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-align: center;
}

.gallery-item:hover {
    transform: scale(1.02);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2);
}

.gallery-item img {
    width: 100%;
    height: 200px;
    object-fit: contain;
    background-color: #f0f0f0;
    transition: opacity 0.3s ease;
    border-bottom: 1px solid #eee;
}

.gallery-item h2 {
    font-size: 1.2rem;
    margin: 1rem 0;
    color: #333;
    padding: 0 1rem;
}

.gallery-item a {
    text-decoration: none;
    color: inherit;
    display: block;
    height: 100%;
}

@media (max-width: 768px) {
    .gallery-item img {
        height: 180px;
    }
}

@media (max-width: 480px) {
    .gallery-item h2 {
        font-size: 1rem;
    }
}