/* Reset and base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', Arial, sans-serif;
    background: #f8f9fb;
    color: #222;
    line-height: 1.6;
}

.container {
    width: 90%;
    max-width: 1100px;
    margin: 0 auto;
}

/* Header */
.header {
    background: #fff;
    box-shadow: 0 2px 8px rgba(0,0,0,0.04);
    position: sticky;
    top: 0;
    z-index: 100;
}

.header .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 0;
}

.logo h1 {
    font-weight: 700;
    font-size: 2rem;
    letter-spacing: 2px;
}

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

.nav a {
    text-decoration: none;
    color: #222;
    font-weight: 500;
    font-size: 1.1rem;
    transition: color 0.2s;
}

.nav a:hover {
    color: #0077ff;
}

/* Hero */
.hero {
    background: linear-gradient(90deg, #e0e7ff 0%, #f8fafc 100%);
    padding: 60px 0 40px 0;
}

.hero-header {
    text-align: center;
    margin-bottom: 40px;
}

.hero-header h1 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.hero-header p {
    font-size: 1.2rem;
    color: #555;
}

.about-content {
    display: flex;
    align-items: center;
    gap: 40px;
    flex-wrap: wrap;
    justify-content: center;
    max-width: 800px;
    margin: 0 auto;
}

.profile-photo {
    flex: 0 0 160px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.photo-circle {
    width: 140px;
    height: 140px;
    border-radius: 50%;
    background: #e0e7ff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 4rem;
    color: #0077ff;
    box-shadow: 0 2px 8px rgba(0,0,0,0.07);
}

.about-text {
    max-width: 500px;
}

.about-text ul {
    margin-top: 10px;
    margin-left: 20px;
}

.about-text li {
    margin-bottom: 6px;
}

/* Projects */
.projects {
    padding: 60px 0 40px 0;
    background: #f1f5f9;
}

.projects h2 {
    font-size: 2rem;
    margin-bottom: 30px;
    text-align: center;
}

.projects-grid {
    display: flex;
    flex-direction: column;
    gap: 30px;
    max-width: 600px;
    margin: 0 auto;
}

.project-card {
    background: #fff;
    border-radius: 14px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.06);
    padding: 28px 22px;
    text-align: center;
    transition: transform 0.2s;
}

.project-card:hover {
    transform: translateY(-6px) scale(1.03);
}

.project-icon {
    font-size: 2.2rem;
    color: #0077ff;
    margin-bottom: 12px;
}

.project-link {
    display: inline-block;
    margin-top: 10px;
    color: #0077ff;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s;
}

.project-link:hover {
    color: #005bb5;
}

.project-description {
    margin: 10px 0 0 0;
    font-size: 0.98rem;
    color: #444;
    line-height: 1.5;
}

/* Contact */
.contact {
    padding: 60px 0 40px 0;
}

.contact h2 {
    font-size: 2rem;
    margin-bottom: 30px;
    text-align: center;
}

.contact-content {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.contact-info {
    background: #fff;
    border-radius: 14px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.06);
    padding: 32px 28px;
    min-width: 300px;
    text-align: center;
}

.email-section h3,
.social-section h3 {
    margin-bottom: 8px;
    font-size: 1.1rem;
    color: #0077ff;
}

.email-section p {
    font-size: 1.05rem;
    margin-bottom: 18px;
    color: #333;
}

.social-links {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    justify-content: center;
    margin-top: 15px;
}

.social-link {
    text-decoration: none;
    transition: transform 0.2s;
}

.social-link:hover {
    transform: scale(1.1);
}

.social-icon {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: #f5f5f5;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #333;
    transition: all 0.2s;
}

.social-icon:hover {
    background: #e0e0e0;
    color: #0077ff;
}

.social-icon svg {
    width: 20px;
    height: 20px;
}

/* Footer */
.footer {
    background: #f1f5f9;
    text-align: center;
    padding: 18px 0;
    font-size: 1rem;
    color: #888;
    margin-top: 30px;
}

/* Responsive */
@media (max-width: 700px) {
    .about-content {
        flex-direction: column;
        gap: 24px;
    }
    .projects-grid {
        grid-template-columns: 1fr;
    }
    .header .container {
        flex-direction: column;
        gap: 10px;
    }
} 