﻿<!--

Gallery CSS -->
<style >

.letter-spacing-2 {
    letter-spacing: 2px;
}

.gallery-card {
    position: relative;
    overflow: hidden;
    border-radius: 20px;
    box-shadow: 0 10px 35px rgba(0,0,0,0.12);
    transition: all 0.5s ease;
    background: #fff;
}

    .gallery-card img {
        width: 100%;
        height: 320px;
        object-fit: cover;
        transition: transform 0.6s ease;
    }

.gallery-overlay {
    position: absolute;
    left: 0;
    bottom: -100%;
    width: 100%;
    padding: 25px;
    background: linear-gradient(to top, rgba(0,0,0,0.95), rgba(0,123,255,0.2));
    color: #fff;
    transition: 0.5s;
}

    .gallery-overlay h4 {
        font-weight: 700;
        margin-bottom: 10px;
    }

    .gallery-overlay p {
        margin: 0;
        color: #ddd;
    }

.gallery-card:hover img {
    transform: scale(1.12) rotate(2deg);
}

.gallery-card:hover .gallery-overlay {
    bottom: 0;
}

.gallery-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 20px 50px rgba(0,0,0,0.25);
}

.filter-btn {
    transition: 0.4s;
    font-weight: 600;
}

    .filter-btn:hover,
    .filter-btn.active {
        background: #0d6efd;
        color: #fff !important;
        transform: translateY(-3px);
        box-shadow: 0 8px 20px rgba(13,110,253,0.3);
    }

/* Responsive */
@media (max-width: 768px) {

    .gallery-card img {
        height: 250px;
    }

    .display-5 {
        font-size: 2rem;
    }
}

</style >
