/* General Body Styles */
body {
    font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
    color: #333;
    background-color: #f8f9fa; /* Light gray background */
    line-height: 1.6;
}

.container {
    max-width: 850px; /* Slightly wider for better content flow */
    background-color: #fff; /* White background for content */
    padding: 20px;
    margin-top: 20px;
    margin-bottom: 20px;
    box-shadow: 0 0 10px rgba(0,0,0,0.05); /* Subtle shadow */
}

/* Header Styles */
header .profile-img {
    width: 120px; /* Smaller profile image */
    height: 120px;
    border-radius: 50%;
    margin-bottom: 15px;
    border: 3px solid #ddd;
}

header h1 {
    font-family: 'Georgia', serif;
    font-size: 2.5em;
    color: #222; /* Darker color for name */
    margin-bottom: 0.25em;
}

header .lead {
    font-size: 1.1em;
    color: #555;
    margin-bottom: 0.5em;
}

header p a {
    color: #007bff;
    text-decoration: none;
}
header p a:hover {
    text-decoration: underline;
}

/* Navigation Bar Styles */
.navbar {
    margin-bottom: 30px;
    border-bottom: 1px solid #eee;
    padding-bottom: 10px;
}

.navbar-nav .nav-link {
    color: #007bff;
    font-weight: 500;
    padding: 0.5rem 1rem;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
    color: #0056b3;
    text-decoration: underline;
}

/* Section Styles */
section {
    margin-bottom: 30px;
    padding-top: 10px; /* Add some space for nav links */
}

section h2 {
    font-family: 'Georgia', serif;
    font-size: 1.8em;
    color: #333;
    border-bottom: 2px solid #007bff; /* Accent color border */
    padding-bottom: 0.3em;
    margin-bottom: 0.75em;
}

/* Skills List */
#skills ul {
    list-style-type: none;
    padding-left: 0;
}

#skills ul li {
    background-color: #e9ecef; /* Light background for skill items */
    border: 1px solid #ced4da;
    padding: 8px 12px;
    margin-bottom: 8px;
    border-radius: 4px;
    font-size: 0.95em;
}

#skills ul li strong {
    color: #007bff;
}

/* Connect Buttons */
#connect .btn {
    margin: 5px;
    padding: 10px 20px;
    font-size: 1em;
}

/* Footer Styles */
footer {
    margin-top: 40px;
    padding-top: 20px;
    border-top: 1px solid #eee;
    font-size: 0.9em;
    color: #666;
}
