* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #fafafa;
}

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

/* Header */
header {
    padding: 20px 0;
    background: #fff;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 24px;
    font-weight: 700;
    color: #333;
    letter-spacing: -0.02em;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 30px;
}

.nav-links a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    font-size: 14px;
    letter-spacing: 0.5px;
    transition: color 0.3s;
}

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

/* Hero Section */
.hero {
    margin-top: 80px;
    padding: 80px 0;
    background: #fff;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.hero-left {
    display: flex;
    flex-direction: column;
}

.profile-img {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    margin-bottom: 30px;
    object-fit: cover;
}

.hero-text h1 {
    font-size: 48px;
    font-weight: 300;
    line-height: 1.2;
    margin-bottom: 20px;
    color: #333;
    letter-spacing: -0.02em;
}

.hero-text p {
    font-size: 18px;
    color: #666;
    margin-bottom: 30px;
    line-height: 1.6;
}

.hero-right {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.hero-info {
    background: #f8f9fa;
    padding: 40px;
    border-radius: 8px;
}

.hero-info h2 {
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 15px;
    color: #333;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.hero-info p {
    font-size: 14px;
    color: #666;
    margin-bottom: 20px;
    line-height: 1.6;
}

.stats {
    display: flex;
    flex-direction: column;
    gap: 30px;
    margin-top: 30px;
}

.stat h3 {
    font-size: 14px;
    font-weight: 600;
    color: #333;
    margin-bottom: 8px;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.stat p {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
}

.hero-image {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.section-title {
    font-size: 32px;
    font-weight: 300;
    color: #333;
    text-align: center;
    margin-bottom: 60px;
    letter-spacing: -0.02em;
}

/* Projects Section */
.projects {
    padding: 80px 0;
}

.project {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    margin-bottom: 100px;
    align-items: center;
}

.project:nth-child(even) {
    direction: rtl;
}

.project:nth-child(even) > * {
    direction: ltr;
}

.project-info h3 {
    font-size: 32px;
    font-weight: 300;
    margin-bottom: 10px;
    color: #333;
    letter-spacing: -0.02em;
}

.project-meta {
    font-size: 14px;
    color: #999;
    margin-bottom: 20px;
    font-weight: 400;
}

.project-description {
    font-size: 16px;
    color: #666;
    line-height: 1.6;
    margin-bottom: 30px;
}

.project-image {
    width: 100%;
    aspect-ratio: 16/9;
    object-fit: cover;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.project-link {
    display: inline-block;
    margin-top: 20px;
    color: #333;
    text-decoration: none;
    font-weight: 500;
    font-size: 14px;
}

.project-link::after {
    content: '↗';
    margin-left: 10px;
    font-size: 18px;
}

/* CTA Section */
.cta {
    background: #fff;
    padding: 100px 0;
    text-align: center;
}

.cta h2 {
    font-size: 64px;
    font-weight: 300;
    line-height: 1.2;
    margin-bottom: 40px;
    color: #333;
    letter-spacing: -0.02em;
}

.cta-button {
    display: inline-block;
    background: #333;
    color: #fff;
    padding: 15px 30px;
    text-decoration: none;
    border-radius: 25px;
    font-weight: 500;
    font-size: 14px;
    transition: background 0.3s;
}

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

/* Footer */
footer {
    background: #333;
    color: #fff;
    padding: 40px 0;
    text-align: center;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-bottom: 20px;
}

.footer-links a {
    color: #fff;
    text-decoration: none;
    opacity: 0.8;
    transition: opacity 0.3s;
    font-size: 14px;
}

.footer-links a:hover {
    opacity: 1;
}

.footer-credit {
    font-size: 14px;
    color: #999;
    margin-top: 20px;
}

.footer-info {
    text-align: center;
    margin-bottom: 20px;
}

.footer-info p {
    color: #fff;
    font-size: 16px;
    margin: 5px 0;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-content,
    .project {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .hero-text h1 {
        font-size: 36px;
    }

    .project-info h3 {
        font-size: 24px;
    }

    .cta h2 {
        font-size: 48px;
    }

    .nav-links {
        display: none;
    }

    .stats {
        flex-direction: column;
    }

    .hero-image {
        height: 300px;
    }
} 