/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: #2C3E50;
    background-color: #FFFFFF;
    font-size: 20px;
}

.container {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Navigation */
nav {
    background-color: #FFFFFF;
    border-bottom: 1px solid #ECF0F1;
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 100;
}

nav .container {
    display: flex;
    justify-content: center;
    align-items: center;
}

.logo {
    font-size: 1.4rem;
    font-weight: 600;
    color: #2C3E50;
    text-decoration: none;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-links a {
    color: #2C3E50;
    text-decoration: none;
    transition: color 0.3s ease;
    font-size: 1.1rem;
}

.nav-links a:hover,
.nav-links a.active {
    color: #3498DB;
}

/* Hero Section */
.hero {
    padding: 4rem 0 3rem;
    text-align: center;
}

.profile-photo {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    object-fit: cover;
    margin: 1rem 0;
    border: 3px solid #3498DB;
}

.hero h1 {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
    color: #2C3E50;
}

.subtitle {
    font-size: 1.3rem;
    color: #7F8C8D;
    margin-bottom: 1.5rem;
}

.social-links {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    margin-top: 1.5rem;
}

.social-links a {
    color: #3498DB;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.social-links a:hover {
    color: #2980B9;
}

/* Sections */
.section {
    padding: 3rem 0;
    border-top: 1px solid #ECF0F1;
}

.section h2 {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    color: #2C3E50;
}

.section p {
    margin-bottom: 1rem;
    line-height: 1.7;
}

/* Skills Section */
.skills-section {
    background-color: #FAFAFA;
}

.skill-category {
    margin-bottom: 2rem;
}

.skill-category h3 {
    font-size: 1.1rem;
    margin-bottom: 0.8rem;
    color: #34495E;
    font-weight: 600;
}

.skills-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.6rem;
}

.tag {
    display: inline-block;
    padding: 0.4rem 0.9rem;
    background-color: #FFFFFF;
    border: 1px solid #ECF0F1;
    border-radius: 4px;
    font-size: 0.9rem;
    color: #2C3E50;
}

/* Experience Section */
.experience-item {
    margin-bottom: 2.5rem;
}

.experience-header {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    margin-bottom: 0.3rem;
    flex-wrap: wrap;
}

.experience-item h3 {
    font-size: 1.3rem;
    color: #2C3E50;
}

.date {
    color: #7F8C8D;
    font-size: 0.95rem;
}

.company {
    color: #3498DB;
    font-weight: 500;
    margin-bottom: 0.8rem;
}

.experience-item ul {
    margin-left: 1.5rem;
}

.experience-item li {
    margin-bottom: 0.7rem;
    line-height: 1.6;
}

/* Education Section */
.education-item {
    margin-bottom: 1.5rem;
}

/* Blog Coming Soon */
.blog-coming-soon {
    min-height: 50vh;
    display: flex;
    align-items: center;
    text-align: center;
}

.blog-coming-soon h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.coming-soon-message {
    font-size: 1.3rem;
    color: #7F8C8D;
}

/* Strong text styling */
strong {
    color: #166092;
    font-weight: 600;
}

/* Footer */
footer {
    background-color: #FAFAFA;
    border-top: 1px solid #ECF0F1;
    padding: 2rem 0;
    text-align: center;
    margin-top: 3rem;
}

footer p {
    color: #7F8C8D;
    font-size: 0.9rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero h1 {
        font-size: 2rem;
    }

    .subtitle {
        font-size: 1.1rem;
    }

    .nav-links {
        gap: 1rem;
    }

    .experience-header {
        flex-direction: column;
        align-items: flex-start;
    }

    .date {
        margin-top: 0.2rem;
    }

    .section {
        padding: 2rem 0;
    }
}