* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background: #0c0c0c;
    color: #e5e5e5;
    font-family: 'Manrope', sans-serif;
}

/* NAV */
nav {
    display: flex;
    justify-content: space-between;
    padding: 20px 40px;
    border-bottom: 1px solid #222;
}

.logo {
    font-family: 'Playfair Display', serif;
    font-size: 18px;
}

.nav-links a {
    margin-left: 20px;
    color: #aaa;
    text-decoration: none;
    font-size: 14px;
}

.nav-links a:hover {
    color: #fff;
}

/* HERO */
.hero {
    text-align: center;
    padding: 80px 20px;
}

.hero img {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
    filter: grayscale(0%) brightness(1.1);
}

.hero h1 {
    font-family: 'Playfair Display', serif;
    font-size: 38px;
}

.hero p {
    color: #aaa;
    margin: 10px 0 20px;
}

.buttons {
    margin-bottom: 20px;
}

.btn {
    padding: 10px 20px;
    border: 1px solid #444;
    border-radius: 20px;
    text-decoration: none;
    color: #fff;
    margin: 5px;
}

.btn-outline {
    padding: 10px 20px;
    border: 1px solid #444;
    border-radius: 20px;
    text-decoration: none;
    color: #aaa;
}

.btn:hover {
    background: #1a1a1a;
}

.stats {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-top: 20px;
}

.stats h3 {
    font-size: 20px;
}

.stats span {
    font-size: 12px;
    color: #777;
}

/* SECTIONS */
section {
    padding: 60px 40px;
    max-width: 800px;
    margin: auto;
}

h2 {
    font-family: 'Playfair Display', serif;
    margin-bottom: 10px;
}

.desc {
    color: #aaa;
    margin-bottom: 20px;
}

/* SKILLS */
.skills span {
    display: inline-block;
    border: 1px solid #333;
    padding: 6px 12px;
    margin: 5px;
    border-radius: 20px;
    font-size: 13px;
    color: #aaa;
}

/* PROJECTS */
.project {
    border: 1px solid #222;
    padding: 15px;
    margin-bottom: 15px;
    border-radius: 10px;
    background: #121212;
}

.project p {
    color: #aaa;
    font-size: 14px;
}

/* EDUCATION */
.edu div {
    border: 1px solid #222;
    padding: 15px;
    margin-bottom: 10px;
    border-radius: 10px;
    background: #121212;
}

.edu span {
    font-size: 12px;
    color: #777;
}

/* CONTACT */
.contact {
    text-align: center;
    border: 1px solid #222;
    padding: 30px;
    border-radius: 12px;
    background: #121212;
}

.contact a {
    display: block;
    margin: 8px 0;
    color: #aaa;
    text-decoration: none;
}

.contact a:hover {
    color: #fff;
}

/* FOOTER */
footer {
    text-align: center;
    padding: 20px;
    border-top: 1px solid #222;
    color: #777;
}