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

html{
    scroll-behavior:smooth;
}

body{
    font-family:'Outfit',sans-serif;
    background:#f8fafc;
    color:#1e293b;
}

/* NAVBAR */

header{
    position:sticky;
    top:0;
    z-index:1000;
    background:rgba(255,255,255,0.7);
    backdrop-filter:blur(10px);
    border-bottom:1px solid #e2e8f0;
}

.navbar{
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:20px 10%;
}

.logo{
    font-size:1.8rem;
    color:#2563eb;
    font-weight:700;
}

.nav-links{
    display:flex;
    list-style:none;
    gap:25px;
}

.nav-links a{
    text-decoration:none;
    color:#334155;
    font-weight:500;
    position:relative;
}

.nav-links a::after{
    content:'';
    position:absolute;
    width:0%;
    height:2px;
    background:#2563eb;
    left:0;
    bottom:-5px;
    transition:0.3s;
}

.nav-links a:hover::after{
    width:100%;
}

/* HERO SECTION */

.hero{
    min-height:100vh;
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:50px 10%;
    gap:50px;
}

.hero-text h1{
    font-size:3.5rem;
    margin-bottom:20px;
}

.hero-text span{
    color:#2563eb;
}

.hero-text p{
    max-width:550px;
    line-height:1.8;
    color:#475569;
    margin-bottom:30px;
}

/* BUTTONS */

.hero-buttons{
    display:flex;
    gap:20px;
}

.btn-primary{
    background:#2563eb;
    color:white;
    text-decoration:none;
    padding:14px 28px;
    border-radius:12px;
    font-weight:600;
    transition:0.3s;
}

.btn-primary:hover{
    background:#1d4ed8;
    transform:translateY(-4px);
}

.btn-secondary{
    border:2px solid #2563eb;
    color:#2563eb;
    text-decoration:none;
    padding:14px 28px;
    border-radius:12px;
    font-weight:600;
    transition:0.3s;
}

.btn-secondary:hover{
    background:#2563eb;
    color:white;
}

/* IMAGE */

.hero-image img{
    width:340px;
    border-radius:25px;
    box-shadow:0 10px 30px rgba(0,0,0,0.1);
}

/* SECTIONS */

.section{
    padding:100px 10%;
}

.section h2{
    font-size:2.5rem;
    margin-bottom:35px;
}

/* GLASS CARD */

.glass-card{
    background:rgba(255,255,255,0.7);
    backdrop-filter:blur(12px);
    padding:35px;
    border-radius:20px;
    box-shadow:0 10px 25px rgba(0,0,0,0.06);
}

.glass-card p{
    margin-bottom:18px;
    color:#475569;
    line-height:1.8;
}

/* SKILLS */

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

.skill-box{
    background:white;
    padding:30px;
    border-radius:20px;
    box-shadow:0 8px 25px rgba(0,0,0,0.05);
    transition:0.3s;
}

.skill-box:hover{
    transform:translateY(-5px);
}

.skill-box h3{
    color:#2563eb;
    margin-bottom:18px;
}

.skill-box ul{
    list-style:none;
}

.skill-box li{
    margin-bottom:12px;
    color:#475569;
}

/* CONTACT */

.contact-wrapper{
    display:flex;
    flex-direction:column;
    gap:30px;
}

.social-links{
    display:flex;
    gap:15px;
    flex-wrap:wrap;
}

.social-links a{
    background:white;
    color:#2563eb;
    padding:12px 20px;
    border-radius:12px;
    text-decoration:none;
    font-weight:600;
    box-shadow:0 5px 15px rgba(0,0,0,0.05);
    transition:0.3s;
}

.social-links a:hover{
    background:#2563eb;
    color:white;
}

.contact-form{
    display:flex;
    flex-direction:column;
    gap:18px;
}

.contact-form input,
.contact-form textarea{
    padding:16px;
    border:none;
    border-radius:12px;
    background:white;
    box-shadow:0 5px 15px rgba(0,0,0,0.05);
    font-family:'Outfit',sans-serif;
}

.contact-form button{
    background:#0f172a;
    color:white;
    border:none;
    padding:16px;
    border-radius:12px;
    cursor:pointer;
    font-weight:600;
    transition:0.3s;
}

.contact-form button:hover{
    background:#2563eb;
}

/* FOOTER */

footer{
    text-align:center;
    padding:30px;
    color:#64748b;
}

/* RESPONSIVE */

@media(max-width:768px){

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

    .hero-buttons{
        justify-content:center;
        flex-wrap:wrap;
    }

    .hero-image img{
        width:250px;
    }

    .navbar{
        flex-direction:column;
        gap:15px;
    }

    .nav-links{
        flex-wrap:wrap;
        justify-content:center;
    }

    .hero-text h1{
        font-size:2.5rem;
    }

}