/* Gallery Header */
/*.gallery-header {*/
/*    text-align: center;*/
/*    margin: 95px auto 35px auto;*/
/*    padding: 10px 0;*/
/*    position: relative;*/
/*}*/

/*.gallery-header h1 {*/
/*    font-size: 3rem;*/
/*    color: #333;*/
/*    font-weight: 700;*/
/*    margin-bottom: 10px;*/
/*    text-transform: uppercase;*/
/*    letter-spacing: 2px;*/
/*}*/

/*.gallery-header::after {*/
/*    content: '';*/
/*    position: absolute;*/
/*    bottom: 0;*/
/*    left: 50%;*/
/*    transform: translateX(-50%);*/
/*    width: 150px;*/
/*    height: 4px;*/
/*    background: linear-gradient(90deg, #ff7e5f, #feb47b);*/
/*    border-radius: 2px;*/
/*}*/

/* Gallery spacing */
/*.gallery-wrapper {*/
/*    margin: 0 auto 60px auto;*/
/*    display: flex;*/
/*    flex-wrap: wrap;*/
/*    justify-content: center;*/
/*    padding: 0 10%;*/
/*    max-width: 1400px;*/
/*}*/

/* Image card */
/*.gallery-img {*/
/*    position: relative;*/
/*    width: calc(25% - 20px);*/
/*    margin: 10px;*/
/*    border-radius: 12px;*/
/*    overflow: hidden;*/
/*    cursor: pointer;*/
/*    box-shadow: 0 4px 20px rgba(0,0,0,0.1);*/
/*    transition: all .3s ease;*/
/*    aspect-ratio: 1/1;*/
/*}*/

/*.gallery-img img {*/
/*    width: 100%;*/
/*    height: 100%;*/
/*    object-fit: cover;*/
/*    transition: transform .5s ease;*/
/*}*/

/* Hover effects */
/*.gallery-img:hover {*/
/*    transform: translateY(-10px);*/
/*    box-shadow: 0 10px 30px rgba(0,0,0,0.2);*/
/*}*/

/*.gallery-img:hover img {*/
/*    transform: scale(1.1);*/
/*}*/

/* Dark hover overlay */
/*.overlay {*/
/*    position: absolute;*/
/*    top: 0;*/
/*    left: 0;*/
/*    width: 100%;*/
/*    height: 100%;*/
/*    background: linear-gradient(135deg, rgba(255, 153, 0, 0.8), rgba(235, 228, 224, 0.8));*/
/*    display: flex;*/
/*    justify-content: center;*/
/*    align-items: center;*/
/*    opacity: 0;*/
/*    transition: .3s ease;*/
/*}*/

/*.overlay span {*/
/*    color: white;*/
/*    font-size: 1.5rem;*/
/*    font-weight: bold;*/
/*    padding: 12px 24px;*/
/*    border-radius: 8px;*/
/*    background: rgba(0,0,0,0.3);*/
/*    backdrop-filter: blur(4px);*/
/*    border: 2px solid white;*/
/*    transform: translateY(20px);*/
/*    transition: transform .3s ease;*/
/*}*/

/*.gallery-img:hover .overlay {*/
/*    opacity: 1;*/
/*}*/

/*.gallery-img:hover .overlay span {*/
/*    transform: translateY(0);*/
/*}*/

/* Popup Styles */
/*.popup {*/
/*    position: fixed;*/
/*    top: 0;*/
/*    left: 0;*/
/*    width: 100%;*/
/*    height: 100%;*/
/*    background: rgba(0,0,0,0.95);*/
/*    display: none;*/
/*    justify-content: center;*/
/*    align-items: center;*/
/*    z-index: 9999;*/
/*    padding: 20px;*/
/*}*/

/*.popup-content {*/
/*    position: relative;*/
/*    width: 90%;*/
/*    max-width: 1000px;*/
/*    display: flex;*/
/*    justify-content: center;*/
/*    align-items: center;*/
/*}*/

/*.popup img {*/
/*    max-width: 100%;*/
/*    max-height: 80vh;*/
/*    border-radius: 12px;*/
/*    box-shadow: 0 10px 40px rgba(0,0,0,0.5);*/
/*    object-fit: contain;*/
/*}*/

/* Close button at top-right corner */
/*.popup .close {*/
/*    position: fixed;*/
/*    top: 30px;*/
/*    right: 30px;*/
/*    color: white;*/
/*    font-size: 40px;*/
/*    cursor: pointer;*/
/*    background: rgba(0,0,0,0.7);*/
/*    width: 60px;*/
/*    height: 60px;*/
/*    border-radius: 50%;*/
/*    display: flex;*/
/*    justify-content: center;*/
/*    align-items: center;*/
/*    transition: all .3s ease;*/
/*    z-index: 10001;*/
/*    border: 2px solid rgba(255,255,255,0.3);*/
/*}*/

/*.popup .close:hover {*/
/*    background: rgba(255, 87, 87, 0.9);*/
    /* transform: rotate(90deg) scale(1.1); */
    /* border-color: rgba(255,255,255,0.6); */
    /* margin-top: -20px; */
/*}*/

/* Navigation Buttons */
/*button.nav {*/
/*    position: absolute;*/
/*    top: 50%;*/
/*    transform: translateY(-50%);*/
/*    background: rgba(255,255,255,0.15);*/
/*    color: white;*/
/*    border: none;*/
/*    width: 70px;*/
/*    height: 70px;*/
/*    border-radius: 50%;*/
/*    font-size: 28px;*/
/*    cursor: pointer;*/
/*    display: flex;*/
/*    justify-content: center;*/
/*    align-items: center;*/
/*    transition: all .3s ease;*/
/*    backdrop-filter: blur(10px);*/
/*    z-index: 10000;*/
/*    border: 2px solid rgba(255,255,255,0.2);*/
/*}*/

/*button.nav:hover {*/
/*    background: rgba(255,255,255,0.25);*/
/*    transform: translateY(-50%) scale(1.15);*/
/*    border-color: rgba(255,255,255,0.4);*/
/*}*/

/*button.nav.left {*/
/*    left: 30px;*/
/*}*/

/*button.nav.right {*/
/*    right: 30px;*/
/*}*/

/* Image Counter below image */
/*.image-counter {*/
/*    position: absolute;*/
/*    bottom: -60px;*/
/*    left: 50%;*/
/*    transform: translateX(-50%);*/
/*    color: white;*/
/*    font-size: 20px;*/
/*    background: rgba(0,0,0,0.7);*/
/*    padding: 12px 30px;*/
/*    border-radius: 30px;*/
/*    font-weight: 600;*/
/*    letter-spacing: 1px;*/
/*    backdrop-filter: blur(5px);*/
/*    border: 1px solid rgba(255,255,255,0.1);*/
/*    min-width: 100px;*/
/*    text-align: center;*/
/*    box-shadow: 0 5px 20px rgba(0,0,0,0.3);*/
/*}*/

/* Responsive Design */
/* For Tablets (992px and below) */
/*@media (max-width: 992px) {*/
/*    .gallery-header h1 {*/
/*        font-size: 2.5rem;*/
/*    }*/
    
/*    .gallery-wrapper {*/
/*        padding: 0 8%;*/
/*    }*/
    
/*    .gallery-img {*/
/*        width: calc(33.333% - 20px);*/
/*    }*/
    
/*    .popup .close {*/
/*        width: 55px;*/
/*        height: 55px;*/
/*        font-size: 35px;*/
/*    }*/
    
/*    button.nav {*/
/*        width: 60px;*/
/*        height: 60px;*/
/*        font-size: 24px;*/
/*    }*/
    
/*    .image-counter {*/
/*        font-size: 18px;*/
/*        padding: 10px 25px;*/
/*        bottom: -50px;*/
/*    }*/
/*}*/

/* For Small Tablets (768px and below) */
/*@media (max-width: 768px) {*/
/*    .gallery-header {*/
/*        margin: 80px auto 30px auto;*/
/*    }*/
    
/*    .gallery-header h1 {*/
/*        font-size: 2rem;*/
/*    }*/
    
/*    .gallery-wrapper {*/
/*        padding: 0 5%;*/
/*    }*/
    
/*    .gallery-img {*/
/*        width: calc(50% - 20px);*/
/*    }*/
    
/*    .overlay span {*/
/*        font-size: 1.2rem;*/
/*        padding: 10px 20px;*/
/*    }*/
    
/*    .popup .close {*/
/*        top: 20px;*/
/*        right: 20px;*/
/*        width: 50px;*/
/*        height: 50px;*/
/*        font-size: 30px;*/
/*    }*/
    
/*    .popup img {*/
/*        max-height: 70vh;*/
/*    }*/
    
/*    .image-counter {*/
/*        bottom: -50px;*/
/*        font-size: 18px;*/
/*        padding: 10px 25px;*/
/*    }*/
    
/*    button.nav {*/
/*        width: 60px;*/
/*        height: 60px;*/
/*        font-size: 24px;*/
/*    }*/
    
/*    button.nav.left {*/
/*        left: 15px;*/
/*    }*/
    
/*    button.nav.right {*/
/*        right: 15px;*/
/*    }*/
/*}*/

/* For Mobile (480px and below) */
/*@media (max-width: 480px) {*/
/*    .gallery-header {*/
/*        margin: 70px auto 20px auto;*/
/*    }*/
    
/*    .gallery-header h1 {*/
/*        font-size: 1.8rem;*/
/*    }*/
    
/*    .gallery-wrapper {*/
/*        padding: 0 2%;*/
/*    }*/
    
/*    .gallery-img {*/
/*        width: calc(100% - 20px);*/
/*        margin: 10px 0;*/
/*    }*/
    
/*    .overlay span {*/
/*        font-size: 1rem;*/
/*        padding: 8px 16px;*/
/*    }*/
    
/*    .popup .close {*/
/*        top: 15px;*/
/*        right: 15px;*/
/*        width: 45px;*/
/*        height: 45px;*/
/*        font-size: 25px;*/
/*    }*/
    
/*    .popup img {*/
/*        max-height: 65vh;*/
/*    }*/
    
/*    .image-counter {*/
/*        bottom: -40px;*/
/*        font-size: 16px;*/
/*        padding: 8px 20px;*/
/*    }*/
    
/*    button.nav {*/
/*        width: 50px;*/
/*        height: 50px;*/
/*        font-size: 20px;*/
/*    }*/
    
/*    button.nav.left {*/
/*        left: 10px;*/
/*    }*/
    
/*    button.nav.right {*/
/*        right: 10px;*/
/*    }*/
/*}*/

/* For very small screens (360px and below) */
/*@media (max-width: 360px) {*/
/*    .gallery-header h1 {*/
/*        font-size: 1.5rem;*/
/*    }*/
    
/*    .gallery-wrapper {*/
/*        padding: 0 1%;*/
/*    }*/
    
/*    .gallery-img {*/
/*        width: 98%;*/
/*    }*/
    
/*    .popup .close {*/
/*        top: 10px;*/
/*        right: 10px;*/
/*        width: 40px;*/
/*        height: 40px;*/
/*        font-size: 22px;*/
/*    }*/
    
/*    button.nav {*/
/*        width: 45px;*/
/*        height: 45px;*/
/*        font-size: 18px;*/
/*    }*/
    
/*    .image-counter {*/
/*        font-size: 14px;*/
/*        padding: 6px 15px;*/
/*        bottom: -35px;*/
/*    }*/
/*}*/