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

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

html{
    scroll-behavior:smooth;
}

body{

    font-family:"Inter",sans-serif;
    background:#000;
    color:#fff;
    overflow-x:hidden;

}

/* ==========================
   VIDEO
========================== */

.video-container{

    position:fixed;

    inset:0;

    z-index:-3;

    overflow:hidden;

}

#heroVideo{

    width:100%;

    height:100%;

    object-fit:cover;

    object-position:center;

}

/* ==========================
   OVERLAY
========================== */

.overlay{

    position:absolute;

    inset:0;

    background:

    radial-gradient(circle at 70% 30%,
    rgba(255,255,255,.05),
    transparent 40%),

    linear-gradient(

        90deg,

        rgba(0,0,0,.82) 0%,

        rgba(0,0,0,.45) 45%,

        rgba(0,0,0,.15) 100%

    );

}

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

nav{

    position:fixed;

    top:0;

    left:0;

    width:100%;

    padding:28px 70px;

    display:flex;

    justify-content:space-between;

    align-items:center;

    backdrop-filter:blur(18px);

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

    z-index:999;

}

.logo{

    font-size:17px;

    font-weight:700;

    letter-spacing:5px;

}

nav ul{

    display:flex;

    gap:42px;

    list-style:none;

}

nav a{

    color:white;

    text-decoration:none;

    font-size:15px;

    transition:.3s;

}

nav a:hover{

    opacity:.65;

}

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

.hero{

    height:100vh;

    display:flex;

    align-items:center;

}

.hero-content{

    width:700px;

    margin-left:8%;

}

.eyebrow{

    font-size:13px;

    letter-spacing:6px;

    color:#cfcfcf;

    margin-bottom:22px;

}

.hero h1{

    font-size:clamp(72px,9vw,150px);

    line-height:.88;

    font-weight:900;

}

.hero h1 span{

    display:block;

}

.description{

    margin-top:28px;

    font-size:22px;

    line-height:1.8;

    color:#d9d9d9;

}

.scroll-indicator{

    margin-top:55px;

    font-size:14px;

    letter-spacing:4px;

    color:#bbb;

    animation:float 2s ease-in-out infinite;

}

@keyframes float{

0%{

transform:translateY(0);

}

50%{

transform:translateY(8px);

}

100%{

transform:translateY(0);

}

}

/* ==========================
   SCROLL AREA
========================== */

.scroll-track{
    
    height:500vh;
}

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

@media(max-width:900px){

nav{

padding:22px;

}

nav ul{

gap:20px;

}

.hero-content{

margin:0 25px;

width:auto;

}

.hero h1{

font-size:68px;

}

.description{

font-size:18px;

}

}
.panel{
    min-height:100vh;
    display:flex;
    align-items:center;
    position:relative;
    z-index:5;
}

.content{
    width:min(1100px,90%);
    margin:auto;
}

.section-tag{

    letter-spacing:6px;
    font-size:18px;
    color:#bfbfbf;
    margin-bottom:20px;

}

.panel h2{

    font-size:clamp(70px,7vw,110px);
    margin-bottom:35px;
    line-height:.95;

}

.project-card{
    margin-bottom:30px;
    padding:35px;
    border-radius:22px;
    background:rgba(255,255,255,.08);
    backdrop-filter:blur(18px);
    border:1px solid rgba(255,255,255,.15);
    transition:.35s;
}

.project-card:hover{
    transform:translateY(-8px);
    background:rgba(255,255,255,.12);
}

.project-card h3{
    font-size:32px;
    margin-bottom:15px;
}

.project-card p{
    color:#d7d7d7;
    line-height:1.8;
    margin-bottom:20px;
}

.project-card span{
    color:#8ad8ff;
    font-weight:600;
}
/* ==========================
   ABOUT
========================== */

.about-text{

    font-size:24px;
    line-height:1.9;
    color:#e3e3e3;
    max-width:900px;
    margin-top:25px;
    margin-bottom:50px;

}

/* ==========================
   SKILLS
========================== */

.skills{

    display:flex;
    flex-wrap:wrap;
    gap:18px;

}

.skills span{

    padding:14px 24px;
    font-size:18px;
    border-radius:999px;
    background:rgba(255,255,255,.08);
    border:1px solid rgba(255,255,255,.15);
    backdrop-filter:blur(15px);

}

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

.contact-links{

    display:flex;
    flex-direction:column;
    gap:22px;
    margin-top:50px;

}

.contact-links a{

    color:white;
    text-decoration:none;
    font-size:24px;
    font-weight:500;
    transition:.3s;

}

.contact-links a:hover{

    color:#7fd8ff;
    transform:translateX(10px);

}