/* Reset and base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
 
body {
    background-color: #1a1a1a;
    color: #ffffff;
    font-family: Arial, sans-serif;
    overflow-x: hidden;
}
 
/* Social links - top right */
.social-links {
    position: fixed;
    top: 20px;
    right: 40px;
    display: flex;
    gap: 20px;
    z-index: 1000;
}
 
.social-links img {
    width: 34px;
    height: 34px;
    filter: invert(1);
    transition: transform 0.3s ease;
}
 
.social-links img:hover {
    transform: scale(1.5);
}
 
.social-links a {
    text-decoration: none;
    color: transparent;
}
 
/* Sidebar styles */
.sidebar {
    position: fixed;
    left: 0;
    top: 0;
    width: 300px;
    height: 100vh;
    background-color: #000000;
    padding: 40px;
    display: flex;
    flex-direction: column;
}
 
.name-header h1 {
    color: white;
    font-size: 2.5rem;
    font-weight: bold;
    margin-bottom: 60px;
    line-height: 1.2;
}
 
.nav-links {
    list-style: none;
}
 
.nav-links li {
    margin: 20px 0;
}
 
.nav-links a {
    color: #808080;
    text-decoration: none;
    font-size: 1.2rem;
    transition: color 0.3s ease;
}
 
.nav-links a:hover,
.nav-links a.active {
    color: white;
}
 
/* Main content */
main {
    margin-left: 300px;
    padding: 40px;
}
 
section {
    min-height: 100vh;
    padding: 40px 0;
}
 
/* Welcome section */
.welcome {
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-height: 100vh;
}
 
/* Projects section */
.projects {
    min-height: 100vh;
}
 
/* About section */
.about {
    min-height: 100vh;
}
 
/* Ensure proper spacing for sections */
section:not(:first-child) {
    margin-top: 40px;
}
 
/* Welcome section styles */
.welcome {
    padding: 60px 0;
}
 
.welcome h2 {
    font-size: 4rem;
    margin-bottom: 2rem;
    font-weight: lighter;
}
 
.intro-text {
    max-width: 600px;
    margin-bottom: 2rem;
}
 
.intro-text p {
    color: #808080;
    font-size: 1.2rem;
    line-height: 1.6;
    margin-bottom: 1rem;
}
 
.interests {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}
 
.tag {
    background-color: #333;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    color: #808080;
}
 
.welcome-content {
    display: flex;
    gap: 4rem;
    align-items: center;
    max-width: 1200px;
}
 
.welcome-text {
    flex: 1;
}
 
.profile-image {
    flex-shrink: 0;
}
 
.profile-image img {
    width: 300px;
    height: 300px;
    border-radius: 50%;
    object-fit: cover;
}
 
/* Projects section styles */
.projects {
    padding: 60px 0;
}
 
.projects h2 {
    font-size: 3rem;
    margin-bottom: 3rem;
    font-weight: lighter;
}
 
.projects-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1200px;
}
 
.project-card {
    background-color: #000000;
    padding: 2rem;
    border-radius: 8px;
    transition: transform 0.3s ease;
}
 
.project-card:hover {
    transform: translateY(-5px);
}
 
.project-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #ffffff;
}
 
.project-tech {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1rem;
}
 
.tech-tag {
    background-color: #333;
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
    font-size: 0.8rem;
    color: #808080;
}
 
.project-description {
    color: #808080;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}
 
.project-highlights {
    color: #808080;
    list-style-position: inside;
    padding-left: 1rem;
}
 
.project-highlights li {
    margin-bottom: 0.5rem;
    line-height: 1.4;
}
 
/* Mobile Responsiveness */
@media (max-width: 768px) {
    .sidebar {
        position: static;
        width: 100%;
        height: auto;
        padding: 20px;
    }
 
    main {
        margin-left: 0;
        padding: 20px;
    }
 
    .welcome-content {
        flex-direction: column;
        text-align: center;
        gap: 2rem;
    }
 
    .welcome-text {
        order: 2;
    }
 
    .profile-image {
        order: 1;
        margin-bottom: 2rem;
    }
 
    .profile-image img {
        width: 250px;
        height: 250px;
    }
 
    .social-links {
        position: static;
        justify-content: center;
        margin: 20px 0;
    }
 
    .projects-grid {
        grid-template-columns: 1fr;
    }
 
    .welcome h2, .projects h2 {
        font-size: 2.5rem;
    }
 
    .intro-text p {
        font-size: 1rem;
    }
 
    .nav-links {
        display: flex;
        justify-content: center;
        flex-wrap: wrap;
    }
 
    .nav-links li {
        margin: 10px;
    }
 
    .name-header h1 {
        font-size: 2rem;
        margin-bottom: 40px;
    }
}
 
/* Ensure full responsiveness */
* {
    max-width: 100%;
    box-sizing: border-box;
}
 
body, html {
    overflow-x: hidden;
}
 
img {
    max-width: 100%;
    height: auto;
}