```css
/* =========================================
   BELLORA EVENTS - GALLERY PAGE
   All classes start with .gallery
========================================= */

.gallery {
    width: 100%;
    overflow: hidden;
    background: #fff;
    color: #292929;
    font-family: Arial, Helvetica, sans-serif;
}

.gallery *,
.gallery *::before,
.gallery *::after {
    box-sizing: border-box;
}

.gallery-container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

/* =========================
   BANNER
========================= */

.gallery-banner {
    position: relative;
    width: 100%;
    height: 430px;
    overflow: hidden;
}

.gallery-banner-image {
    width: 100%;
    height: 100%;
}

.gallery-banner-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.gallery-banner-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 25px;
    background: rgba(0, 0, 0, 0.52);
}

.gallery-banner-content {
    color: #fff;
    max-width: 800px;
}

.gallery-banner-content span {
    display: block;
    margin-bottom: 14px;
    font-size: 14px;
    letter-spacing: 3px;
    text-transform: uppercase;
}

.gallery-banner-content h1 {
    margin: 0 0 15px;
    font-size: 52px;
    line-height: 1.15;
}

.gallery-banner-content p {
    margin: 0;
    font-size: 18px;
    line-height: 1.6;
}

/* =========================
   BREADCRUMB
========================= */

.gallery-breadcrumb {
    padding: 15px 0;
    background: #f8f5f2;
}

.gallery-breadcrumb .gallery-container {
    display: flex;
    align-items: center;
    gap: 9px;
    flex-wrap: wrap;
    font-size: 14px;
}

.gallery-breadcrumb a {
    color: #8b5e3c;
    text-decoration: none;
}

.gallery-breadcrumb span {
    color: #999;
}

.gallery-breadcrumb strong {
    color: #333;
}

/* =========================
   INTRO
========================= */

.gallery-intro {
    padding: 85px 0 95px;
    background: #fff;
}

.gallery-heading {
    max-width: 760px;
    margin: 0 auto 50px;
    text-align: center;
}

.gallery-heading > span {
    color: #a26d42;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 2px;
}

.gallery-heading h2 {
    margin: 12px 0 17px;
    color: #292929;
    font-size: 40px;
    line-height: 1.2;
}

.gallery-heading p {
    margin: 0;
    color: #777;
    font-size: 16px;
    line-height: 1.8;
}

/* =========================
   GALLERY GRID
========================= */

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.gallery-item {
    position: relative;
    height: 280px;
    overflow: hidden;
    background: #eee;
    border-radius: 4px;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.gallery-item:hover img {
    transform: scale(1.08);
}

.gallery-item-overlay {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    padding: 45px 20px 20px;
    color: #fff;
    background: linear-gradient(
        to top,
        rgba(0, 0, 0, 0.80),
        rgba(0, 0, 0, 0)
    );
    transform: translateY(5px);
    transition: 0.3s ease;
}

.gallery-item:hover .gallery-item-overlay {
    transform: translateY(0);
}

.gallery-item-overlay span {
    display: block;
    margin-bottom: 5px;
    font-size: 11px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
}

.gallery-item-overlay h3 {
    margin: 0;
    font-size: 19px;
    line-height: 1.3;
}

/* =========================
   CTA
========================= */

.gallery-cta {
    padding: 80px 0;
    background: #30251e;
    text-align: center;
}

.gallery-cta-content {
    max-width: 800px;
    margin: 0 auto;
}

.gallery-cta-content > span {
    color: #d1a77d;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 2px;
}

.gallery-cta-content h2 {
    margin: 14px 0;
    color: #fff;
    font-size: 38px;
    line-height: 1.25;
}

.gallery-cta-content p {
    max-width: 680px;
    margin: 0 auto 28px;
    color: #ddd;
    font-size: 16px;
    line-height: 1.7;
}

.gallery-cta-btn {
    display: inline-block;
    padding: 15px 32px;
    background: #fff;
    color: #6d492f;
    text-decoration: none;
    font-size: 15px;
    font-weight: 700;
    border-radius: 3px;
    transition: 0.3s ease;
}

.gallery-cta-btn:hover {
    background: #d1a77d;
    color: #fff;
}

/* =========================
   TABLET
========================= */

@media (max-width: 991px) {

    .gallery-banner {
        height: 390px;
    }

    .gallery-banner-content h1 {
        font-size: 43px;
    }

    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .gallery-item {
        height: 300px;
    }

    .gallery-intro {
        padding: 70px 0 80px;
    }
}

/* =========================
   MOBILE
========================= */

@media (max-width: 767px) {

    .gallery-container {
        width: 92%;
    }

    .gallery-banner {
        height: 330px;
    }

    .gallery-banner-content h1 {
        font-size: 32px;
    }

    .gallery-banner-content p {
        font-size: 15px;
    }

    .gallery-banner-content span {
        font-size: 11px;
        letter-spacing: 2px;
    }

    .gallery-heading {
        margin-bottom: 35px;
    }

    .gallery-heading h2 {
        font-size: 30px;
    }

    .gallery-heading p {
        font-size: 15px;
        line-height: 1.7;
    }

    .gallery-grid {
        grid-template-columns: 1fr 1fr;
        gap: 12px;
    }

    .gallery-item {
        height: 230px;
    }

    .gallery-item-overlay {
        padding: 35px 13px 13px;
    }

    .gallery-item-overlay h3 {
        font-size: 15px;
    }

    .gallery-item-overlay span {
        font-size: 9px;
    }

    .gallery-cta {
        padding: 60px 20px;
    }

    .gallery-cta-content h2 {
        font-size: 29px;
    }

    .gallery-cta-content p {
        font-size: 15px;
    }
}

/* =========================
   SMALL MOBILE
========================= */

@media (max-width: 480px) {

    .gallery-banner {
        height: 300px;
    }

    .gallery-banner-content h1 {
        font-size: 27px;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .gallery-item {
        height: 300px;
    }

    .gallery-heading h2 {
        font-size: 27px;
    }

    .gallery-breadcrumb .gallery-container {
        font-size: 12px;
    }

    .gallery-cta-content h2 {
        font-size: 26px;
    }
}
```
