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

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

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    line-height: 1.6;
    color: #1a1a2e;
    background-color: #fff;
}

main {
    max-width: 760px;
    margin: 0 auto;
    padding: 0 1.5rem 4rem;
}

section {
    margin-bottom: 4rem;
}

/* Hero */
.hero {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
    text-align: center;
    padding: 2rem 1.5rem;
}

.profile-img {
    width: 160px;
    height: 160px;
    border-radius: 50%;
    object-fit: cover;
}

.hero h1 {
    font-size: 3rem;
    font-weight: 700;
    color: #e8613a;
    letter-spacing: -0.5px;
}

/* Section headings */
h2 {
    font-size: 1.4rem;
    font-weight: 700;
    color: #1a1a2e;
    margin-bottom: 1.25rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    letter-spacing: -0.3px;
}

h2::after {
    content: '';
    flex: 1;
    height: 2px;
    background: linear-gradient(90deg, #e8613a, transparent);
    border-radius: 2px;
}

p {
    color: #555;
    font-size: 1.1rem;
}

p:last-child {
    margin-bottom: 0;
}

.badge {
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    background: #fdeee9;
    color: #e8613a;
    padding: 0.15rem 0.5rem;
    border-radius: 20px;
}

.social-icons {
    display: flex;
    justify-content: center;
    gap: 1.25rem;
}

.social-icons svg {
    width: 56px;
    height: 56px;
}

.social-icons a {
    color: #e8613a;
    transition: color 0.2s ease;
}

.social-icons a:hover {
    text-decoration: none;
}

.social-icons a.linkedin:hover {
    color: #0077b5;
}

.social-icons a.github:hover {
    color: #000;
}

a {
    color: #e8613a;
    text-decoration: none;
    font-weight: 500;
}

a:hover {
    text-decoration: underline;
}

@media (max-width: 600px) {
    .hero h1 {
        font-size: 2.2rem;
    }

    main {
        padding: 0 1rem 3rem;
    }

    section {
        margin-bottom: 3rem;
    }
}
