/*
 Theme Name:   Sinatra Child
 Theme URI:    http://csphotography.co.in
 Description:  Custom child theme of Sinatra Theme
 Author:       Your Name
 Author URI:   http://csphotography.co.in
 Template:     sinatra
 Version:      1.0.0
*/

/* Additional custom CSS below */
.slider-item {
    display: block;
    height: 500px;
    background-size: cover;
    background-position: center;
}

.about-me-img {
    width: 500px;   
    height: 500px;  
    border-radius: 50%; 
    object-fit: cover; 
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
    margin-bottom: 30px;
}

.gallery-grid img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    display: block;
}

/* Responsive */
@media (max-width: 992px) {
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (max-width: 576px) {
    .gallery-grid {
        grid-template-columns: 1fr;
    }
}

.gallery-masonry img {
    width: 100%;
    height: 300px;
    object-fit: cover;
}

.gallery-page-title {
    text-align: center;
    margin: 60px 0 40px;
}

.gallery-page-title h1 {
    font-size: 42px;
    font-weight: 600;
}
@media (max-width: 768px) {
    .nav-holder-1 {
        display: block;
    }

    .menu-nav-1 {
        display: block;
        flex-direction: column;
    }
}

.scrollup {
    display: none !important;
}

/* Hide desktop menu on mobile */
@media (max-width: 991px) {
    .nav-holder.nav-holder-1 {
        display: none !important;
    }
}



