/* =========================================================
   GALLERY PAGE – PREMIUM CLEAN VERSION
========================================================= */

:root{
    --green:#0f6b3e;
    --light-green:#79d199;
    --cream:#fbfbef;
}

/* =========================================================
   GLOBAL
========================================================= */

body{
    background-color: beige;
    font-family: "Poppins", sans-serif;
}

/* Header is fixed */
header{
    position: fixed !important;
    top: 0;
    width: 100%;
    z-index: 1100;
}

/* Space for header + quicklinks */
main{
    margin-top: 100px;
}

/* =========================================================
   QUICK LINKS (Sticky)
========================================================= */

.quicklinks-wrapper{
    position: fixed;
    top: 70px;  /* adjust if header height changes */
    width: 100%;
    background: #ffffff;
    border-bottom: 1px solid #eaeaea;
    z-index: 1050;
}

/* Horizontal scroll container */
.galQuicklinks{
    display: flex;
    overflow-x: auto;
    gap: 10px;
    padding: 8px 14px;
    scroll-behavior: smooth;
}

.galQuicklinks::-webkit-scrollbar{
    display: none;
}
.galQuicklinks{
    -ms-overflow-style: none;
    scrollbar-width: none;
}

/* Quick link style */
.quick-link{
    flex: 0 0 auto;
    padding: 7px 16px;
    font-size: 13px;
    white-space: nowrap;
    border-radius: 20px;
    text-decoration: none;
    color: #444;
    background: #f5f5f5;
    transition: 0.3s ease;
}

.quick-link:hover{
    background: #e6f2ec;
    color: var(--green);
}

.quick-link.active{
    background: var(--green);
    color: #fff;
    font-weight: 500;
}

/* =========================================================
   MAIN SECTION BACKGROUND
========================================================= */

.main_container{
    background: linear-gradient(to bottom, #21935c, #0c4f2f);
    padding-bottom: 80px;
}

/* =========================================================
   SECTION TITLES
========================================================= */

h1{
    font-size: 38px;
    font-weight: 300;
    text-transform: uppercase;
    letter-spacing: 2px;
    word-spacing: 8px;
}

/* =========================================================
   IMAGE GRID
========================================================= */

.image_conatiner img{
    object-fit: cover;
    border-radius: 8px;
    border: 1.5px solid rgba(0,0,0,0.4);
    height: 400px;
    width: 100%;
    box-shadow: 0 8px 40px rgba(0,0,0,0.45);
    transition: 0.35s ease;
}

.image_conatiner img:hover{
    transform: scale(1.03);
    box-shadow: 0 12px 50px rgba(0,0,0,0.7);
}

/* =========================================================
   SCROLL ANIMATION
========================================================= */

.scroll-animate{
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.8s ease;
}

.scroll-animate.show{
    opacity: 1;
    transform: translateY(0);
}

/* =========================================================
   MODAL CLOSE BUTTON
========================================================= */
.modal-dialog{
    max-height: 80vh;
    margin: 70px auto;
}
.imgPopupBtn{
    position: absolute;
    top: 5px;
    right: 5px;
    width: 35px ;
    height: 35px;
    background: #ffffff8e;
    border: none;
    border-radius: 50%;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.789);
    z-index: 1055;
    opacity: 1;
    transition: all 0.3s ease;
    font-size: 25px;
    font-weight: 700;
    color: grey;
}

/* Force Bootstrap close icon to black */
.imgPopupBtn.btn-close{
    filter: invert(0) !important;
    opacity: 1;
}

.imgPopupBtn:hover{
    background: #e9f0e5;
    transform: scale(1.08);
}

