/*========================================
        GOOGLE FONT
========================================*/

@import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@400;500;600;700&family=Poppins:wght@300;400;500;600;700&display=swap');

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

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

html{
    scroll-behavior:smooth;
}

body{
    font-family:'Poppins',sans-serif;
    background:#090909;
    color:#fff;
    overflow-x:hidden;
}

/*========================================
        VARIABLES
========================================*/

:root{

    --gold:#D4AF37;
    --gold-light:#F0D777;

    --silver:#D9D9D9;

    --black:#090909;

    --card:#111111;

    --border:rgba(212,175,55,.18);

}

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

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

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

::-webkit-scrollbar-thumb{
    background:var(--gold);
    border-radius:20px;
}

/*========================================
        COMMON
========================================*/

section{

    padding:110px 8%;

}

img{

    width:100%;

    display:block;

}

ul{

    list-style:none;

}

a{

    text-decoration:none;

}

.gold{

    color:var(--gold);

}

.silver{

    color:var(--silver);

}

.section-heading{

    text-align:center;

    margin-bottom:70px;

}

.section-heading h2{

    font-family:'Cinzel',serif;

    color:var(--gold);

    font-size:48px;

    letter-spacing:4px;

}

.section-heading span{

    width:120px;

    height:3px;

    background:var(--gold);

    display:inline-block;

    margin-top:18px;

    border-radius:50px;

}

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

header{

    position:fixed;

    top:0;

    left:0;

    width:100%;

    padding:20px 8%;

    display:flex;

    justify-content:space-between;

    align-items:center;

    background:rgba(0,0,0,.35);

    backdrop-filter:blur(18px);

    border-bottom:1px solid rgba(212,175,55,.08);

    z-index:9999;

    transition:.4s;

}

.logo{

    font-size:34px;

    font-family:'Cinzel',serif;

    font-weight:700;

    letter-spacing:3px;

}

nav ul{

    display:flex;

    gap:38px;

}

nav ul li a{

    color:#fff;

    font-size:16px;

    position:relative;

    transition:.35s;

}

nav ul li a:hover{

    color:var(--gold);

}

nav ul li a::after{

    content:"";

    position:absolute;

    left:0;

    bottom:-8px;

    width:0;

    height:2px;

    background:var(--gold);

    transition:.35s;

}

nav ul li a:hover::after{

    width:100%;

}

/*========================================
        BOOK BUTTON
========================================*/

.book-btn{

    padding:13px 30px;

    border:1px solid var(--gold);

    border-radius:40px;

    color:var(--gold);

    font-weight:500;

    transition:.35s;

}

.book-btn:hover{

    background:var(--gold);

    color:#111;

    box-shadow:0 0 25px rgba(212,175,55,.45);

}

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

.hero{
    position:relative;
    min-height:100vh;
    display:flex;
    align-items:center;
    overflow:hidden;

    background:
        linear-gradient(
            90deg,
            rgba(0,0,0,.92) 0%,
            rgba(0,0,0,.82) 35%,
            rgba(0,0,0,.45) 60%,
            rgba(0,0,0,.10) 100%
        ),
        url("camera.png");

    background-repeat:no-repeat;
    background-size:cover;
    background-position:center;
}


.hero-overlay{

    position:absolute;

    inset:0;

    background:rgba(0,0,0,.28);

}

.hero-content{
    width:100%;
    max-width:1400px;
    margin:auto;
    position:relative;
    z-index:5;
}

.hero-text{
    width:48%;
    max-width:650px;
}

.tagline{

    color:var(--gold);

    letter-spacing:6px;

    font-size:15px;

    margin-bottom:18px;

}

.hero-text h1{

    font-family:'Cinzel',serif;

    font-size:86px;

    line-height:1.05;

    margin-bottom:18px;

}

.hero-text h2{

    font-size:40px;

    color:var(--silver);

    margin-bottom:28px;

    font-weight:500;

}

.hero-text p{

    color:#d2d2d2;

    line-height:34px;

    font-size:18px;

    max-width:620px;

}

.hero-buttons{

    display:flex;

    gap:18px;

    margin-top:40px;

}

.primary-btn,

.secondary-btn{

    padding:16px 34px;

    border-radius:50px;

    font-weight:600;

    transition:.35s;

}

.primary-btn{

    background:var(--gold);

    color:#111;

}

.primary-btn:hover{

    transform:translateY(-4px);

    box-shadow:0 0 28px rgba(212,175,55,.45);

}

.secondary-btn{

    border:1px solid var(--gold);

    color:var(--gold);

}

.secondary-btn:hover{

    background:var(--gold);

    color:#111;

}

@keyframes float{

    0%{

        transform:translateY(0);

    }

    50%{

        transform:translateY(-18px);

    }

    100%{

        transform:translateY(0);

    }

}

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

.about{
    background:#0d0d0d;
    position:relative;
}

.about::before{
    content:"";
    position:absolute;
    left:0;
    top:0;
    width:100%;
    height:1px;
    background:linear-gradient(to right,transparent,var(--gold),transparent);
}

.about-container{
    max-width:1400px;
    margin:auto;
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:80px;
    align-items:center;
}

.about-image{
    overflow:hidden;
    border-radius:22px;
    border:1px solid rgba(212,175,55,.25);
    box-shadow:0 0 35px rgba(0,0,0,.45);
}

.about-image img{
    transition:.6s;
}

.about-image:hover img{
    transform:scale(1.06);
}

.about-content h3{
    font-family:'Cinzel',serif;
    color:var(--gold);
    font-size:46px;
    margin-bottom:25px;
    line-height:1.3;
}

.about-content p{
    color:#d0d0d0;
    font-size:18px;
    line-height:34px;
}

.stats{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:25px;
    margin-top:45px;
}

.stat-box{
    background:#111;
    border:1px solid rgba(212,175,55,.15);
    border-radius:18px;
    padding:35px 20px;
    text-align:center;
    transition:.35s;
}

.stat-box:hover{
    transform:translateY(-10px);
    border-color:var(--gold);
    box-shadow:0 0 25px rgba(212,175,55,.25);
}

.stat-box h4{
    color:var(--gold);
    font-size:40px;
    margin-bottom:15px;
}

.stat-box i{
    font-size:42px;
    color:var(--gold);
    margin-bottom:15px;
}

.stat-box p{
    line-height:28px;
    font-size:16px;
}

/*========================================
            PORTFOLIO
========================================*/

.portfolio{
    background:#090909;
}

.portfolio-text{
    max-width:900px;
    margin:0 auto 90px;
    text-align:center;
    color:#cfcfcf;
    font-size:18px;
    line-height:34px;
}

/*========================================
            GALLERY
========================================*/

.gallery-section{
    margin-top:110px;
}

.gallery-title{
    text-align:center;
    font-family:'Cinzel',serif;
    color:var(--gold);
    font-size:42px;
    margin-bottom:60px;
    letter-spacing:2px;
}

.gallery-category{
    margin-bottom:70px;
}

.gallery-category h3{
    color:#fff;
    font-size:30px;
    border-left:4px solid var(--gold);
    padding-left:18px;
    margin-bottom:30px;
}

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

.gallery-card{
    position:relative;
    overflow:hidden;
    border-radius:18px;
    background:#111;
    border:1px solid rgba(212,175,55,.18);
    transition:.4s;
    cursor:pointer;
}

.gallery-card:hover{
    border-color:var(--gold);
    transform:translateY(-8px);
    box-shadow:0 12px 35px rgba(0,0,0,.45);
}

.gallery-card img{
    width:100%;
    height:340px;
    object-fit:cover;
    transition:.6s;
}

.gallery-card:hover img{
    transform:scale(1.10);
}

.overlay{
    position:absolute;
    inset:0;
    display:flex;
    justify-content:center;
    align-items:center;
    background:linear-gradient(
        rgba(0,0,0,.05),
        rgba(0,0,0,.75)
    );
    opacity:0;
    transition:.4s;
}

.gallery-card:hover .overlay{
    opacity:1;
}

.overlay span{
    padding:12px 30px;
    border:1px solid var(--gold);
    border-radius:40px;
    color:var(--gold);
    font-weight:600;
    letter-spacing:2px;
    transition:.3s;
}

.overlay span:hover{
    background:var(--gold);
    color:#111;
}

/* Decorative line */

.gallery-section::after{
    content:"";
    display:block;
    width:120px;
    height:2px;
    background:linear-gradient(to right,transparent,var(--gold),transparent);
    margin:70px auto 0;
}

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

.services{
    background:#0d0d0d;
    position:relative;
}

.service-grid{
    max-width:1400px;
    margin:auto;
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:35px;
}

.service-card{
    background:#111;
    padding:45px 30px;
    border-radius:20px;
    border:1px solid rgba(212,175,55,.15);
    text-align:center;
    transition:.35s;
    position:relative;
    overflow:hidden;
}

.service-card::before{
    content:"";
    position:absolute;
    left:0;
    top:0;
    width:100%;
    height:4px;
    background:var(--gold);
    transform:scaleX(0);
    transition:.35s;
}

.service-card:hover::before{
    transform:scaleX(1);
}

.service-card:hover{
    transform:translateY(-12px);
    border-color:var(--gold);
    box-shadow:0 15px 35px rgba(0,0,0,.45);
}

.service-card i{
    font-size:52px;
    color:var(--gold);
    margin-bottom:20px;
}

.service-card h3{
    font-size:25px;
    margin-bottom:15px;
}

.service-card p{
    color:#cfcfcf;
    line-height:30px;
}

/*========================================
            WHY CHOOSE US
========================================*/

.why-us{
    background:#090909;
}

.why-grid{
    max-width:1400px;
    margin:auto;
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:30px;
}

.why-card{
    background:#111;
    padding:40px;
    border-radius:20px;
    text-align:center;
    border:1px solid rgba(212,175,55,.15);
    transition:.35s;
}

.why-card:hover{
    transform:translateY(-10px);
    border-color:var(--gold);
    box-shadow:0 12px 30px rgba(212,175,55,.18);
}

.why-card i{
    font-size:46px;
    color:var(--gold);
    margin-bottom:18px;
}

.why-card h3{
    font-size:23px;
}

/*========================================
        WORKING PROCESS
========================================*/

.process{
    background:#0d0d0d;
}

.process-container{
    max-width:1400px;
    margin:auto;
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:30px;
}

.process-card{
    background:#111;
    border-radius:20px;
    border:1px solid rgba(212,175,55,.15);
    padding:35px;
    transition:.35s;
}

.process-card:hover{
    transform:translateY(-10px);
    border-color:var(--gold);
}

.number{
    width:65px;
    height:65px;
    background:var(--gold);
    color:#111;
    border-radius:50%;
    display:flex;
    justify-content:center;
    align-items:center;
    font-weight:bold;
    font-size:24px;
    margin-bottom:22px;
}

.process-card h3{
    margin-bottom:15px;
    font-size:25px;
}

.process-card p{
    color:#cfcfcf;
    line-height:30px;
}

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

.contact{
    background:#090909;
}

.contact-wrapper{
    max-width:1100px;
    margin:auto;
}

.contact-info{

    width:100%;

    background:#111;

    border-radius:24px;

    padding:60px;

    border:1px solid rgba(212,175,55,.18);

    box-shadow:0 10px 35px rgba(0,0,0,.45);

}

.contact-info h3{

    font-family:'Cinzel',serif;

    font-size:48px;

    color:var(--gold);

    margin-bottom:20px;

}

.contact-info>p{

    color:#d4d4d4;

    line-height:34px;

    margin-bottom:35px;

}

.contact-item{

    display:flex;

    align-items:center;

    gap:20px;

    margin:24px 0;

    font-size:19px;

}

.contact-item i{

    width:55px;

    height:55px;

    display:flex;

    justify-content:center;

    align-items:center;

    border-radius:50%;

    border:1px solid var(--gold);

    color:var(--gold);

    font-size:22px;

}

.social-icons{

    margin-top:45px;

}

.social-icons a{

    display:inline-flex;

    width:58px;

    height:58px;

    justify-content:center;

    align-items:center;

    border-radius:50%;

    border:1px solid var(--gold);

    color:var(--gold);

    margin-right:18px;

    transition:.35s;

}

.social-icons a:hover{

    background:var(--gold);

    color:#111;

    transform:translateY(-5px);

}

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

footer{

    background:#050505;

    border-top:1px solid rgba(212,175,55,.18);

    text-align:center;

    padding:80px 20px 40px;

}

footer h2{

    font-family:'Cinzel',serif;

    font-size:52px;

    margin-bottom:20px;

    letter-spacing:3px;

}

footer p{

    color:#bfbfbf;

    margin:12px 0;

    line-height:30px;

}

.footer-social{

    margin:35px 0;

}

.footer-social a{

    display:inline-flex;

    justify-content:center;

    align-items:center;

    width:60px;

    height:60px;

    margin:0 10px;

    border-radius:50%;

    border:1px solid var(--gold);

    color:var(--gold);

    font-size:24px;

    transition:.35s;

}

.footer-social a:hover{

    background:var(--gold);

    color:#111;

    transform:translateY(-6px);

    box-shadow:0 0 20px rgba(212,175,55,.35);

}

.copyright{

    margin-top:25px;

    font-size:15px;

    color:#8d8d8d;

}

/*========================================
        FLOATING WHATSAPP
========================================*/

.floating-whatsapp{

    position:fixed;

    right:25px;

    bottom:25px;

    width:65px;

    height:65px;

    display:flex;

    justify-content:center;

    align-items:center;

    background:#25D366;

    color:#fff;

    border-radius:50%;

    font-size:34px;

    box-shadow:0 10px 30px rgba(0,0,0,.45);

    z-index:999;

    transition:.35s;

}

.floating-whatsapp:hover{

    transform:scale(1.1);

}

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

#topBtn{

    position:fixed;

    right:25px;

    bottom:105px;

    width:55px;

    height:55px;

    border:none;

    border-radius:50%;

    background:var(--gold);

    color:#111;

    font-size:20px;

    cursor:pointer;

    display:none;

    transition:.35s;

    z-index:999;

}

#topBtn:hover{

    transform:translateY(-5px);

}

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

#lightbox{

    position:fixed;

    inset:0;

    display:none;

    justify-content:center;

    align-items:center;

    background:rgba(0,0,0,.95);

    z-index:10000;

}

#lightbox img{

    max-width:90%;

    max-height:90%;

    border:3px solid var(--gold);

    border-radius:15px;

    box-shadow:0 0 35px rgba(212,175,55,.35);

}

#closeLightbox{

    position:absolute;

    top:25px;

    right:35px;

    font-size:60px;

    color:#fff;

    cursor:pointer;

}

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

@media(max-width:1100px){

.hero-content{

    gap:50px;

}

.hero-text h1{

    font-size:70px;

}

.hero-text h2{

    font-size:34px;

}

.about-container{

    grid-template-columns:1fr;

}

.stats{

    grid-template-columns:repeat(3,1fr);

}

.service-grid,

.why-grid,

.process-container{

    grid-template-columns:repeat(2,1fr);

}

.gallery-card img{

    height:260px;

}

}

@media(max-width:768px){

header{

    padding:15px 5%;

    flex-wrap:wrap;

}

.logo{

    font-size:24px;

}

nav{

    width:100%;

    margin-top:15px;

}

nav ul{

    justify-content:center;

    flex-wrap:wrap;

    gap:18px;

}

.book-btn{

    display:none;

}

.hero{

    padding-top:150px;

}

.hero-content{

    flex-direction:column;

    text-align:center;

}

.hero-text{

    width:100%;

}

.hero-text h1{

    font-size:52px;

}

.hero-text h2{

    font-size:28px;

}

.hero-text p{

    margin:auto;

}

.hero-buttons{

    justify-content:center;

    flex-wrap:wrap;

}

.stats{

    grid-template-columns:1fr;

}

.gallery-grid{

    grid-template-columns:repeat(3,1fr);

    gap:10px;

}

.gallery-card img{

    height:120px;

}

.service-grid,

.why-grid,

.process-container{

    grid-template-columns:1fr;

}

.contact-info{

    padding:35px;

}

.contact-info h3{

    font-size:34px;

}

footer h2{

    font-size:38px;

}

}

@media(max-width:480px){

section{

    padding:70px 4%;

}

.section-heading h2{

    font-size:34px;

}

.hero-text h1{

    font-size:40px;

}

.hero-text h2{

    font-size:22px;

}

.hero-buttons{

    flex-direction:column;

}

.primary-btn,

.secondary-btn{

    width:100%;

    text-align:center;

}

.gallery-grid{

    grid-template-columns:repeat(3,1fr);

    gap:8px;

}

.gallery-card{

    border-radius:10px;

}

.gallery-card img{

    height:90px;

}

.contact-info{

    padding:25px;

}

.contact-item{

    font-size:16px;

}

.contact-item i{

    width:45px;

    height:45px;

    font-size:18px;

}

.floating-whatsapp{

    width:55px;

    height:55px;

    font-size:28px;

}

}

.hero::before{
    content:"";
    position:absolute;
    inset:0;
    background:linear-gradient(
        to right,
        rgba(0,0,0,.75),
        rgba(0,0,0,.45),
        rgba(0,0,0,.15)
    );
}

@media(max-width:768px){

.hero{
    background-position:70% center;
}

.hero-text{
    width:100%;
    text-align:center;
}

.hero-buttons{
    justify-content:center;
}

}