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

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    font-family:'Poppins',sans-serif;
}

body{
    background: linear-gradient(
        135deg,
        #0f0f0f 0%,
        #181818 25%,
        #222831 55%,
        #111111 100%
    );
    color: #fff;
    
}

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

.navbar{
    position:fixed;
    top:0;
    width:100%;
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:25px 9%;
    backdrop-filter:blur(18px);
    background:rgba(255,255,255,.05);
    border-bottom:1px solid rgba(255,255,255,.08);
    z-index:999;
}

.logo{
    font-size:30px;
    font-weight:700;
    letter-spacing:3px;
}

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

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

nav a:hover{
    color:#d4af37;
}

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

.project-hero{

    width:100%;
    min-height:100vh;

    display:flex;
    align-items:center;
    justify-content:center;
    gap:90px;

    padding:160px 10% 100px;

}

.project-left{

    flex:1;

}

.project-left img{

    width:100%;
    border-radius:25px;

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

    transition:.5s;

}

.project-left img:hover{

    transform:scale(1.04);

}

.project-right{

    flex:1;

}

.project-category{

    display:inline-block;

    background:#d4af37;

    color:#000;

    padding:8px 18px;

    border-radius:50px;

    font-size:14px;

    margin-bottom:25px;

    font-weight:600;

}

.project-right h1{

    font-size:58px;

    line-height:1.1;

    margin-bottom:25px;

}

.project-description{

    color:#b8b8b8;

    font-size:18px;

    line-height:1.8;

    margin-bottom:45px;

}

/* ==========================
DETAILS
========================== */

.project-details{

    display:grid;

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

    gap:20px;

}

.project-details div{

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

    backdrop-filter:blur(15px);

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

    padding:30px;

    border-radius:18px;

    transition:.35s;

}

.project-details div:hover{

    transform:translateY(-8px);

    border-color:#d4af37;

}

.project-details span{

    color:#999;

    font-size:13px;

    text-transform:uppercase;

}

.project-details h3{

    margin-top:10px;

    font-size:20px;

}

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

.project-gallery{

    padding:120px 10%;

}

.project-gallery h2{

    font-size:46px;

    text-align:center;

    margin-bottom:70px;

}

.gallery-grid{

    display:grid;

    grid-template-columns:repeat(auto-fit,minmax(330px,1fr));

    gap:35px;

}

.gallery-grid img{

    width:100%;

    border-radius:22px;

    transition:.5s;

    cursor:pointer;

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

}

.gallery-grid img:hover{

    transform:translateY(-10px) scale(1.02);

}

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

@media(max-width:1000px){

.project-hero{

    flex-direction:column;

    text-align:center;

}

.project-right h1{

    font-size:42px;

}

.project-details{

    grid-template-columns:1fr;

}

}
/* ==========================
   CONTACT SECTION
========================== */

.contact-card{

    max-width:1100px;
    margin:120px auto;
    padding:70px 50px;

    border-radius:30px;

    position:relative;

    overflow:hidden;

    background:
    linear-gradient(135deg,
    rgba(255,255,255,.06),
    rgba(255,255,255,.02));

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

    backdrop-filter:blur(25px);

    text-align:center;

    box-shadow:
    0 20px 80px rgba(0,0,0,.45);

}

.contact-card::before{

    content:"";

    position:absolute;

    width:350px;
    height:350px;

    background:#FFD233;

    filter:blur(170px);

    opacity:.25;

    top:-120px;
    left:-120px;

}

.contact-card::after{

    content:"";

    position:absolute;

    width:320px;
    height:320px;

    background:#4F46E5;

    filter:blur(170px);

    opacity:.18;

    bottom:-120px;
    right:-120px;

}

.contact-content{

    position:relative;
    z-index:2;

}

.contact-content h2{

    font-size:52px;
    margin-bottom:20px;

    font-weight:700;

}

.contact-content p{

    font-size:20px;

    color:#d4d4d4;

    max-width:700px;

    margin:auto;

    line-height:1.8;

}

.contact-box{

    display:inline-block;

    margin-top:45px;

    padding:22px 45px;

    border-radius:18px;

    background:#FFD233;

    color:#111;

    transition:.35s;

    cursor:pointer;

}

.contact-box:hover{

    transform:translateY(-8px);

    box-shadow:
    0 20px 60px rgba(255,210,51,.45);

}

.contact-box span{

    display:block;

    font-size:15px;

    letter-spacing:1px;

    text-transform:uppercase;

    margin-bottom:10px;

}

.contact-box h3{

    font-size:36px;

    font-weight:700;

}
/*==========================
COMING SOON
===========================*/

.coming-soon{

    min-height:100vh;

    display:flex;

    justify-content:center;

    align-items:center;

    padding:80px;

    background:

    radial-gradient(circle at top left,#ffe9a8 0%,transparent 30%),

    radial-gradient(circle at bottom right,#ffd54d 0%,transparent 35%),

    linear-gradient(135deg,#ffffff,#fafafa);

}

.coming-card{

    width:100%;

    max-width:950px;

    background:white;

    border-radius:35px;

    padding:80px;

    text-align:center;

    position:relative;

    overflow:hidden;

    border:2px solid rgba(212,175,55,.25);

    box-shadow:

    0 30px 90px rgba(0,0,0,.15);

}

.coming-card::before{

    content:"";

    position:absolute;

    width:450px;

    height:450px;

    background:radial-gradient(circle,#FFD700,transparent 70%);

    filter:blur(100px);

    top:-220px;

    left:-220px;

    opacity:.45;

}

.coming-logo{

    font-size:40px;

    font-weight:800;

    letter-spacing:5px;

    color:#D4AF37;

    margin-bottom:30px;

}

.coming-card h1{

    font-size:95px;

    font-weight:800;

    margin-bottom:15px;

    color:#111;

}

.coming-card h1 span{

    color:#D4AF37;

}

.divider{

    width:180px;

    height:4px;

    margin:30px auto;

    background:

    linear-gradient(to right,

    transparent,

    #D4AF37,

    transparent);

}

.coming-card p{

    color:#666;

    font-size:22px;

    line-height:1.8;

}

.phone-box{

    display:inline-flex;

    align-items:center;

    gap:20px;

    margin-top:60px;

    padding:22px 40px;

    border-radius:70px;

    background:white;

    border:2px solid #D4AF37;

    box-shadow:

    0 15px 45px rgba(212,175,55,.25);

    transition:.35s;

}

.phone-box:hover{

    transform:translateY(-8px);

    box-shadow:

    0 25px 60px rgba(212,175,55,.35);

}

.phone-icon{

    width:65px;

    height:65px;

    border-radius:50%;

    background:

    linear-gradient(135deg,#FFD700,#D4AF37);

    display:flex;

    justify-content:center;

    align-items:center;

    color:white;

    font-size:30px;

}

.phone-box small{

    display:block;

    color:#777;

    font-size:16px;

}

.phone-box h2{

    color:#D4AF37;

    font-size:38px;

    margin-top:6px;

}

/* ==========================
   MOBILE OPTIMIZATION
========================== */

.gallery-grid img{
    display:block;
    height:auto;
}

@media (max-width: 600px){

    .navbar{
        padding:16px 5%;
    }

    .logo{
        font-size:22px;
        letter-spacing:2px;
    }

    nav{
        gap:16px;
    }

    nav a{
        font-size:13px;
    }

    .project-gallery{
        padding:100px 5% 50px;
    }

    .project-gallery h2{
        font-size:32px;
        margin-bottom:35px;
    }

    .gallery-grid{
        grid-template-columns:1fr;
        gap:22px;
    }

    .gallery-grid img{
        width:100%;
        max-width:100%;
        border-radius:16px;
    }
}

@media (min-width: 601px) and (max-width: 900px){

    .project-gallery{
        padding-left:6%;
        padding-right:6%;
    }

    .gallery-grid{
        grid-template-columns:repeat(2, minmax(0, 1fr));
        gap:24px;
    }
}
