/* =========================
GLOBAL
========================= */

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

html{
    scroll-behavior:smooth;
}

body{

    background:#050505;
    color:white;

    font-family:'Poppins',sans-serif;

    overflow-x:hidden;

}

/* =========================
BACKGROUND GRID
========================= */

.bg-grid{

    position:fixed;
    inset:0;

    background-image:
    linear-gradient(rgba(211,255,0,.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(211,255,0,.08) 1px, transparent 1px);

    background-size:70px 70px;

    z-index:-1;

}

/* =========================
HEADER
========================= */

header{

    width:100%;
    height:110px;

    padding:0 70px;

    display:flex;
    justify-content:space-between;
    align-items:center;

    position:sticky;
    top:0;

    z-index:999;

    background:rgba(0,0,0,.7);

    backdrop-filter:blur(20px);

    border-bottom:
    1px solid rgba(255,255,255,.08);

}

/* =========================
LOGO
========================= */

.logo{

    display:flex;
    align-items:center;

}

.logo img{

    height:50px;

    width:auto;

    object-fit:contain;

}

/* =========================
NAVIGATION
========================= */

nav{

    display:flex;

    gap:65px;

}

nav a{

    text-decoration:none;

    color:white;

    font-size:15px;

    letter-spacing:5px;

    transition:.3s;

}

nav a:hover{

    color:#d7ff00;

}

/* =========================
HEADER BUTTON
========================= */

.header-btn{

    padding:24px 48px;

    border-radius:60px;

    background:#d7ff00;

    color:black;

    text-decoration:none;

    font-weight:700;

    letter-spacing:4px;

    font-size:15px;

    transition:.3s;

}

.header-btn:hover{

    transform:translateY(-2px);

    box-shadow:
    0 0 40px rgba(211,255,0,.35);

}

/* =========================
HERO SECTION
========================= */

.hero{

    width:100%;

    min-height:calc(100vh - 110px);

    padding:70px;

    display:flex;

    gap:60px;

    align-items:flex-start;

}

/* =========================
LEFT SIDE
========================= */

.hero-left{

    width:50%;

    padding-top:20px;

}

.hero-left p{

    color:#d7ff00;

    letter-spacing:6px;

    margin-bottom:25px;

    font-size:15px;

}

.hero-left h1{

    font-family:'Anton',sans-serif;

    font-size:11rem;

    line-height:.88;

    color:#f1f1f1;

    letter-spacing:2px;

}

.hero-left h3{

    margin-top:40px;

    color:#bcbcbc;

    font-size:2rem;

    font-weight:300;

    line-height:1.5;

    max-width:700px;

}

/* =========================
INPUT AREA
========================= */

.input-area{

    margin-top:55px;

    display:flex;

    gap:25px;

    flex-wrap:wrap;

}

.input-area input{

    width:500px;
    height:90px;

    border:none;
    outline:none;

    padding:0 35px;

    border-radius:60px;

    background:#0b0b0b;

    color:white;

    font-size:1.4rem;

    border:
    1px solid rgba(255,255,255,.08);

}

.input-area input::placeholder{

    color:#7c7c7c;

}

.input-area button{

    width:260px;
    height:90px;

    border:none;

    border-radius:60px;

    background:#d7ff00;

    color:black;

    font-size:1.3rem;
    font-weight:700;

    cursor:pointer;

    transition:.3s;

}

.input-area button:hover{

    transform:scale(1.03);

    box-shadow:
    0 0 40px rgba(211,255,0,.45);

}

/* =========================
TAGS
========================= */

.tags{

    margin-top:40px;

    display:flex;

    gap:20px;

    flex-wrap:wrap;

}

.tag-btn{

    padding:18px 30px;

    border-radius:50px;

    border:1px solid rgba(255,255,255,.1);

    background:#0b0b0b;

    color:white;

    cursor:pointer;

    font-size:1rem;

    transition:.3s;

}

.tag-btn:hover{

    border-color:#d7ff00;

    color:#d7ff00;

}

/* =========================
RIGHT SIDE
========================= */

.hero-right{

    width:50%;

    height:760px;

    background:#080808;

    border-radius:40px;

    overflow-y:auto;
    overflow-x:hidden;

    padding:20px;

    border:
    1px solid rgba(255,255,255,.06);

    scrollbar-width:thin;

    scrollbar-color:
    #d7ff00 #111;

}

/* SCROLLBAR */

.hero-right::-webkit-scrollbar{

    width:8px;

}

.hero-right::-webkit-scrollbar-track{

    background:#111;

    border-radius:20px;

}

.hero-right::-webkit-scrollbar-thumb{

    background:#d7ff00;

    border-radius:20px;

}

/* =========================
IMAGE GRID
========================= */

.image-grid{

    display:grid;

    grid-template-columns:1fr 1fr;

    gap:20px;

}

/* =========================
IMAGE
========================= */

.image-grid img{

    width:100%;

    height:300px;

    object-fit:cover;

    border-radius:22px;

    transition:.3s;

    border:
    1px solid rgba(255,255,255,.05);

}

.image-grid img:hover{

    transform:scale(1.03);

}

/* =========================
NO IMAGE
========================= */

.image-grid h2{

    color:white;

    font-size:2rem;

    text-align:center;

    margin-top:100px;

}