/* ======= Typography style ======= */

:root {
    --blue: #003366;
    --light-blue: rgba(217, 232, 247, 0.2);
    --gray: #e1d9d2;
    --white: #FFF;
    --black: #101010;
    --light-black: #1B1B1B;
    --bg-white: #F8F8F8;
}



html,
body {
    -moz-osx-font-smoothing: grayscale;
    -webkit-font-smoothing: antialiased;
    -moz-font-smoothing: antialiased;
    font-smoothing: antialiased;
    height: 100%;
    width: 100%;
}

* {
    margin: 0;
    padding: 0;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    outline: none;
    list-style: none;
    word-wrap: break-word;
}

body {
    font-family: "Outfit", sans-serif;
    font-size: 16px;
    font-weight: 300;
    line-height: 1.95em;
    color: var(--gray);
    overflow-x: hidden !important;
    background: var(--white);
    overflow-x: hidden;
}














/* BreadCrumb Section */
.breadcrumb-box {
    position: relative;
    background: url('../img/15.jpg') center center / cover no-repeat;
    width: 100%;

    padding: clamp(4rem, 10vw, 8rem) 1rem;

    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--white);
}

.breadcrumb-box::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.7);
    z-index: 1;
}

.breadcrumb-content {
    max-width: 800px;
}


.breadcrumb-content>* {
    position: relative;
    z-index: 2;
}

.breadcrumb-content h1 {
    text-transform: uppercase;
    font-size: clamp(35px, 6vw, 55px);
}

.breadcrumb-content p {
    text-transform: uppercase;
    font-size: 18px;
    color: var(--white);
}

.breadcrumb-content p a {
    text-transform: uppercase;
    font-size: 18px;
    text-decoration: none;
    color: var(--white);
}


@media (max-width:945px) {
    .breadcrumb-content {
        max-width: 800px;
        margin-top: 40px;
    }
}

/* BreadCrumb Section */

















/* ===== GALLERY SECTION STYLING ===== */



/*  GALLERY GRID */
.gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
}

/* Gallery Items */
.gallery-item {
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.4s ease, box-shadow 0.3s ease;
    cursor: pointer;
    border-radius: 10px;
    width: 100%;
}

.gallery-item img {
    object-position: center;
    object-fit: cover;
    border-radius: 10px;
}


.gallery-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

/* Gallery Images */
.gallery-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.4s ease;
}

.gallery-item:hover .gallery-image {
    transform: scale(1.1);
}




/* ===== LIGHTBOX STYLING ===== */
.lightbox {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.9);
    z-index: 1000;
    justify-content: center;
    align-items: center;
}

/* Lightbox Image */
.lightbox-content {
    max-width: 80%;
    max-height: 80%;
    object-fit: cover;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
    animation: fadeIn 0.4s ease;
    border-radius: 10px;
}

/* Close Button */
.lightbox .close {
    position: absolute;
    top: 25px;
    right: 40px;
    font-size: 40px;
    color: white;
    cursor: pointer;
    transition: color 0.3s ease;
    z-index: 1001;
}

.lightbox .close:hover {
    color: var(--blue);
}

/* Arrows */
.lightbox .arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    font-size: 60px;
    color: var(--white);
    cursor: pointer;
    user-select: none;
    padding: 10px;
    z-index: 1001;
    transition: color 0.3s ease;
}

.lightbox .arrow:hover {
    color: var(--blue);
}

.lightbox .arrow.left {
    left: 40px;
}

.lightbox .arrow.right {
    right: 40px;
}

/* Fade-in Animation */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: scale(0.95);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .lightbox-content {
        max-width: 90%;
    }

    .lightbox .arrow {
        font-size: 40px;
    }
}

/* ===== GALLERY SECTION STYLING ===== */