/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: #e0e0e0;
    background-color: #2a2d3a;
    overflow-x: hidden;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    right: 0;
    padding: 2rem 3rem;
    z-index: 1000;
}

.nav-container {
    display: flex;
    justify-content: flex-end;
}

.nav-menu {
    display: flex;
    gap: 2rem;
}

.nav-link {
    text-decoration: none;
    color: #e0e0e0;
    font-weight: 400;
    font-size: 1rem;
    transition: color 0.3s ease;
}

.nav-link:hover,
.nav-link.active {
    color: #ffffff;
}

/* Main Content */
.main-content {
    min-height: 100vh;
    padding: 4rem 0;
}

.content-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 3rem;
}

.content-wrapper {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 4rem;
    align-items: start;
    min-height: 80vh;
    padding-top: 3rem;
}

.text-content {
    max-width: 700px;
}

/* Typography */
.main-title {
    font-size: 4rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 2rem;
    line-height: 1.1;
}

.intro-text {
    font-size: 1.2rem;
    color: #e0e0e0;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.detail-text {
    font-size: 1rem;
    color: #c0c0c0;
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.closing-text {
    font-size: 1rem;
    color: #e0e0e0;
    margin-bottom: 3rem;
    line-height: 1.7;
}

/* Inline Links */
.inline-link {
    color: #e0e0e0;
    text-decoration: underline;
    text-underline-offset: 3px;
    transition: color 0.3s ease;
}

.inline-link:hover {
    color: #ffffff;
}

/* Social Links */
.social-links {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.social-link {
    color: #e0e0e0;
    text-decoration: underline;
    text-underline-offset: 3px;
    font-size: 1rem;
    transition: color 0.3s ease;
}

.social-link:hover {
    color: #ffffff;
}

.separator {
    color: #888;
    font-size: 1rem;
}

/* Profile Section */
.profile-section {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    padding-top: 2rem;
}

.profile-image {
    width: 200px;
    height: 200px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.profile-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Responsive Design */
@media screen and (max-width: 968px) {
    .content-wrapper {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: left;
    }
    
    .profile-section {
        order: -1;
        justify-content: flex-start;
        padding-top: 0;
    }
    
    .profile-image {
        width: 150px;
        height: 150px;
    }
    
    .main-title {
        font-size: 3rem;
    }
    
    .content-container {
        padding: 0 2rem;
    }
    
    .navbar {
        padding: 2rem 2rem;
    }
}

@media screen and (max-width: 768px) {
    .main-title {
        font-size: 2.5rem;
    }
    
    .intro-text {
        font-size: 1.1rem;
    }
    
    .nav-menu {
        gap: 1.5rem;
    }
    
    .content-wrapper {
        padding-top: 4rem;
    }
    
    .profile-image {
        width: 120px;
        height: 120px;
    }
}

@media screen and (max-width: 480px) {
    .main-title {
        font-size: 2rem;
    }
    
    .social-links {
        flex-wrap: wrap;
        gap: 0.5rem;
    }
    
    .content-container {
        padding: 0 1.5rem;
    }
    
    .navbar {
        padding: 1.5rem 1.5rem;
    }
    
    .nav-menu {
        gap: 1rem;
    }
}
