/* 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: #333;
    background-color: #fff;
}

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

/* Navigation */
nav {
    background: #fff;
    border-bottom: 1px solid #e5e5e5;
    position: sticky;
    top: 0;
    z-index: 100;
}

.nav-container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 1rem 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.2rem;
    font-weight: 600;
    color: #333;
    text-decoration: none;
}

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

.nav-links a {
    color: #666;
    text-decoration: none;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: #333;
}

.cta-button {
    background: #333;
    color: #fff !important;
    padding: 0.5rem 1rem;
    border-radius: 6px;
    transition: background 0.3s;
}

.cta-button:hover {
    background: #000;
}

/* Hero Section */
.hero {
    padding: 3rem 0 2rem;
    background: linear-gradient(135deg, #f5f7fa 0%, #fff 100%);
}

.hero-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
    text-align: center;
}

.profile-photo {
    width: 180px;
    height: 180px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 1.5rem;
    border: 4px solid #fff;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

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

.tagline {
    font-size: 1.3rem;
    color: #666;
    margin-bottom: 1rem;
}

.intro {
    font-size: 1.1rem;
    color: #333;
    margin-bottom: 1.5rem;
    font-weight: 400;
}

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

.hero-social-icons a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    background: #fff;
    border-radius: 50%;
    color: #333;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.hero-social-icons a:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    color: #000;
}

.hero-social-icons svg {
    width: 24px;
    height: 24px;
}

/* Sections */
section {
    padding: 2rem 0;
}

section h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
}

.section-intro {
    font-size: 1.1rem;
    color: #555;
    margin-bottom: 2rem;
}

/* About Section */
.about {
    background: #fff;
}

.about p {
    margin-bottom: 1.5rem;
    font-size: 1.05rem;
    line-height: 1.7;
    color: #444;
}

.personality-note {
    background: #f5f7fa;
    padding: 1.5rem;
    border-radius: 8px;
    margin-top: 2rem;
}

.personality-note p {
    margin-bottom: 0;
}

/* Skills Section */
.skills {
    background: #fafafa;
}

.skills-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.skill-category h3 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.skill-category ul {
    list-style: none;
}

.skill-category li {
    padding: 0.5rem 0;
    color: #555;
    border-bottom: 1px solid #e5e5e5;
}

.skill-category li:last-child {
    border-bottom: none;
}

/* Work Samples Section */
.work-samples {
    background: #fff;
}

.work-links {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.work-link-card {
    background: #f5f7fa;
    padding: 2rem;
    border-radius: 8px;
    transition: transform 0.3s, box-shadow 0.3s;
}

.work-link-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.1);
}

.work-link-card h3 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    color: #1a1a1a;
}

.work-link-card p {
    color: #666;
    margin-bottom: 1rem;
    line-height: 1.6;
}

.link-button {
    display: inline-block;
    color: #333;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
}

.link-button:hover {
    color: #000;
}

.work-note {
    color: #666;
    font-style: italic;
    margin-top: 2rem;
}

/* Testimonials Section */
.testimonials {
    background: #fafafa;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.testimonial {
    background: #fff;
    padding: 2rem;
    border-radius: 8px;
    border-left: 4px solid #333;
}

.quote {
    font-size: 1rem;
    line-height: 1.7;
    color: #444;
    margin-bottom: 1rem;
    font-style: italic;
}

.attribution {
    font-size: 0.9rem;
    color: #666;
    font-weight: 500;
}

/* CTA Section */
.cta {
    background: linear-gradient(135deg, #1a1a1a 0%, #333 100%);
    color: #fff;
    text-align: center;
}

.cta h2 {
    color: #fff;
}

.cta p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    color: #e5e5e5;
}

.cta-button-large {
    display: inline-block;
    background: #fff;
    color: #333;
    padding: 1rem 2rem;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    transition: transform 0.3s;
}

.cta-button-large:hover {
    transform: translateY(-2px);
}

/* Footer */
footer {
    background: #1a1a1a;
    color: #fff;
    padding: 2rem 0;
    text-align: center;
}

.footer-links {
    display: flex;
    gap: 2rem;
    justify-content: center;
    margin-top: 1rem;
}

.footer-links a {
    color: #e5e5e5;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: #fff;
}

/* Blog Page Styles */
.blog-header {
    padding: 3rem 0 2rem;
    text-align: center;
}

.blog-intro {
    max-width: 700px;
    margin: 0 auto 3rem;
    text-align: center;
    color: #666;
}

.blog-grid {
    display: grid;
    gap: 3rem;
    max-width: 800px;
    margin: 0 auto;
}

.blog-post {
    border-bottom: 1px solid #e5e5e5;
    padding-bottom: 2rem;
}

.blog-post:last-child {
    border-bottom: none;
}

.blog-post h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: #1a1a1a;
}

.blog-post h3 a {
    color: #1a1a1a;
    text-decoration: none;
    transition: color 0.3s;
}

.blog-post h3 a:hover {
    color: #666;
}

.blog-date {
    color: #999;
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.blog-post p {
    color: #555;
    line-height: 1.7;
    margin-bottom: 1rem;
}

.read-more {
    color: #333;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
}

.read-more:hover {
    color: #000;
}

.coming-soon {
    text-align: center;
    padding: 4rem 0;
    color: #999;
    font-style: italic;
}

/* Resume Page Styles */
.resume-section {
    background: #fff;
    margin-bottom: 1.5rem;
    padding: 0;
}

.resume-header {
    text-align: center;
    padding: 2rem 0 1.5rem;
    border-bottom: 2px solid #e5e5e5;
    margin-bottom: 1rem;
}

.resume-header h1 {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
}

.resume-header .tagline {
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 1rem;
}

.resume-contact {
    display: flex;
    gap: 2rem;
    justify-content: center;
    flex-wrap: wrap;
}

.resume-contact a {
    color: #333;
    text-decoration: none;
}

.experience-item, .education-item {
    margin-bottom: 1.5rem;
}

.job-header {
    margin-bottom: 1rem;
}

.job-title {
    font-size: 1.3rem;
    color: #1a1a1a;
    margin-bottom: 0.3rem;
}

.company {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 0.3rem;
}

.job-date {
    color: #999;
    font-size: 0.9rem;
}

.job-description {
    color: #444;
    line-height: 1.7;
    margin-bottom: 1rem;
}

.achievements {
    list-style: none;
}

.achievements li {
    padding-left: 1.5rem;
    position: relative;
    margin-bottom: 0.5rem;
    color: #555;
}

.achievements li:before {
    content: "•";
    position: absolute;
    left: 0;
    color: #333;
    font-weight: bold;
}

.skills-list {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.skill-tag {
    background: #f5f7fa;
    padding: 0.4rem 0.8rem;
    border-radius: 4px;
    font-size: 0.9rem;
    color: #555;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-links {
        gap: 1rem;
    }
    
    .hero h1 {
        font-size: 2rem;
    }
    
    .profile-photo {
        width: 140px;
        height: 140px;
    }
    
    section h2 {
        font-size: 1.6rem;
    }
    
    .skills-grid,
    .work-links,
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .nav-container {
        flex-direction: column;
        gap: 1rem;
    }
    
    .nav-links {
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .hero h1 {
        font-size: 1.6rem;
    }
    
    .tagline {
        font-size: 1.1rem;
    }
}
