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

html{
    scroll-behavior:smooth;
}

html,
body{
    width:100%;
    max-width:100%;
    overflow-x:clip;
}

body{
    font-family:'Poppins',sans-serif;
    background:#111;
    color:#fff;
    line-height:1.5;
    font-size:14px;
    overflow-x:hidden;
}

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

body::before{
    content:"";
    position:fixed;
    inset:0;
    background:
    linear-gradient(rgba(0,0,0,.58),rgba(0,0,0,.58)),
    url("../assets/images/background.webp");
    background-size:cover;
    background-position:center;
    filter:blur(2px);
    overflow-x: clip;
    z-index:-3;
}

.background-overlay{
    position:fixed;
    inset:0;
    background:
    radial-gradient(circle at top,
    rgba(222,170,76,.12),
    transparent 45%);
    z-index:-2;
}

.media-page{
    max-width:920px;
    margin:auto;
    padding:45px 18px 60px;
}

.back-button{
    position:fixed;
    top:15px;
    right:15px;
    left:auto;
    padding:7px 16px;
    background:#ffffff;
    color:#000000;
    border-radius:999px;
    font-size:14px;
    text-decoration:none;
    z-index:1000;
    transition:.25s;
}

.back-button:hover{
    background:#FF6B6B;
    transform:translateY(-2px);
    background:#FA8787;
}

.hero-section{
    text-align:center;
    margin-bottom:38px;
}

.hero-tag{
    display:inline-block;

    color:#FF6B6B;

    letter-spacing:2px;
    text-transform:uppercase;

    font-size:.8rem;
    font-weight:500;

    margin-bottom:10px;
}

.hero-content h1{
    font-family:'Poppins',sans-serif;
    font-size:1.8rem;
    font-weight:600;
    color:#fff;
    margin-bottom:12px;
    letter-spacing:0;
}

.hero-content h1::after{

    content:"";

    display:block;

    width:60px;
    height:2px;

    margin:12px auto 0;

    background:#FF6B6B;

}

.hero-description{

    max-width:650px;

    margin:auto;

    color:#ddd;

    font-size:.86rem;

}

.project-card{

    background:rgba(255,255,255,.06);

    backdrop-filter:blur(16px);

    padding:22px;

    box-shadow:0 12px 35px rgba(0,0,0,.28);

    margin-bottom:40px;

}

.project-header{

    display:flex;

    justify-content:space-between;

    align-items:flex-end;

    gap:15px;

    margin-bottom:20px;

}

.project-header h2{

    color:white;

    font-size:1.45rem;

    font-family:'Poppins',sans-serif;

}

.project-location{

    display:block;

    margin-top:4px;

    color:#FF6B6B;

    font-size:.82rem;

    letter-spacing:1px;

}

.photo-grid{

    display:grid;

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

    gap:15px;

    width:75%;
    margin:20px auto 0;

}

.photo-item{

    overflow:hidden;

    cursor:pointer;

    position:relative;

    background:#1b1b1b;

    transition:.35s;

    aspect-ratio:1/1;

}

.photo-item:hover{

    transform:translateY(-5px);

}

.gallery-image{

    width:100%;
    height:100%;
    object-fit:cover;
    transition:.45s;

}

.photo-item:hover .gallery-image{

    transform:scale(1.08);

}

.coming-soon{

    display:flex;

    align-items:center;

    justify-content:center;

    text-align:center;

    background:rgba(255,255,255,.08);

    border:1px solid rgba(255,255,255,.08);

    aspect-ratio:1/1;

}

.coming-soon:hover{

    background:#FF6B6B;

}

.coming-content h3{

    color:white;

    font-size:1rem;

    margin-bottom:8px;

}

.coming-content p{

    color:#ddd;

    font-size:.82rem;

}

.coming-soon:hover p,
.coming-soon:hover h3{

    color:#111;

}

.gallery-lightbox{

    position:fixed;
    inset:0;

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

    display:flex;

    justify-content:center;
    align-items:center;

    opacity:0;
    visibility:hidden;

    transition:.35s;

    z-index:9999;

}

.gallery-lightbox.active{

    opacity:1;
    visibility:visible;

}

.gallery-lightbox img{

    max-width:88vw;
    max-height:88vh;

    object-fit:contain;

    box-shadow:0 18px 45px rgba(0,0,0,.55);

    animation:zoomImage .35s ease;

}

@keyframes zoomImage{

    from{

        transform:scale(.9);
        opacity:0;

    }

    to{

        transform:scale(1);
        opacity:1;

    }

}

.close-gallery{

    position:absolute;

    top:20px;
    right:22px;

    width:45px;
    height:45px;

    border:none;

    background:rgba(255,255,255,.08);

    color:white;

    font-size:32px;

    cursor:pointer;

    transition:.25s;

}

.close-gallery:hover{

    background:#FF6B6B;
    color:#111;

}

.gallery-prev,
.gallery-next{

    position:absolute;

    top:50%;

    transform:translateY(-50%);

    width:55px;
    height:55px;

    border:none;

    background:rgba(255,255,255,.08);

    color:white;

    font-size:28px;

    cursor:pointer;

    transition:.25s;

}

.gallery-prev{

    left:25px;

}

.gallery-next{

    right:25px;

}

.gallery-prev:hover,
.gallery-next:hover{

    background:#FF6B6B;

    color:#111;

}

.featured-photographer{

    width:100%;
    display:flex;
    justify-content:flex-end;
    align-items:center;
    gap:10px;

    max-width:920px;
    margin:35px auto 18px;

    padding:0 18px;

}

.featured-photographer span{

    color:#ddd;
    font-size:.85rem;

}

.featured-photographer img{

    width:58px;
    height:58px;

    border-radius:50%;
    object-fit:cover;

    cursor:pointer;

    border:2px solid rgba(255,255,255,.2);

    transition:.3s;

}

.featured-photographer img:hover{

    transform:scale(1.08);
    border-color:#FF6B6B;

}

.photographer-popup{

    position:fixed;
    inset:0;

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

    display:flex;
    justify-content:center;
    align-items:center;

    opacity:0;
    visibility:hidden;

    transition:.3s;

    z-index:9999;

}

.photographer-popup.active{

    opacity:1;
    visibility:visible;

}

.popup-card{

    width:300px;
    padding:30px 28px;

    background:rgba(25,25,25,.88);
    backdrop-filter:blur(20px);
    -webkit-backdrop-filter:blur(20px);

    border:1px solid rgba(255,255,255,.08);

    text-align:center;

    box-shadow:
        0 25px 60px rgba(0,0,0,.55),
        inset 0 1px rgba(255,255,255,.06);

    animation:popupShow .35s ease;
}

.popup-avatar{

    width:95px;
    height:95px;

    margin:0 auto 18px;

    object-fit:cover;

    border-radius:50%;

    border:3px solid #FF6B6B;

    box-shadow:
        0 10px 30px rgba(255,107,107,.35);

}

.popup-card h3{

    font-size:1.3rem;
    font-weight:600;

    color:#fff;

    margin-bottom:22px;

}

.popup-contact{

    display:inline-flex;

    margin:0 10px;

}

.popup-contact a{

    width:58px;
    height:58px;

    display:flex;
    align-items:center;
    justify-content:center;

    border-radius:50%;

    background:rgba(255,255,255,.06);

    border:1px solid rgba(255,255,255,.08);

    transition:.3s;

}

.popup-contact img{

    width:28px;
    height:28px;

}

.popup-contact a:hover{

    background:#FF6B6B;

    transform:translateY(-4px) scale(1.08);

}

@keyframes popupShow{

    from{

        opacity:0;
        transform:translateY(18px) scale(.92);

    }

    to{

        opacity:1;
        transform:translateY(0) scale(1);

    }

}

footer{
    height:35px;
    display:flex;
    align-items:center;
    justify-content:center;
    color:#fff;
    background:rgba(0,0,0,.35);
    backdrop-filter:blur(12px);
    font-size:12px;
}

footer a{

    color:white;

    text-decoration:none;

    transition:.25s;

}

footer a:hover{

    color:#FF6B6B;

}

body.lightbox-open .media-page,
body.lightbox-open .featured-photographer,
body.lightbox-open footer,
body.lightbox-open .back-button{
    filter:blur(10px);
    transition:.35s ease;
    pointer-events:none;
}

.gallery-lightbox{
    backdrop-filter:blur(14px);
    -webkit-backdrop-filter:blur(14px);
    background:rgba(0,0,0,.45);
}

.explore-services{

    max-width:920px;
    margin:40px auto 50px;
    padding:35px 25px;

    text-align:center;

    background:rgba(255,255,255,.05);
    backdrop-filter:blur(14px);

    border:1px solid rgba(255,107,107,.25);

    position:relative;
    overflow:hidden;

}

.explore-services::before{

    content:"";

    position:absolute;

    width:220px;
    height:220px;

    background:#FF6B6B;

    filter:blur(120px);

    opacity:.12;

    top:-90px;
    right:-90px;

}

.explore-services>*{

    position:relative;
    z-index:2;

}

.explore-services h2{

    color:white;
    font-size:1.35rem;
    margin-bottom:15px;

}

.explore-services p{

    color:#ddd;
    max-width:620px;
    margin:0 auto 25px;
    font-size:.85rem;
    line-height:1.7;

}

.explore-btn{

    display:inline-block;

    padding:12px 28px;

    text-decoration:none;

    color:white;

    border:1px solid #FF6B6B;

    transition:.3s;

}

.explore-btn:hover{

    background:#FF6B6B;
    color:#111;
    transform:translateY(-3px);

}

#galleryImage{
    touch-action: pan-y;
    -webkit-user-select:none;
    user-select:none;
}

@media(max-width:768px){

    .explore-services{

        margin:30px 12px 40px;
        padding:25px 18px;

    }

    .explore-services h2{

        font-size:1.15rem;

    }

    .explore-services p{

        font-size:.8rem;

    }

.media-page{

    padding:65px 12px 45px;

}

.hero-content h1{

    font-size:1.55rem;

}

.hero-description{

    font-size:.8rem;

}

.project-card{

    padding:15px;

}

.project-header{

    flex-direction:column;

    align-items:flex-start;

    gap:8px;

}

.project-header h2{

    font-size:1.2rem;

}

.photo-grid{

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

    gap:10px;

}

.coming-content h3{

    font-size:.92rem;

}

.coming-content p{

    font-size:.75rem;

}

.gallery-lightbox img{

    max-width:95vw;
    max-height:80vh;

}

.gallery-prev,
.gallery-next{

    width:42px;
    height:42px;

    font-size:22px;

}

.gallery-prev{
    left:max(5px, env(safe-area-inset-left));
}

.gallery-next{
    right:max(5px, env(safe-area-inset-right));
}

.close-gallery{

    top:12px;
    right:12px;

    width:40px;
    height:40px;

    font-size:28px;

}

}

@media(max-width:520px){

.photo-grid{

    width:75%;
    grid-template-columns:repeat(3,1fr);
    gap:10px;

}

.hero-tag{

    font-size:.72rem;

    letter-spacing:1.5px;

}

.hero-content h1{

    font-size:1.35rem;

}

.back-button{

    width:72px;
    height:32px;

    font-size:13px;

}

}


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

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

::-webkit-scrollbar-thumb{
    background:#342b2b;
}

::-webkit-scrollbar-thumb:hover{
    background:#3d3131;
}


::selection{
    background:#FF6B6B;
    color:#111;
}


.back-button:focus,
.gallery-prev:focus,
.gallery-next:focus,
.close-gallery:focus{
    outline:2px solid #FF6B6B;
    outline-offset:3px;
}


.gallery-image{
    background:#1b1b1b;
}


.back-button,
.photo-item,
.gallery-image,
.coming-soon,
.gallery-prev,
.gallery-next,
.close-gallery,
footer a{
    transition:.3s ease;
}


.project-card{
    position:relative;
    overflow:hidden;
}

.project-card::before{

    content:"";

    position:absolute;

    width:220px;
    height:220px;

    background:#FF6B6B;

    filter:blur(120px);

    opacity:.08;

    top:-90px;
    right:-90px;

    pointer-events:none;

}


.hero-section{
    animation:heroFade .8s ease;
}

@keyframes heroFade{

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

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

}


.photo-item:nth-child(1){
    animation:cardFade .6s ease;
}

.photo-item:nth-child(2){
    animation:cardFade .75s ease;
}

.photo-item:nth-child(3){
    animation:cardFade .9s ease;
}

@keyframes cardFade{

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

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

}


.gallery-image,
#galleryImage{

    user-select:none;
    -webkit-user-drag:none;

}