/*Global Styles 
body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    color: #333;
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
    background-color: #f4f4f4;
}

h1, h2, h3 {
    color: #2c3e50;
}

a {
    color: #3498db;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

/* Navigation 
#navbar {
    background-color: #2c3e50;
    padding: 10px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
}

#navbar ul {
    list-style-type: none;
    padding: 0;
    display: flex;
    justify-content: center;
    margin: 0;
}

#navbar li {
    margin: 0 15px;
}

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

#navbar a.active {
    border-bottom: 2px solid #3498db;
}

/* Sections 
section {
    background-color: white;
    margin-bottom: 20px;
    padding: 20px;
    border-radius: 5px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

/* Profile Section 
.profile-section {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.profile-picture {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    object-fit: cover;
    margin-right: 20px;
}

/* Skills 
.skills-container {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.skill {
    background-color: #3498db;
    color: white;
    padding: 5px 10px;
    border-radius: 3px;
}

/* Projects 
.project-item {
    border-left: 4px solid #3498db;
    padding-left: 15px;
    margin-bottom: 15px;
}

/* Footer 
footer {
    text-align: center;
    margin-top: 20px;
    padding: 10px;
    background-color: #2c3e50;
    color: white;
}

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

    #navbar li {
        margin: 5px 0;
    }

    .profile-section {
        flex-direction: column;
        text-align: center;
    }

    .profile-picture {
        margin-right: 0;
        margin-bottom: 20px;
    }
}*/

/* Global Styles */
body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    color: #333;
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
    background-color: #f4f4f4;
}

h1, h2, h3 {
    color: #2c3e50;
}

h3 {
    margin-bottom: 5px; /* Tighter spacing for subtitles */
}

a {
    color: #3498db;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

/* Navigation */
#navbar {
    background-color: #2c3e50;
    padding: 10px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    position: relative; 
}

#navbar ul {
    list-style-type: none;
    padding: 0;
    display: flex;
    justify-content: center;
    margin: 0;
}

#navbar li {
    margin: 0 15px;
}

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

#navbar a.active {
    border-bottom: 2px solid #3498db;
}

/* Hamburger Button Styling */
#hamburger-btn {
    display: none;
    background: none;
    border: none;
    font-size: 28px;
    cursor: pointer;
    color: white;
    padding: 10px 20px;
}

/* Sections */
section {
    background-color: white;
    margin-bottom: 20px;
    padding: 20px;
    border-radius: 5px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

/* Profile Section */
.profile-section {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.profile-info h1 {
    margin-bottom: 5px;
}

.profile-picture {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    object-fit: cover;
    margin-right: 20px;
}

/* Skills Categories */
.skills-category {
    margin-bottom: 15px;
}

.skills-category h3 {
    font-size: 1.1em;
    border-bottom: 1px solid #eee;
    padding-bottom: 5px;
    margin-bottom: 10px;
}

.skills-container {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.skill {
    background-color: #3498db;
    color: white;
    padding: 5px 10px;
    border-radius: 3px;
    font-size: 0.9em;
}

/* Projects & Experience */
.project-item, .experience-item {
    border-left: 4px solid #3498db;
    padding-left: 15px;
    margin-bottom: 20px;
}

.experience-item ul, .project-item ul {
    margin-top: 5px;
    padding-left: 20px;
}

/* Footer */
footer {
    text-align: center;
    margin-top: 20px;
    padding: 10px;
    background-color: #2c3e50;
    color: white;
}

/* Responsive Design (768px Breakpoint) */
@media (max-width: 768px) {
    #hamburger-btn {
        display: block; 
    }

    #navbar ul {
        display: none; 
        flex-direction: column;
        width: 100%;
        background-color: #2c3e50;
        text-align: center;
        padding-bottom: 15px;
    }

    #navbar ul.active {
        display: flex;
    }

    #navbar li {
        margin: 15px 0;
    }

    .profile-section {
        flex-direction: column;
        text-align: center;
    }

    .profile-picture {
        margin-right: 0;
        margin-bottom: 20px;
    }
}