/* --- General Dark Theme Styles --- */
body {
    font-family: 'Lato', sans-serif;
    background-color: #121212; /* Very dark grey background */
    color: #e0e0e0; /* Off-white text for better readability */
    line-height: 1.6;
    margin: 0;
    padding: 2rem;
}

.cv-container {
    max-width: 900px;
    margin: 0 auto;
    background-color: #1e1e1e; /* Slightly lighter surface color */
    padding: 3rem;
    border-radius: 8px;
    border: 1px solid #333; /* Subtle border */
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
}

a {
    color: #58a6ff; /* A pleasant blue for links in dark mode */
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

/* --- Header --- */
.cv-header {
    text-align: center;
    border-bottom: 2px solid #333; /* Darker border */
    padding-bottom: 2rem;
    margin-bottom: 2rem;
}

.cv-header h1 {
    font-family: 'Poppins', sans-serif;
    font-size: 2.5rem;
    color: #ffffff; /* Pure white for the main heading */
    margin: 0;
}

.contact-info {
    margin-top: 1rem;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.5rem;
    color: #a0a0a0; /* Muted grey for secondary info */
}

.contact-info span {
    display: inline-flex;
    align-items-center; 
}

.contact-info i {
    margin-right: 0.5rem;
    color: #9370db; /* A lighter purple for better contrast */
}

/* --- Sections --- */
.cv-section {
    margin-bottom: 2.5rem;
}

.cv-section h2 {
    font-family: 'Poppins', sans-serif;
    font-size: 1.5rem;
    color: #ffffff;
    border-bottom: 2px solid #9370db; /* Accent color border */
    padding-bottom: 0.5rem;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
}

.cv-section h2 i {
    margin-right: 1rem;
}

/* --- Job & Education Entries --- */
.job {
    margin-bottom: 1.5rem;
}

.job h3 {
    font-size: 1.2rem;
    font-weight: 700;
    color: #e0e0e0;
    margin: 0;
}

.job-info {
    font-style: italic;
    color: #a0a0a0;
    margin-bottom: 0.5rem;
}

.job-description {
    padding-left: 20px;
    list-style-type: disc;
}
.job-description li {
    margin-bottom: 0.5rem;
}

.education-focus {
    margin: 0.2rem 0;
}

/* --- Skills Section --- */
.skills-container {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.skill-tag {
    background-color: #3a3a3a; /* Dark background for tags */
    color: #e0e0e0; /* Light text for tags */
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 700;
}

/* --- Responsive Design --- */
@media (max-width: 768px) {
    body {
        padding: 1rem;
    }
    .cv-container {
        padding: 1.5rem;
    }
    .cv-header h1 {
        font-size: 2rem;
    }
    .contact-info {
        flex-direction: column;
        gap: 0.5rem;
        align-items: center;
    }
}