=====================================
   NEWCAPTURE STYLE
===================================== */


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


:root{

    --black:#050505;
    --dark:#0b0b0b;
    --card:#111111;
    --green:#35ff88;
    --white:#ffffff;
    --gray:#999999;

}


html{

    scroll-behavior:smooth;

}



body{

    background:var(--black);

    color:white;

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

    overflow-x:hidden;

}





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


.navbar{

    position:fixed;

    top:0;

    left:0;

    width:100%;

    padding:30px 7%;

    display:flex;

    justify-content:space-between;

    align-items:center;

    z-index:9999;

    transition:.4s ease;

}



.navbar.active{

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

    backdrop-filter:blur(20px);

    padding:20px 7%;

}





.logo{

    font-family:'Space Grotesk',sans-serif;

    font-size:30px;

    font-weight:900;

    letter-spacing:4px;

}




nav{

    display:flex;

    gap:40px;

}



nav a{

    color:white;

    text-decoration:none;

    font-size:15px;

    transition:.3s;

}



nav a:hover{

    color:var(--green);

}








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


.hero{

    height:100vh;

    min-height:700px;

    display:flex;

    align-items:center;

    position:relative;

    overflow:hidden;

}




.hero-bg{

    position:absolute;

    inset:0;

    background:

    linear-gradient(
    90deg,
    rgba(0,0,0,.85),
    rgba(0,0,0,.35)
    ),

    url("https://images.unsplash.com/photo-1529139574466-a303027c1d8b");


    background-size:cover;

    background-position:center;

    z-index:-1;

}




.hero-content{

    width:86%;

    margin:auto;

}





.small-title{

    color:var(--green);

    letter-spacing:5px;

    font-size:12px;

    margin-bottom:30px;

}





.hero h1{

    font-family:'Space Grotesk',sans-serif;

    font-size:clamp(50px,8vw,120px);

    line-height:.9;

    letter-spacing:-3px;

    font-weight:900;

}





.hero-text{

    margin:35px 0;

    max-width:500px;

    color:#ccc;

    font-size:18px;

    line-height:1.8;

}





.main-button{

    display:inline-block;

    background:var(--green);

    color:black;

    padding:18px 45px;

    border-radius:50px;

    font-weight:800;

    text-decoration:none;

    transition:.3s;

}



.main-button:hover{

    transform:translateY(-5px);

}








/* =========================
ARTICLES
========================= */


.articles{

    padding:120px 7%;

}





.section-head p{

    color:var(--green);

    letter-spacing:5px;

    font-size:12px;

}





.section-head h2{

    font-family:'Space Grotesk';

    font-size:70px;

    margin:20px 0 70px;

}





.article-grid{

    display:grid;

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

    gap:35px;

}





.card{

    background:var(--card);

    border-radius:25px;

    overflow:hidden;

    transition:.35s ease;

}





.card:hover{

    transform:translateY(-8px);

    box-shadow:0 20px 50px rgba(53,255,136,.15);

}





.image{

    height:350px;

    overflow:hidden;

}




.image img{

    width:100%;

    height:100%;

    object-fit:cover;

    transition:.5s;

}




.card:hover img{

    transform:scale(1.05);

}





.card-content{

    padding:35px;

}





.card-content span{

    color:var(--green);

    letter-spacing:4px;

    font-size:12px;

}





.card-content h3{

    font-family:'Space Grotesk';

    font-size:28px;

    margin:20px 0;

}





.card-content p{

    color:#aaa;

    line-height:1.7;

}





.card-content a{

    display:inline-block;

    margin-top:25px;

    color:var(--green);

    text-decoration:none;

    font-weight:700;

}








/* =========================
FEATURE
========================= */


.feature{

    padding:120px 7%;

}





.feature-box{

    padding:80px;

    border-radius:40px;

    background:#101010;

    border:1px solid #222;

}





.feature h2{

    font-family:'Space Grotesk';

    font-size:80px;

    line-height:.9;

}





.feature p{

    margin-top:30px;

    color:#aaa;

    font-size:20px;

}








/* =========================
JOIN NEWCAPTURE
========================= */


.join-section{

    padding:120px 7%;

}





.join-box{

    text-align:center;

    padding:90px 40px;

    border-radius:40px;

    background:#101010;

    border:1px solid #222;

}





.join-small{

    color:var(--green);

    letter-spacing:5px;

    font-size:12px;

    margin-bottom:30px;

}





.join-box h2{

    font-family:'Space Grotesk';

    font-size:clamp(45px,7vw,90px);

    line-height:.9;

    margin-bottom:35px;

}





.join-box p{

    max-width:650px;

    margin:0 auto 40px;

    color:#aaa;

    line-height:1.8;

    font-size:18px;

}





.join-button{

    display:inline-flex;

    justify-content:center;

    align-items:center;

    gap:10px;

    background:var(--green);

    color:black;

    padding:18px 45px;

    border-radius:50px;

    text-decoration:none;

    font-weight:800;

    letter-spacing:1px;

    line-height:1.4;

}





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


footer{

    padding:70px 7%;

    border-top:1px solid #222;

    text-align:center;

}




.footer-logo{

    font-family:'Space Grotesk';

    font-size:40px;

    font-weight:900;

    letter-spacing:5px;

}





.footer-links{

    display:flex;

    justify-content:center;

    gap:40px;

    margin:30px;

}





.footer-links a{

    color:white;

    text-decoration:none;

}





/* =========================
ANIMATIONS
========================= */


.hidden{

    opacity:0;

    transform:translateY(30px);

    transition:.8s ease;

}



.show{

    opacity:1;

    transform:none;

}








/* =========================
MOBILE VERSION
========================= */


@media(max-width:900px){


.navbar{

    padding:20px 5%;

}



.logo{

    font-size:18px;

    letter-spacing:2px;

}



nav{

    gap:10px;

}



nav a{

    font-size:11px;

}





.hero{

    min-height:100vh;

}




.hero-content{

    width:90%;

}



.small-title{

    font-size:9px;

    letter-spacing:3px;

}



.hero h1{

    font-size:52px;

    letter-spacing:-2px;

}



.hero-text{

    font-size:15px;

}



.main-button{

    padding:15px 30px;

}







.articles{

    padding:80px 5%;

}





.section-head h2{

    font-size:45px;

}





.article-grid{

    grid-template-columns:1fr;

    gap:25px;

}




.image{

    height:250px;

}




.card-content{

    padding:25px;

}




.card-content h3{

    font-size:23px;

}







.feature{

    padding:80px 5%;

}



.feature-box{

    padding:40px 25px;

}



.feature h2{

    font-size:45px;

}







.join-section{

    padding:80px 5%;

}




.join-box{

    padding:50px 20px;

    border-radius:25px;

}




.join-box h2{

    font-size:42px;

}





.join-box p{

    font-size:15px;

}





.join-button{

    width:100%;

    padding:16px 15px;

    font-size:13px;

}






.footer-logo{

    font-size:30px;

}



.footer-links{

    flex-wrap:wrap;

    gap:20px;

}




/* ===========================
   MOBILE RESOLUTION FIX
=========================== */


html, body{

    width:100%;

    max-width:100%;

    overflow-x:hidden;

}



@media(max-width:600px){


.navbar{

    width:100%;

    padding:20px 15px;

}



.logo{

    font-size:18px;

    white-space:nowrap;

}



nav{

    gap:10px;

    flex-wrap:nowrap;

}



nav a{

    font-size:11px;

    white-space:nowrap;

}





.hero{

    width:100%;

    min-height:100svh;

}



.hero-content{

    width:90%;

    max-width:100%;

}



.hero h1{

    font-size:48px;

}



.hero-text{

    max-width:100%;

}





.join-box{

    width:100%;

    max-width:100%;

    overflow:hidden;

}



.join-box p,
.join-box span{

    max-width:100%;

}



.join-button{

    max-width:100%;

    width:auto;

    font-size:12px;

    padding:15px 20px;

    white-space:normal;

    text-align:center;

}





img{

    max-width:100%;

    height:auto;

}



}



