/* --- Google AI Studio Inspired Dark Theme --- */

/* General Body Styles */
body {
    /* Main page background - not pure black to reduce eye strain */
    background-color: #1e1f22;
    /* Main text color - light gray, not pure white */
    color: #e0e0e0;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Noto Sans", Helvetica, Arial, sans-serif;
    line-height: 1.6;
    margin: 0;
}

/* Main Content Card */
.container {
    /* Slightly lighter dark gray for the main content area */
    background-color: #2b2d30;
    border: 1px solid #3f4146; /* Subtle border for definition */
    box-shadow: none; /* Shadows don't look good on dark-on-dark themes */
    max-width: 960px;
    margin: 2rem auto;
    padding: 1.5rem 2.5rem;
    border-radius: 8px;
}

/* Profile Header Section */
.profile-header {
    display: flex;
    align-items: center;
    border-bottom: 1px solid #3f4146;
    padding-bottom: 1.5rem;
    margin-bottom: 1.5rem;
}

.profile-photo img {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
    margin-right: 1.5rem;
    border: 3px solid #4a4d52;
}

/* Name and Contact Info */
.profile-contact h1 {
    /* Accent color for your name */
    color: #89b4fa; /* A pleasant, readable blue */
    margin: 0;
    font-size: 2.5rem;
}

.profile-contact p {
    /* A slightly dimmer color for less important text */
    color: #c0c0c0;
    margin: 0.25rem 0;
    font-size: 1rem;
}

/* Main Section Headings (Education, Skills, etc.) */
h2 {
    /* Using the accent color for all major headings */
    color: #89b4fa;
    border-bottom: 1px solid #3f4146;
    padding-bottom: 0.5rem;
    margin-top: 2rem;
    font-size: 1.75rem;
}

/* List styles */
ul {
    padding-left: 20px;
    list-style-type: none;
}

ul li {
    margin-bottom: 0.75rem;
}

ul li ul {
    margin-top: 0.5rem;
    padding-left: 25px;
}

ul li ul li {
    margin-bottom: 0.25rem;
    font-size: 0.95em;
    color: #c0c0c0; /* Dimmer text for sub-items */
}

/* Link Styles */
a {
    color: #89b4fa;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

/* Responsive design for smaller screens (no color changes needed) */
@media (max-width: 768px) {
    .profile-header {
        flex-direction: column;
        text-align: center;
    }

    .profile-photo img {
        margin-right: 0;
        margin-bottom: 1rem;
    }
    
    .container {
        padding: 1.5rem 1rem;
        margin: 1rem;
        border-radius: 0;
        border: none;
    }
}

/* --- Navigation Bar Styles --- */
.navbar {
    background-color: #2b2d30; /* Matches the content card background */
    border-bottom: 1px solid #3f4146;
    padding: 0.5rem 2rem;
    display: flex;
    justify-content: center; /* Centers the menu items */
}

.navbar ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
}

.navbar li {
    margin: 0 10px; /* Space between menu items */
}

.navbar a {
    color: #e0e0e0;
    text-decoration: none;
    font-size: 1rem;
    font-weight: 500;
    padding: 10px 15px;
    border-radius: 5px;
    transition: background-color 0.2s ease-in-out, color 0.2s ease-in-out;
}

/* Hover effect for menu items */
.navbar a:hover {
    background-color: #89b4fa; /* The blue accent color */
    color: #1e1f22; /* The dark background color for text */
}
