﻿.gallery-title {
    font-size: 40px;
    font-weight: bold;
    margin-top: 30px;
    color: #333;
}

.gallery-subtitle {
    color: #777;
    margin-bottom: 30px;
}

.gallery-item {
    margin-bottom: 25px;
}

.gallery-card {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.15);
    transition: 0.3s;
}

    .gallery-card:hover {
        transform: scale(1.03);
        box-shadow: 0 8px 25px rgba(0,0,0,0.25);
    }

.gallery-img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    transition: 0.3s;
}

.gallery-overlay {
    position: absolute;
    bottom: 0;
    width: 100%;
    background: rgba(0,0,0,0.6);
    color: #fff;
    text-align: center;
    padding: 10px;
    opacity: 0;
    transition: 0.3s;
}

.gallery-card:hover .gallery-overlay {
    opacity: 1;
}

.gallery-item {
    margin-bottom: 25px;
}

.gallery-card {
    position: relative;
    width: 100%;
    height: 260px;
    overflow: hidden;
    border-radius: 14px;
    background: #f1f1f1;
    box-shadow: 0 4px 14px rgba(0,0,0,0.15);
    cursor: pointer;
}

.gallery-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    transition: transform 0.4s ease;
}

.gallery-card:hover .gallery-img {
    transform: scale(1.08);
}

.gallery-overlay {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    padding: 15px;
    background: linear-gradient(transparent, rgba(0,0,0,0.75));
    color: white;
}

    .gallery-overlay h4 {
        margin: 0;
        font-size: 18px;
    }