﻿/*=====================================
GALLERY HERO
=====================================*/

.gallery-hero {
    position: relative;
    min-height: 550px;
    background: url('/images/gallery/gallery-banner.jpg') center/cover no-repeat;
    display: flex;
    align-items: center;
    color: #fff;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,.65);
}

.gallery-hero-content {
    position: relative;
    z-index: 2;
    max-width: 700px;
}

.breadcrumb {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 25px;
}

    .breadcrumb a {
        color: #d4af37;
        text-decoration: none;
    }

.hero-subtitle {
    display: inline-block;
    color: #d4af37;
    font-weight: 700;
    letter-spacing: 1px;
    margin-bottom: 15px;
}

.gallery-hero-content h1 {
    font-size: 58px;
    margin-bottom: 25px;
    line-height: 1.3;
}

.gallery-hero-content p {
    font-size: 20px;
    line-height: 2;
    color: rgba(255,255,255,.9);
}


/*=====================================
SECTION
=====================================*/

.gallery-section {
    padding: 110px 0;
}

.section-heading {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 70px;
}

    .section-heading span {
        color: #d4af37;
        font-weight: 700;
    }

    .section-heading h2 {
        font-size: 42px;
        margin: 18px 0;
    }

    .section-heading p {
        color: #666;
        line-height: 2;
    }


/*=====================================
GRID
=====================================*/

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(2,1fr);
    gap: 30px;
}

@media(max-width:768px) {
    .gallery-grid {
        grid-template-columns: 1fr;
    }
}


/*=====================================
CARD
=====================================*/

.gallery-card {
    overflow: hidden;
    border-radius: 24px;
    background: #fff;
    box-shadow: 0 15px 40px rgba(0,0,0,.08);
    transition: .35s;
    padding: 20px;
}

    .gallery-card h3 {
        text-align: center;
        font-size: 24px;
        font-weight: 700;
        color: #08111F;
        margin-bottom: 25px;
    }

    .gallery-card img {
        width: 100%;
        height: 420px;
        object-fit: cover;
        object-position: center;
        display: block;
        border-radius: 18px;
        transition: .5s;
    }

        /* المسافة بين الصور */

        .gallery-card img:not(:last-child) {
            margin-bottom: 20px;
        }

    .gallery-card:hover img {
        transform: scale(1.03);
    }
@media(max-width:992px) {

    .gallery-grid {
        grid-template-columns: repeat(2,1fr);
    }
}
