/* =========================
   GOOGLE FONT
========================= */

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

/* =========================
   GLOBAL
========================= */

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

body{
font-family:'Inter',sans-serif;
background:#050816;
color:white;
line-height:1.8;
overflow-x:hidden;
}

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

.hero{
min-height:100vh;
display:flex;
justify-content:center;
align-items:center;
text-align:center;
padding:80px 20px;

background:
radial-gradient(circle at top left,#00e5ff20,transparent 40%),
radial-gradient(circle at bottom right,#8a2be220,transparent 40%),
#050816;
}

.hero-content{
max-width:900px;
}

.hero h1{
font-size:70px;
font-weight:900;
margin-bottom:20px;

background:linear-gradient(
90deg,
#00e5ff,
#8a2be2
);

-webkit-background-clip:text;
-webkit-text-fill-color:transparent;
}

.tagline{
font-size:28px;
font-weight:700;
margin-bottom:20px;
color:#d6d6d6;
}

.subtitle{
font-size:18px;
max-width:800px;
margin:auto;
color:#b7b7b7;
line-height:1.8;
}

.hero-buttons{
margin-top:40px;
display:flex;
justify-content:center;
flex-wrap:wrap;
gap:15px;
}

.hero-buttons a{
text-decoration:none;
padding:14px 24px;
border-radius:12px;
font-weight:700;

background:linear-gradient(
135deg,
#00e5ff,
#8a2be2
);

color:white;

transition:.3s;
}

.hero-buttons a:hover{
transform:translateY(-5px);
box-shadow:0 0 30px rgba(0,229,255,.4);
}

/* =========================
   SECTION
========================= */

section{
max-width:1300px;
margin:auto;
padding:80px 25px;
}

h2{
text-align:center;
font-size:40px;
margin-bottom:50px;
font-weight:800;

background:linear-gradient(
90deg,
#00e5ff,
#8a2be2
);

-webkit-background-clip:text;
-webkit-text-fill-color:transparent;
}

/* =========================
   STATS
========================= */

.stats{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(220px,1fr));
gap:25px;
}

.stat-card{
background:rgba(255,255,255,0.05);

backdrop-filter:blur(10px);

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

padding:35px;
border-radius:20px;

text-align:center;
transition:.3s;
}

.stat-card:hover{
transform:translateY(-8px);
box-shadow:0 0 25px rgba(0,229,255,.2);
}

.stat-card h3{
font-size:42px;
color:#00e5ff;
margin-bottom:10px;
}

/* =========================
   ABOUT
========================= */

section p{
max-width:950px;
margin:auto;
text-align:center;
font-size:18px;
color:#d0d0d0;
}

/* =========================
   WHAT I BUILD
========================= */

.build-grid{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
gap:25px;
}

.build-card{
background:#0f172a;
padding:30px;
border-radius:20px;

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

transition:.3s;
}

.build-card:hover{
transform:translateY(-8px);
box-shadow:0 0 30px rgba(0,229,255,.2);
}

.build-card h3{
margin-bottom:15px;
}

.build-card p{
text-align:left;
}

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

.skills{
display:flex;
flex-wrap:wrap;
justify-content:center;
gap:12px;
}

.skills span{
padding:12px 18px;

background:#0f172a;

border-radius:30px;

border:1px solid rgba(0,229,255,.15);

font-size:14px;

transition:.3s;
}

.skills span:hover{
background:#00e5ff;
color:black;
transform:translateY(-3px);
}

/* =========================
   PROJECT CARDS
========================= */

.project{
background:#0f172a;

border-radius:25px;

padding:35px;

margin-bottom:40px;

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

transition:.3s;
}

.project:hover{
transform:translateY(-8px);
box-shadow:0 0 30px rgba(0,229,255,.15);
}

.project h3{
font-size:28px;
margin-bottom:20px;
}

/* =========================
   SCREENSHOT SLIDER
========================= */

.gallery{
display:flex;
gap:20px;

overflow-x:auto;

padding:15px 0;

scroll-behavior:smooth;
}

.gallery::-webkit-scrollbar{
height:8px;
}

.gallery::-webkit-scrollbar-thumb{
background:#00e5ff;
border-radius:20px;
}

.gallery img{

min-width:850px;
max-width:950px;

height:auto;

border-radius:16px;

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

transition:.3s;
}

.gallery img:hover{
transform:scale(1.02);
}

/* =========================
   BUTTONS
========================= */

.buttons{
margin-top:20px;
}

.buttons a{
display:inline-block;

text-decoration:none;

padding:12px 20px;

margin-right:10px;
margin-top:10px;

border-radius:12px;

font-weight:700;

background:linear-gradient(
135deg,
#00e5ff,
#8a2be2
);

color:white;

transition:.3s;
}

.buttons a:hover{
transform:translateY(-4px);
box-shadow:0 0 25px rgba(0,229,255,.3);
}

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

section:last-of-type p{
margin-bottom:15px;
}

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

footer{
text-align:center;

padding:60px 20px;

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

color:#a8a8a8;
}

footer p{
margin-bottom:10px;
}

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

.project,
.build-card,
.stat-card{
animation:fadeUp .8s ease;
}

@keyframes fadeUp{

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

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

}

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

@media(max-width:992px){

.hero h1{
font-size:52px;
}

.tagline{
font-size:22px;
}

.gallery img{
min-width:650px;
}

}

@media(max-width:768px){

.hero{
padding:60px 20px;
}

.hero h1{
font-size:42px;
}

.tagline{
font-size:18px;
}

.subtitle{
font-size:16px;
}

h2{
font-size:32px;
}

.gallery img{
min-width:90vw;
}

.project{
padding:25px;
}

.hero-buttons{
flex-direction:column;
align-items:center;
}

.hero-buttons a{
width:250px;
}

}

@media(max-width:480px){

.hero h1{
font-size:34px;
}

.tagline{
font-size:16px;
}

.subtitle{
font-size:15px;
}

.stat-card h3{
font-size:34px;
}

h2{
font-size:28px;
}

}
