/* style.css */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;600;700&family=Merriweather:wght@700&display=swap');

:root {
    --primary-color: #1a365d;
    --secondary-color: #2d3748;
    --accent-color: #3182ce;
    --text-color: #4a5568;
    --heading-color: #2d3748;
    --bg-color: #f7fafc;
    --white: #ffffff;
    --border-color: #e2e8f0;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--bg-color);
    padding: 2rem 1rem;
}

.container {
    max-width: 900px;
    margin: 0 auto;
    background: var(--white);
    padding: 3rem;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
    border-radius: 8px;
}

/* Header */
header {
    text-align: center;
    border-bottom: 2px solid var(--primary-color);
    padding-bottom: 2rem;
    margin-bottom: 2rem;
}

header h1 {
    font-family: 'Merriweather', serif;
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.contact-info {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1.5rem;
    font-size: 0.9rem;
}

.contact-info span {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.contact-info i {
    color: var(--accent-color);
}

.contact-info a {
    color: inherit;
    text-decoration: none;
    transition: color 0.2s;
}

.contact-info a:hover {
    color: var(--accent-color);
}

/* Sections */
section {
    margin-bottom: 2.5rem;
}

h2 {
    font-size: 1.25rem;
    color: var(--primary-color);
    text-transform: uppercase;
    letter-spacing: 1px;
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 0.5rem;
    margin-bottom: 1.25rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

h2 i {
    font-size: 1rem;
    opacity: 0.8;
}

/* Experience */
.job {
    margin-bottom: 1.5rem;
}

.job-header {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    flex-wrap: wrap;
}

.job-header h3 {
    color: var(--heading-color);
    font-size: 1.15rem;
}

.date {
    font-weight: 600;
    font-size: 0.85rem;
    color: var(--accent-color);
}

.company-location {
    font-size: 0.95rem;
    margin-bottom: 0.75rem;
    font-style: italic;
}

ul {
    list-style-type: none;
    padding-left: 1rem;
}

ul li {
    position: relative;
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
}

ul li::before {
    content: "•";
    color: var(--accent-color);
    font-weight: bold;
    position: absolute;
    left: -1rem;
}

/* Two Column Layout */
.two-column {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.edu-item {
    margin-bottom: 1rem;
}

.edu-item h3 {
    font-size: 1.05rem;
    color: var(--heading-color);
}

.edu-item p {
    font-size: 0.9rem;
}

/* Skills */
.skills-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
}

.skill-category {
    background: #f1f5f9;
    padding: 1rem;
    border-radius: 6px;
    font-size: 0.9rem;
}

.skill-category strong {
    display: block;
    color: var(--primary-color);
    margin-bottom: 0.25rem;
}

/* Footer */
footer {
    text-align: center;
    margin-top: 3rem;
    font-size: 0.8rem;
    color: #a0aec0;
    border-top: 1px solid var(--border-color);
    padding-top: 1rem;
}

/* Responsive */
@media (max-width: 768px) {
    .container {
        padding: 1.5rem;
    }

    .job-header {
        flex-direction: column;
    }

    .two-column {
        grid-template-columns: 1fr;
        gap: 0;
    }

    header h1 {
        font-size: 2rem;
    }
}
