/* GLOBAL */

body {

    margin: 0;

    font-family: Arial, Helvetica, sans-serif;

    background: #0f172a;

    color: white;

}



/* NAVBAR */

.navbar {

    position: fixed;

    top: 0;

    width: 100%;

    background: black;

    display: flex;

    justify-content: space-between;

    align-items: center;

    padding: 15px 30px;

    z-index: 1000;

}



.nav-left {

    font-size: 20px;

    font-weight: bold;

}



.navbar a {

    color: white;

    margin-left: 20px;

    text-decoration: none;

    transition: 0.3s;

}



.navbar a:hover {

    opacity: 0.7;

}



/* HERO */

.hero {

    height: 100vh;

    display: flex;

    align-items: center;

    justify-content: center;

    text-align: center;

    padding-top: 80px;

}



.hero-content {

    max-width: 800px;

}



/* PROFILE IMAGE */

.profile-image {

    width: 180px;

    height: 180px;

    border-radius: 50%;

    object-fit: cover;

    display: block;

    margin: 0 auto 25px;

    border: 3px solid white;

}



.hero h1 {

    font-size: 48px;

    margin-bottom: 20px;

}



.hero p {

    font-size: 20px;

    line-height: 1.6;

}





/* BUTTONS */

.buttons {

    margin-top: 30px;

}



.btn {

    background: white;

    color: black;

    padding: 12px 25px;

    margin-right: 10px;

    text-decoration: none;

    border-radius: 5px;

    display: inline-block;

    transition: 0.3s;

}



.btn:hover {

    transform: translateY(-3px);

}



.btn-outline {

    border: 1px solid white;

    padding: 12px 25px;

    color: white;

    text-decoration: none;

    border-radius: 5px;

    display: inline-block;

    transition: 0.3s;

}



.btn-outline:hover {

    background: white;

    color: black;

}





/* SECTIONS */

.section {

    padding: 80px 20px;

    max-width: 1100px;

    margin: auto;

}



.section h2 {

    text-align: center;

    font-size: 32px;

    margin-bottom: 40px;

}





/* GRID */

.grid {

    display: grid;

    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));

    gap: 20px;

}





/* CARD */

.card {

    background: #1e293b;

    padding: 20px;

    border-radius: 8px;

    transition: 0.3s;

}



.card:hover {

    transform: translateY(-5px);

}





/* PROJECT LINKS */

.project-links {

    margin-top: 60px;

}





/* LINKS */

a {

    transition: 0.3s;

}





/* CONTACT */

#contact a {

    color: white;

}



#contact a:hover {

    opacity: 0.7;

}





/* MOBILE RESPONSIVE */

@media(max-width:768px){


    .navbar {

        flex-direction: column;

        gap: 15px;

    }



    .nav-right {

        display: flex;

        flex-wrap: wrap;

        justify-content: center;

    }



    .navbar a {

        margin: 5px;

    }



    .hero h1 {

        font-size: 36px;

    }



    .hero p {

        font-size: 18px;

    }


}