body{
    margin:0;
    font-family:'Montserrat',sans-serif;
    background:#f5f5f5;
    color:#333;
}

/* NAVBAR */
.navbar{
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:15px 40px;
    background:#111;
    color:white;
    flex-wrap:wrap;
}

.nav-links{
    list-style:none;
    display:flex;
    gap:20px;
    flex-wrap:wrap;
}

.nav-links a{
    color:white;
    text-decoration:none;
}

/* HERO */
.hero{
    height:90vh;
    display:flex;
    align-items:center;
    justify-content:center;
    position:relative;
    color:white;
    text-align:center;
    overflow:hidden;
}

/* 🔥 NEW BANNER SYSTEM */
.desktop-banner,
.mobile-banner{
    position:absolute;
    top:0;
    left:0;
    width:100%;
    height:100%;
    object-fit:cover;
    z-index:0;
}

/* Hide mobile banner by default */
.mobile-banner{
    display:none;
}

/* Mobile view */
@media (max-width:768px){
    .desktop-banner{
        display:none;
    }
    .mobile-banner{
        display:block;
    }
}

.hero-overlay{
    position:absolute;
    top:0;
    left:0;
    width:100%;
    height:100%;
    background:rgba(0,0,0,0.5);
    z-index:1;
}

.hero-content{
    position:relative;
    z-index:2;
}

.hero-content h1{
    font-size:60px;
}

.hero-content p{
    font-size:20px;
}

.btn-primary{
    background:#ff6b00;
    color:white;
    padding:12px 25px;
    text-decoration:none;
    border-radius:5px;
}

/* CATEGORIES */
.categories{
    text-align:center;
    margin:40px 0;
}

.categories button{
    background:#ff6b35;
    color:white;
    border:none;
    padding:10px 18px;
    margin:5px;
    font-size:16px;
    border-radius:25px;
    cursor:pointer;
}

.categories button.active {
    background: #111;
    color: white;
}

/* GALLERY */
.gallery-container{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:20px;
    padding:40px;
}

.photo-card{
    background:white;
    border-radius:10px;
    overflow:hidden;
    box-shadow:0 4px 10px rgba(0,0,0,0.1);
    text-align:center;
}

.photo-card img{
    width:100%;
    height:auto;
    display:block;
}

/* ACTIONS */
.photo-actions{
    display:flex;
    justify-content:center;
    gap:10px;
    margin-bottom:10px;
}

.like-btn{
    border:none;
    background:white;
    font-size:20px;
    cursor:pointer;
    transition: transform 0.2s ease;
}

.like-btn.liked{
    transform: scale(1.5);
    color: #ff2d55;
}

.btn-buy{
    background:#111;
    color:white;
    border:none;
    padding:8px 15px;
    cursor:pointer;
    border-radius:5px;
}

/* SECTIONS */
.about-section{
    padding:60px 20px;
    text-align:center;
    background:white;
}

.contact-section{
    padding:60px 20px;
    text-align:center;
}

.contact-links{
    display:flex;
    justify-content:center;
    gap:20px;
    flex-wrap:wrap;
}

.contact-card{
    text-decoration:none;
    background:white;
    padding:20px;
    border-radius:10px;
    box-shadow:0 4px 10px rgba(0,0,0,0.1);
    color:#333;
}

footer{
    text-align:center;
    padding:20px;
    background:#111;
    color:white;
}

/* IMAGE VIEWER */
.image-viewer{
    display:none;
    position:fixed;
    top:0;
    left:0;
    width:100%;
    height:100%;
    background:rgba(0,0,0,0.9);
    justify-content:center;
    align-items:center;
    z-index:9999;
}

.image-viewer img{
    max-width:90%;
    max-height:90%;
    object-fit:contain;
}

.close-viewer{
    position:absolute;
    top:20px;
    right:35px;
    font-size:40px;
    color:white;
    cursor:pointer;
}

/* PAYMENT */
.payment-popup{
    display:none;
    position:fixed;
    top:0;
    left:0;
    width:100%;
    height:100%;
    background:rgba(0,0,0,0.7);
    justify-content:center;
    align-items:center;
    z-index:9999;
}

.payment-box{
    background:white;
    padding:30px;
    border-radius:10px;
    text-align:center;
    width:320px;
}

.upi-qr{
    width:180px;
    margin:10px 0;
}

.disclaimer{
    font-size:14px;
    color:#555;
    margin-top:10px;
}

.close-pay{
    margin-top:10px;
    padding:8px 15px;
    border:none;
    background:#333;
    color:white;
    cursor:pointer;
}

/* WATERMARK */
.image-container {
    position: relative;
    display: inline-block;
    cursor: pointer;
}

.image-container img {
    width: 100%;
    display: block;
}

.watermark {
    position: absolute;
    bottom: 10px;
    right: 10px;
    color: white;
    font-size: 14px;
    background: rgba(0, 0, 0, 0.5);
    padding: 5px 10px;
    border-radius: 5px;
    opacity: 0;
    transition: 0.3s;
}

/* 🔥 MOBILE RESPONSIVE */
@media (max-width: 768px){

    .navbar{
        flex-direction:column;
        text-align:center;
    }

    .nav-links{
        justify-content:center;
        padding-top:10px;
    }

    .hero{
        height:60vh;
    }

    .hero-content h1{
        font-size:28px;
    }

    .hero-content p{
        font-size:16px;
    }

    .gallery-container{
        grid-template-columns:1fr;
        padding:20px;
    }

    .photo-card{
        margin-bottom:20px;
    }

    .payment-box{
        width:90%;
    }

}
img {
    -webkit-user-drag: none;
    user-select: none;
    pointer-events: auto;
}

body {
    -webkit-touch-callout: none;
}
img {
    -webkit-user-drag: none;
}
