/* =====================================================
   YOUR OWN PHOTOGRAPHY v2.0
   Premium Photography Website
===================================================== */

/* ================= RESET ================= */

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    scroll-behavior:smooth;
}

body{
    font-family:'Poppins',sans-serif;
    background:#0b0b0b;
    color:#fff;
    overflow-x:hidden;
    line-height:1.6;
}

img{
    max-width:100%;
    display:block;
}

a{
    text-decoration:none;
}

section{
    padding:100px 8%;
}

/* ================= PRELOADER ================= */

#preloader{
    position:fixed;
    inset:0;
    background:#000;
    display:flex;
    flex-direction:column;
    justify-content:center;
    align-items:center;
    z-index:99999;
}

#preloader img{
    width:100px;
    height:100px;
    border-radius:50%;
    border:3px solid #D4AF37;
    margin-bottom:20px;
}

#preloader h2{
    color:#D4AF37;
    font-family:'Cinzel',serif;
    margin-bottom:10px;
}

#preloader p{
    color:#ccc;
}

/* ================= NAVBAR ================= */

.navbar{
    position:fixed;
    top:0;
    left:0;
    width:100%;
    padding:18px 8%;
    display:flex;
    justify-content:space-between;
    align-items:center;
    background:rgba(0,0,0,.45);
    backdrop-filter:blur(12px);
    z-index:1000;
}

.logo{
    display:flex;
    align-items:center;
    gap:15px;
}

.logo img{
    width:60px;
    height:60px;
    border-radius:50%;
}

.logo h2{
    color:#D4AF37;
    font-size:24px;
    font-family:'Cinzel',serif;
}

.logo p{
    color:#bbb;
    font-size:13px;
}

nav{
    display:flex;
    gap:25px;
}

nav a{
    color:#fff;
    font-weight:500;
    transition:.3s;
}

nav a:hover{
    color:#D4AF37;
}

/* ================= HERO ================= */

.hero{
    position:relative;
    width:100%;
    height:100vh;
    display:flex;
    justify-content:center;
    align-items:center;
    text-align:center;
    background:url("hero.jpg") center/cover no-repeat;
}

.overlay{
    position:absolute;
    inset:0;
    background:rgba(0,0,0,.65);
}

.hero-content{
    position:relative;
    z-index:2;
    width:90%;
    max-width:900px;
}

.hero-content h3{
    color:#D4AF37;
    letter-spacing:5px;
    margin-bottom:15px;
}

.hero-content h1{
    font-family:'Cinzel',serif;
    font-size:64px;
    margin-bottom:20px;
}

.hero-content p{
    color:#ddd;
    font-size:20px;
    margin-bottom:35px;
}

/* ================= BUTTONS ================= */

.btn,
.btn-outline{
    display:inline-block;
    padding:15px 35px;
    border-radius:50px;
    margin:10px;
    transition:.35s;
    font-weight:600;
}

.btn{
    background:#D4AF37;
    color:#000;
}

.btn:hover{
    transform:translateY(-5px);
}

.btn-outline{
    border:2px solid #D4AF37;
    color:#fff;
}

.btn-outline:hover{
    background:#D4AF37;
    color:#000;
}
/* ================= SECTION TITLE ================= */

.section-title{
    text-align:center;
    margin-bottom:60px;
}

.section-title h5{
    color:#D4AF37;
    letter-spacing:4px;
    margin-bottom:10px;
    font-size:16px;
}

.section-title h2{
    font-size:42px;
    font-family:'Cinzel',serif;
}

/* ================= ABOUT ================= */

.about{
    background:#111;
}

.about-container{
    display:flex;
    justify-content:space-between;
    align-items:center;
    gap:60px;
    flex-wrap:wrap;
}

.about-image{
    flex:1;
    text-align:center;
}

.about-image img{
    width:100%;
    max-width:420px;
    border-radius:20px;
    border:3px solid #D4AF37;
    box-shadow:0 0 30px rgba(212,175,55,.25);
}

.about-content{
    flex:1;
}

.about-content h5{
    color:#D4AF37;
    letter-spacing:4px;
    margin-bottom:15px;
}

.about-content h2{
    font-size:42px;
    margin-bottom:20px;
    font-family:'Cinzel',serif;
}

.about-content p{
    color:#ccc;
    line-height:1.9;
    margin-bottom:30px;
}

/* ================= SERVICES ================= */

.services{
    background:#0b0b0b;
}

.service-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(260px,1fr));
    gap:30px;
}

.service-card{
    background:#161616;
    border:1px solid rgba(212,175,55,.2);
    border-radius:20px;
    padding:35px 25px;
    text-align:center;
    transition:.4s;
}

.service-card:hover{
    transform:translateY(-10px);
    border-color:#D4AF37;
    box-shadow:0 15px 35px rgba(212,175,55,.15);
}

.service-card h3{
    color:#D4AF37;
    margin-bottom:15px;
    font-size:22px;
}

.service-card p{
    color:#bbb;
    line-height:1.8;
}
/* ================= PORTFOLIO ================= */

.portfolio{
    background:#111;
}

.gallery{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(280px,1fr));
    gap:25px;
}

.gallery-item{
    position:relative;
    overflow:hidden;
    border-radius:20px;
    cursor:pointer;
}

.gallery-item img{
    width:100%;
    height:320px;
    object-fit:cover;
    transition:.5s;
}

.gallery-item:hover img{
    transform:scale(1.1);
}

.gallery-text{
    position:absolute;
    left:0;
    bottom:0;
    width:100%;
    padding:20px;
    background:linear-gradient(transparent,rgba(0,0,0,.85));
}

.gallery-text h3{
    color:#fff;
    font-size:22px;
}

.gallery-item::after{
    content:"View";
    position:absolute;
    top:50%;
    left:50%;
    transform:translate(-50%,-50%);
    background:#D4AF37;
    color:#000;
    padding:12px 28px;
    border-radius:30px;
    font-weight:bold;
    opacity:0;
    transition:.4s;
}

.gallery-item:hover::after{
    opacity:1;
}

/* ================= PRICING ================= */

.pricing{
    background:#0b0b0b;
}

.pricing-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(280px,1fr));
    gap:30px;
}

.price-card{
    background:#161616;
    border:1px solid rgba(212,175,55,.2);
    border-radius:20px;
    padding:40px 30px;
    text-align:center;
    transition:.4s;
}

.price-card:hover{
    transform:translateY(-10px);
    border-color:#D4AF37;
}

.featured{
    border:2px solid #D4AF37;
    transform:scale(1.03);
}

.price-card h3{
    color:#D4AF37;
    margin-bottom:15px;
}

.price-card h1{
    font-size:42px;
    margin-bottom:20px;
}

.price-card p{
    color:#ccc;
    margin:12px 0;
}

/* ================= TESTIMONIALS ================= */

.testimonials{
    background:#111;
    text-align:center;
}

.testimonial-card{
    max-width:750px;
    margin:auto;
    background:#161616;
    border:1px solid rgba(212,175,55,.2);
    border-radius:20px;
    padding:45px;
}

.testimonial-card p{
    color:#ddd;
    line-height:1.9;
    font-size:18px;
}

.testimonial-card h3{
    color:#D4AF37;
    margin-top:25px;
}
/* ================= BOOKING ================= */

.booking{
    background:#0b0b0b;
}

.booking-form{
    max-width:700px;
    margin:auto;
}

.booking-form input,
.booking-form select,
.booking-form textarea{
    width:100%;
    padding:16px;
    margin-bottom:20px;
    background:#161616;
    border:1px solid #333;
    border-radius:10px;
    color:#fff;
    font-size:16px;
    outline:none;
    transition:.3s;
}

.booking-form input:focus,
.booking-form select:focus,
.booking-form textarea:focus{
    border-color:#D4AF37;
    box-shadow:0 0 10px rgba(212,175,55,.2);
}

.booking-form textarea{
    height:160px;
    resize:none;
}

.booking-form .btn{
    width:100%;
    cursor:pointer;
    border:none;
}

/* ================= MAP ================= */

.map{
    background:#111;
    padding:0;
}

.map iframe{
    width:100%;
    height:400px;
    border:0;
}

/* ================= CONTACT ================= */

.contact{
    background:#111;
}

.contact-box{
    display:flex;
    justify-content:center;
    align-items:center;
}

.contact-info{
    text-align:center;
}

.contact-info h3{
    color:#D4AF37;
    font-size:30px;
    margin-bottom:20px;
}

.contact-info p{
    color:#ccc;
    margin:12px 0;
    font-size:18px;
}

/* ================= FOOTER ================= */

footer{
    background:#000;
    text-align:center;
    padding:40px 20px;
    border-top:1px solid rgba(212,175,55,.3);
}

footer h2{
    color:#D4AF37;
    font-family:'Cinzel',serif;
    margin-bottom:20px;
}

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

.social-links a{
    color:#D4AF37;
    border:1px solid #D4AF37;
    padding:10px 20px;
    border-radius:30px;
    transition:.3s;
}

.social-links a:hover{
    background:#D4AF37;
    color:#000;
}

footer p{
    color:#999;
}
/* ================= FLOATING WHATSAPP ================= */

.whatsapp{
    position:fixed;
    right:20px;
    bottom:20px;
    width:60px;
    height:60px;
    background:#25D366;
    color:#fff;
    border-radius:50%;
    display:flex;
    justify-content:center;
    align-items:center;
    font-size:30px;
    text-decoration:none;
    box-shadow:0 10px 25px rgba(0,0,0,.35);
    z-index:999;
    transition:.3s;
}

.whatsapp:hover{
    transform:scale(1.1);
}

/* ================= SCROLLBAR ================= */

::-webkit-scrollbar{
    width:10px;
}

::-webkit-scrollbar-track{
    background:#111;
}

::-webkit-scrollbar-thumb{
    background:#D4AF37;
    border-radius:20px;
}

/* ================= RESPONSIVE ================= */

@media (max-width:992px){

    .navbar{
        flex-direction:column;
        gap:15px;
        padding:15px 5%;
    }

    nav{
        flex-wrap:wrap;
        justify-content:center;
        gap:15px;
    }

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

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

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

}

@media (max-width:768px){

    section{
        padding:70px 6%;
    }

    .hero{
        height:90vh;
    }

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

    .hero-content h3{
        font-size:16px;
        letter-spacing:3px;
    }

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

    .btn,
    .btn-outline{
        display:block;
        width:100%;
        margin:10px 0;
        text-align:center;
    }

    .logo h2{
        font-size:20px;
    }

    .section-title h2{
        font-size:32px;
    }

    .about-content h2{
        font-size:32px;
    }

    .contact-info h3{
        font-size:24px;
    }

}

@media (max-width:480px){

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

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

    .price-card h1{
        font-size:34px;
    }

    .testimonial-card{
        padding:25px;
    }

    .whatsapp{
        width:55px;
        height:55px;
        font-size:26px;
    }

}
.btn:hover,
.btn-outline:hover{
    transform:translateY(-5px) scale(1.05);
    box-shadow:0 10px 25px rgba(212,175,55,.3);
}
.gallery-item:hover{
    box-shadow:0 20px 40px rgba(212,175,55,.25);
}
.price-card,
.service-card,
.testimonial-card{
    transition:all .4s ease;
}
section{
    animation:fadeUp .8s ease;
}

@keyframes fadeUp{

    from{
        opacity:0;
        transform:translateY(30px);
    }

    to{
        opacity:1;
        transform:translateY(0);
    }

}
/* ================= BACK TO TOP ================= */

#topBtn{
    position:fixed;
    right:20px;
    bottom:95px;
    width:50px;
    height:50px;
    background:#D4AF37;
    color:#000;
    border-radius:50%;
    display:flex;
    justify-content:center;
    align-items:center;
    text-decoration:none;
    font-size:22px;
    font-weight:bold;
    box-shadow:0 5px 15px rgba(0,0,0,.3);
    opacity:0;
    pointer-events:none;
    transition:.3s;
    z-index:998;
}

#topBtn.show{
    opacity:1;
    pointer-events:auto;
}

#topBtn:hover{
    transform:scale(1.1);
}
/* ================= MOBILE MENU ================= */

.menu-toggle{
    display:none;
    font-size:32px;
    color:#D4AF37;
    cursor:pointer;
}

@media(max-width:768px){

    .menu-toggle{
        display:block;
    }

    nav{
        position:absolute;
        top:80px;
        left:0;
        width:100%;
        background:#111;
        display:none;
        flex-direction:column;
        text-align:center;
        padding:20px 0;
    }

    nav.active{
        display:flex;
    }

    nav a{
        margin:15px 0;
    }

}
/* ================= LIGHTBOX ================= */

#lightbox{
    position:fixed;
    top:0;
    left:0;
    width:100%;
    height:100%;
    background:rgba(0,0,0,.95);
    display:none;
    justify-content:center;
    align-items:center;
    z-index:9999;
}

#lightbox img{
    max-width:90%;
    max-height:90%;
    border-radius:15px;
    border:3px solid #D4AF37;
}

#closeLightbox{
    position:absolute;
    top:20px;
    right:30px;
    font-size:45px;
    color:#fff;
    cursor:pointer;
}
/* ================= SCROLL ANIMATION ================= */

.hidden{
    opacity:0;
    transform:translateY(60px);
    transition:all .8s ease;
}

.show{
    opacity:1;
    transform:translateY(0);
}
/* ================= ACTIVE NAVBAR ================= */

nav a.active{
    color:#D4AF37;
    font-weight:bold;
    border-bottom:2px solid #D4AF37;
    padding-bottom:5px;
}
/* ================= STATISTICS ================= */

.stats{
    background:#111;
    padding:80px 8%;
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(200px,1fr));
    gap:30px;
    text-align:center;
}

.stat-box{
    background:#161616;
    padding:35px 20px;
    border-radius:20px;
    border:1px solid rgba(212,175,55,.2);
    transition:.3s;
}

.stat-box:hover{
    transform:translateY(-10px);
    border-color:#D4AF37;
    box-shadow:0 15px 30px rgba(212,175,55,.15);
}

.stat-box h2{
    font-size:42px;
    color:#D4AF37;
    margin-bottom:10px;
    font-family:'Cinzel',serif;
}

.stat-box p{
    color:#ccc;
    font-size:17px;
}
/* ================= TESTIMONIAL SLIDER ================= */

.testimonial-slider{
    position:relative;
    max-width:800px;
    margin:auto;
    min-height:280px;
}

.testimonial-card{
    display:none;
    animation:fade .8s ease;
}

.testimonial-card.active{
    display:block;
}

@keyframes fade{
    from{
        opacity:0;
        transform:translateY(20px);
    }
    to{
        opacity:1;
        transform:translateY(0);
    }
}
/* ================= SCROLLED NAVBAR ================= */

.navbar{
    transition:0.4s;
}

.navbar.scrolled{
    background:rgba(0,0,0,.95);
    backdrop-filter:blur(20px);
    box-shadow:0 5px 20px rgba(0,0,0,.4);
}
/* ================= LOADER BAR ================= */

.loader-bar{
    width:220px;
    height:8px;
    background:#222;
    border-radius:10px;
    margin-top:20px;
    overflow:hidden;
}

.loader-fill{
    width:0%;
    height:100%;
    background:#D4AF37;
    animation:loading 2s linear forwards;
}

@keyframes loading{
    from{
        width:0%;
    }
    to{
        width:100%;
    }
}
/* ================= SCROLL PROGRESS BAR ================= */

#progressBar{
    position:fixed;
    top:0;
    left:0;
    width:0%;
    height:4px;
    background:#D4AF37;
    z-index:999999;
}
/* ================= SCROLL PROGRESS BAR ================= */

#progressBar{
    position: fixed;
    top: 0;
    left: 0;
    width: 0%;
    height: 4px;
    background: #D4AF37;
    z-index: 999999;
    transition: width 0.2s ease;
}
/* ===== CONTACT FORM ===== */

.contact-box{
    display:flex;
    gap:40px;
    justify-content:space-between;
    align-items:flex-start;
    flex-wrap:wrap;
}

.contact-info,
.contact-form{
    flex:1;
    min-width:300px;
}

.contact-form input,
.contact-form textarea{
    width:100%;
    padding:15px;
    margin-bottom:15px;
    border:none;
    border-radius:10px;
    font-size:16px;
}

.contact-form textarea{
    height:120px;
    resize:none;
}

.contact-form .btn{
    width:100%;
}
