﻿
.gallery-section {
    padding: 80px 0;
}

.gallery-breadcrumb {
    background: #f8f8f8;
    padding: 15px 0;
}

.album-card {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    height: 320px;
    box-shadow: 0 10px 25px rgba(0,0,0,.08);
}

    .album-card img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: .5s;
    }

    .album-card:hover img {
        transform: scale(1.1);
    }

.album-overlay {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    padding: 25px;
    background: linear-gradient( transparent, rgba(0,0,0,.9) );
}

    .album-overlay h4 {
        color: #fff;
        margin-bottom: 5px;
    }

    .album-overlay span {
        color: #ddd;
        font-size: 14px;
    }

.album-link {
    text-decoration: none;
}
.gallery-card {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,.08);
}

    .gallery-card a {
        display: block;
        position: relative;
    }

    .gallery-card img {
        width: 100%;
        height: 280px;
        object-fit: cover;
        display: block;
        transition: .4s;
    }

    .gallery-card:hover img {
        transform: scale(1.08);
    }

.btn-back {
    display: inline-block;
    padding: 12px 25px;
    background: #b88a44;
    color: #fff;
    text-decoration: none;
    border-radius: 30px;
}

    .btn-back:hover {
        color: #fff;
    }

.no-data {
    text-align: center;
    padding: 60px;
    font-size: 18px;
    color: #777;
}
