:root {
    --primary-red: #ff3131;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html,
body {
    width: 100%;
    min-height: 100%;
    overflow-x: hidden;
}





.breadcrumb-section {
    background-image: url('../images/about/header-bg.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 4rem 1rem;
    padding-top: 8rem;
    position: relative;
    text-align: center;
    transition: transform 0.3s ease-out;
    z-index: 0;
}

.breadcrumb-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, #00000087, #ff313167);
    z-index: 1;
}

.breadcrumb-overlay {
    position: relative;
    z-index: 2;
    padding: 2rem;
    max-width: 900px;
    margin: 0 auto;
}

.breadcrumb-title {
    font-size: 3rem;
    font-weight: bold;
    margin-bottom: 1rem;
    color: white;
    text-transform: uppercase;
}

.breadcrumb-nav {
    display: flex;
    justify-content: center;
}

.breadcrumb-list {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    list-style: none;
    padding: 1rem 2rem;
    border-radius: 2em;
    margin: 0;
    background: linear-gradient(to right, #000000, #ff3131);
    font-size: 1rem;
    justify-content: center;

}

.breadcrumb-list li {
    color: white;
}

.breadcrumb-list li a {
    color: white;
}




















/* ===== GALLERY SECTION STYLING ===== */

.gallery-section {
    padding: 60px 0px;
}

.row {
    display: flex;
    flex-wrap: wrap;
    padding: 0 4px;
}

.column {
    flex: 25%;
    max-width: 33.3%;
    padding: 0 4px;
}

.column img {
    margin-top: 8px;
    vertical-align: middle;
    width: 100%;
    border-radius: 10px;
    cursor: pointer;
    transition: 0.3s linear;
}

.column img:hover {
    filter: brightness(0.3);
}

@media screen and (max-width: 700px) {
    .column {
        flex: 100%;
        max-width: 100%;
    }
}






/* Lightbox Modal */
.lightbox {
    display: none;
    /* Hidden by default */
    position: fixed;
    z-index: 9999;
    padding-top: 60px;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.9);
}

.lightbox-content {
    margin: auto;
    display: block;
    max-width: 80%;
    max-height: 80%;
    border-radius: 8px;
}

.close {
    position: absolute;
    top: 20px;
    right: 35px;
    color: #ffffff;
    font-size: 40px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
}



.prev,
.next {
    cursor: pointer;
    position: absolute;
    top: 50%;
    padding: 16px;
    color: #fff;
    font-weight: bold;
    font-size: 30px;
    transition: 0.3s;
    user-select: none;
}

.prev {
    left: 0;
}

.next {
    right: 0;
}

.prev:hover,
.next:hover,
.close:hover {
    color: #d01b1b;
}




@media (max-width:767px) {

    .gallery-section {
        padding: 40px;
    }
}

@media (max-width:575px) {

    .gallery-section {
        padding: 20px;
    }
}