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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    color: #333;
    line-height: 1.6;
    background: #ffffff;
}

/* Top Navigation */
.top-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: #fefefe;
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 0 0 20px 0;
    transition: background 0.3s ease, backdrop-filter 0.3s ease;
}

.top-nav.scrolled {
    background: rgba(254, 254, 254, 0.3);
    backdrop-filter: blur(5px);
}

.nav-container {
    width: 100%;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

.nav-name {
    font-family: Arial, sans-serif;
    font-size: 35pt;
    font-weight: 600;
    color: #333;
    text-decoration: none;
    letter-spacing: -0.02em;
    text-transform: uppercase;
    opacity: 1;
    position: relative;
    z-index: 1;
    margin-left: 50px;
    margin-top: 20px;
}

.nav-link {
    font-family: Arial, sans-serif;
    font-size: 35pt;
    font-weight: 600;
    color: #333;
    text-decoration: none;
    text-transform: uppercase;
    transition: color 0.3s ease;
    position: relative;
    z-index: 1;
    margin-right: 50px;
    margin-top: 20px;
    letter-spacing: -0.02em;
    opacity: 1;
}

.nav-link:hover {
    color: #333;
}

/* Contact Section */
.contact-section {
    padding: 12rem 2rem 6rem;
    background: #ffffff;
    width: 100%;
    min-height: 100vh;
}

.contact-container {
    max-width: 1530px;
    margin: 0 auto;
}

.contact-header {
    display: flex;
    gap: 3rem;
    align-items: flex-start;
}

.profile-thumbnail {
    width: 500px;
    height: 500px;
    border-radius: 0;
    object-fit: cover;
    flex-shrink: 0;
}

.bio-text {
    flex: 1;
    font-family: Arial, sans-serif;
    font-size: 18pt;
    font-weight: 600;
    line-height: 1.4;
    color: #333;
    text-align: justify;
}

.bio-text p {
    margin-bottom: 1.5rem;
}

.social-link {
    display: inline-flex;
    align-items: center;
    color: #333;
    margin-top: 1.5rem;
    transition: opacity 0.2s ease;
}

.social-link:hover {
    opacity: 0.6;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-name {
        font-size: 22pt;
        margin-left: 24px;
        margin-top: 18px;
    }

    .nav-link {
        font-size: 22pt;
        margin-right: 24px;
        margin-top: 18px;
    }

    .top-nav {
        padding: 0 0 16px 0;
    }

    .contact-section {
        padding: 6rem 1.5rem 4rem;
    }

    .contact-header {
        display: block;
    }

    .profile-thumbnail {
        float: left;
        width: 140px;
        height: 140px;
        margin: 0.25rem 1.25rem 0.5rem 0;
        shape-outside: inset(0);
    }

    .bio-text {
        font-size: 13pt;
        font-weight: 500;
        text-align: left;
        line-height: 1.5;
        min-height: 0;
    }

    .social-link {
        margin-top: 0.5rem;
        margin-bottom: 0;
    }
}

@media (max-width: 480px) {
    .nav-name {
        font-size: 16pt;
        margin-left: 16px;
        margin-top: 14px;
    }

    .nav-link {
        font-size: 16pt;
        margin-right: 16px;
        margin-top: 14px;
    }

    .top-nav {
        padding: 0 0 12px 0;
    }

    .contact-section {
        padding: 4.5rem 1.25rem 3rem;
    }

    .profile-thumbnail {
        width: 110px;
        height: 110px;
        margin-right: 1rem;
    }

    .bio-text {
        font-size: 12pt;
    }
}

