/* ==============
    HERO SECTION
================= */
.blog-hero {
    height: 287px;
    background-image: url("../img/building.webp");
    background-size: cover;
    background-position: center 10%;
    background-repeat: no-repeat;
    position: relative;

    display: flex;
    align-items: center;
    justify-content: center;
}

/* Gradient Overlay (like screenshot) */
.blog-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom,
            rgba(0, 0, 0, 0.35) 0%,
            rgba(0, 0, 0, 0.55) 70%,
            rgba(0, 0, 0, 0.75) 100%);
    z-index: 1;
}

/* Content */
.hero-container {
    position: relative;
    z-index: 2;
    text-align: center;
}

/* Title Green Box */
.hero-title {
    width: 297px;
    height: 67px;

    background: #AA5A95;

    display: flex;
    align-items: center;
    justify-content: center;

    font-family: "Urbanist", sans-serif;
    font-size: 36px;
    font-weight: 600;
    text-transform: uppercase;
    color: #F3E6EF;

    margin: 0 auto 20px;
    /* center horizontally */
}


/* Breadcrumb */
.hero-breadcrumb {
    font-family: "Quicksand", sans-serif;
    font-size: 24px;
    font-weight: 700;
    line-height: 28px;
    letter-spacing: 0.2px;
    color: #FFFFFF;
}

.breadcrumb-link {
    color: #fff;
    text-decoration: none;
}

.breadcrumb-link:hover {
    opacity: 0.8;
    color: #F3E6EF;
}

.breadcrumb-current {
    color: #fff;
}





/* =================
   Gallery Section 
====================*/
.gallery-section {
    background: #ffffff;
}


/* TITLE */
.gallery-title {
    font-family: 'Quicksand', sans-serif;
    font-size: 50px;
    font-weight: 600;
    line-height: 52px;
    letter-spacing: -2%;
    color: #333;
    margin-bottom: 120px;
}

.gallery-title span {
    color: #AA5A95;
}

/* CONTROLLED SPACING */
.gallery-row {
    row-gap: 25px;
}

/* CARD */
.gallery-card {
    position: relative;
    
    border-radius: 4px;
    overflow: hidden;
}

/* IMAGE */
.gallery-card img {
    width: 100%;
    height: 240px;
    object-fit: cover;
    display: block;

    transition: transform 0.4s ease;
}

.gallery-card:hover img {
    transform: scale(1.08);   
}

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 15%;

    background: #AA5A95;

    display: flex;
    align-items: center;
    justify-content: center;

    transform: translateY(0);
}

.gallery-overlay img {
    width: 28px;   
    height: 28px;
    object-fit: contain;
}


/* REMOVE this completely */
/*
.gallery-card:hover .gallery-overlay {
    transform: translateY(0);
}
*/
