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

body {
    font-family: 'DM Sans', sans-serif;
    line-height: 1.6;
}

/* Navbar styles */
#navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background-color: #f8f9fa;
    padding: 1rem 0;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    z-index: 1000;
}

#navbar ul {
    list-style: none;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
}

#navbar li {
    margin: 0 1rem;
}

#navbar a {
    text-decoration: none;
    color: #333;
}

/* Section styles */
section {
    padding: 32px 2rem;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

h1, h2 {
    margin-bottom: 1.5rem;
}

h3 {
    margin-bottom: 1rem;
}

/* Profile section */
.profile-container {
    text-align: center;
    margin-top: 2rem;
}

.profile-pic {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    margin-bottom: 1.5rem;
}

/* Education and Experience sections */
.education-item, .experience-item {
    margin-bottom: 2rem;
}

.experience-item ul {
    list-style-position: inside;
    margin-top: 0.5rem;
}

/* Skills section */
.skills-container {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
}

.skill-item {
    background-color: #f8f9fa;
    padding: 0.5rem 1rem;
    border-radius: 20px;
}

/* Responsive design */
@media (max-width: 768px) {
    #navbar ul {
        flex-direction: column;
        align-items: center;
    }

    #navbar li {
        margin: 0.5rem 0;
    }

    section {
        padding: 3rem 1rem;
    }
}

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}
