/* Reset and base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: "Inter", "Roboto", "Open Sans", "Lato", "Calibri", serif;
    line-height: 1.7;
    color: rgba(41, 41, 41, 1);
    background: #fff;
    min-height: 100vh;
    -webkit-font-smoothing: antialiased;
}

/* Navigation */
.navbar {
    background: #fff;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
}

.nav-container {
    max-width: 1192px;
    margin: 0 auto;
    padding: 1rem 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo {
    font-family: sohne, "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-size: 1.25rem;
    font-weight: 700;
    color: rgba(41, 41, 41, 1);
    text-decoration: none;
    letter-spacing: -0.5px;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-links a {
    font-family: sohne, "Helvetica Neue", Helvetica, Arial, sans-serif;
    text-decoration: none;
    color: rgba(117, 117, 117, 1);
    font-weight: 400;
    font-size: 0.875rem;
    padding: 0.5rem 0;
    transition: color 0.2s ease;
}

.nav-links a:hover,
.nav-links a.active {
    color: rgba(41, 41, 41, 1);
}

/* Main container */
.container {
    max-width: 680px;
    margin: 0 auto;
    padding: 100px 24px 60px;
}

/* Hero section */
.hero {
    text-align: left;
    padding: 2rem 0 3rem;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    margin-bottom: 2.5rem;
}

.hero h1 {
    font-family: sohne, "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-size: 2.625rem;
    font-weight: 700;
    color: rgba(41, 41, 41, 1);
    margin-bottom: 0.75rem;
    letter-spacing: -0.5px;
    line-height: 1.2;
}

.hero h2 {
    font-family: sohne, "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-size: 1.25rem;
    color: rgba(117, 117, 117, 1);
    font-weight: 400;
}

.hero p {
    color: rgba(117, 117, 117, 1);
    font-size: 1.125rem;
    margin-top: 1rem;
}

.highlight {
    color: rgba(41, 41, 41, 1);
}

/* About content */
.about-content {
    background: transparent;
    padding: 0;
}

.about-content h3 {
    font-family: sohne, "Helvetica Neue", Helvetica, Arial, sans-serif;
    color: rgba(41, 41, 41, 1);
    margin: 2rem 0 1rem;
    font-size: 1.375rem;
    font-weight: 700;
    letter-spacing: -0.25px;
}

.about-content h3:first-child {
    margin-top: 0;
}

.about-content p {
    color: rgba(41, 41, 41, 1);
    line-height: 1.8;
    font-size: 1.125rem;
    margin-bottom: 1.5rem;
}

/* Skills */
.skills {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.skill-tag {
    background: rgba(242, 242, 242, 1);
    color: rgba(41, 41, 41, 1);
    padding: 0.5rem 1rem;
    border-radius: 100px;
    font-family: sohne, "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-size: 0.875rem;
    font-weight: 400;
    transition: background 0.2s ease;
}

.skill-tag:hover {
    background: rgba(230, 230, 230, 1);
}

/* Contact content */
.contact-content {
    background: transparent;
    padding: 0;
}

.contact-cards {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.contact-card {
    background: transparent;
    padding: 1.5rem;
    border-radius: 4px;
    text-align: left;
    text-decoration: none;
    color: inherit;
    transition: background 0.2s ease;
    border: 1px solid rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    gap: 1rem;
}

.contact-card:hover {
    background: rgba(242, 242, 242, 0.5);
}

.contact-icon {
    font-size: 1.75rem;
    flex-shrink: 0;
}

.contact-card h3 {
    font-family: sohne, "Helvetica Neue", Helvetica, Arial, sans-serif;
    color: rgba(41, 41, 41, 1);
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.contact-card p {
    color: rgba(117, 117, 117, 1);
    font-size: 0.875rem;
}

.contact-info {
    flex: 1;
}

/* Footer */
.footer {
    text-align: center;
    padding: 3rem 24px;
    color: rgba(117, 117, 117, 1);
    margin-top: 3rem;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
    font-family: sohne, "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-size: 0.875rem;
}

/* Responsive */
@media (max-width: 768px) {
    .nav-container {
        flex-direction: column;
        gap: 1rem;
    }

    .hero h1 {
        font-size: 2rem;
    }

    .container {
        padding: 120px 20px 40px;
    }

    .about-content p {
        font-size: 1.0625rem;
    }
}
