/* Google Fonts Import */
@import url('https://fonts.googleapis.com/css2?family=EB+Garamond:ital,wght@0,400..800;1,400..800&family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap');

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

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: #1a1a1a;
    background-color: #ffffff;
    margin: 0;
    padding: 0;
}

/* Navigation */
nav {
    background: #ffffff;
    border-bottom: 1px solid #e5e5e5;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
}

.logo {
    font-size: 20px;
    font-weight: 600;
    color: #1a1a1a;
    letter-spacing: -0.5px;
    text-decoration: none;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 40px;
    margin: 0;
    padding: 0;
}

.nav-links a {
    text-decoration: none;
    color: #666666;
    font-weight: 400;
    font-size: 16px;
    transition: color 0.2s ease;
}

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

.nav-links a.active {
    color: #1a1a1a;
    font-weight: 500;
}

/* Hero Section */
.hero {
    background: #ffffff;
    color: #1a1a1a;
    padding: 140px 0 100px;
    text-align: left;
}

.hero-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.hero-text h1 {
    font-size: 3.5rem;
    margin-bottom: 24px;
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: -2px;
}

.hero-text p {
    font-size: 1.25rem;
    margin-bottom: 40px;
    color: #666666;
    line-height: 1.6;
}

.hero-image {
    background: #f8f9fa;
    height: 400px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #999;
    font-size: 1.1rem;
}

.cta-button {
    display: inline-block;
    background: #1a1a1a;
    color: #ffffff;
    padding: 16px 32px;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 500;
    font-size: 16px;
    transition: all 0.2s ease;
}

.cta-button:hover {
    background: #333333;
    transform: translateY(-1px);
}

/* Work Section */
.work {
    padding: 120px 0;
    background: #ffffff;
}

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

.section-title {
    text-align: left;
    font-size: 2.5rem;
    margin-bottom: 60px;
    color: #1a1a1a;
    font-weight: 700;
    letter-spacing: -1px;
}

.projects-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 40px;
    margin-top: 0;
}

.project-card {
    background: #ffffff;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid #e5e5e5;
    transition: all 0.3s ease;
    cursor: pointer;
}

.project-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.08);
    border-color: #d0d0d0;
}

.project-thumbnail {
    width: 100%;
    height: 280px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.project-info {
    padding: 32px;
}

.project-name {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 12px;
    color: #1a1a1a;
    line-height: 1.3;
}

.project-date {
    color: #666666;
    font-size: 0.95rem;
    margin-bottom: 20px;
    font-weight: 400;
}

.project-category {
    display: inline-block;
    background: #f5f5f5;
    color: #666666;
    padding: 8px 16px;
    border-radius: 6px;
    font-size: 0.85rem;
    font-weight: 500;
    border: 1px solid #e5e5e5;
}

/* About Section */
.about {
    padding: 120px 0;
    background: #f8f9fa;
}

.about-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: left;
}

.about h2 {
    font-size: 2.5rem;
    margin-bottom: 40px;
    color: #1a1a1a;
    font-weight: 700;
    letter-spacing: -1px;
}

.about p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #666666;
    margin-bottom: 24px;
}

/* Contact Section */
.contact {
    padding: 140px 0 120px;
    background: #1a1a1a;
    color: #ffffff;
    min-height: 100vh;
}

.contact-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: left;
}

.contact h1 {
    font-size: 3rem;
    margin-bottom: 24px;
    font-weight: 700;
    letter-spacing: -1px;
}

.contact p {
    font-size: 1.25rem;
    margin-bottom: 60px;
    color: #cccccc;
    line-height: 1.7;
}

.contact-form {
    background: #2a2a2a;
    padding: 48px;
    border-radius: 12px;
    margin-bottom: 60px;
}

.form-group {
    margin-bottom: 32px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: #ffffff;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 16px;
    border: 1px solid #444444;
    border-radius: 8px;
    background: #1a1a1a;
    color: #ffffff;
    font-size: 16px;
    font-family: inherit;
    transition: border-color 0.2s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #ffffff;
}

.form-group textarea {
    height: 120px;
    resize: vertical;
}

.submit-btn {
    background: #ffffff;
    color: #1a1a1a;
    padding: 16px 32px;
    border: none;
    border-radius: 8px;
    font-weight: 500;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.2s ease;
}

.submit-btn:hover {
    background: #f0f0f0;
    transform: translateY(-1px);
}

.contact-links {
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
    margin-top: 40px;
}

.contact-links a {
    color: #ffffff;
    text-decoration: none;
    padding: 16px 24px;
    border: 1px solid #333333;
    border-radius: 8px;
    transition: all 0.2s ease;
    font-weight: 500;
}

.contact-links a:hover {
    background: #ffffff;
    color: #1a1a1a;
    border-color: #ffffff;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-links {
        gap: 20px;
    }

    .hero-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }

    .hero-text h1 {
        font-size: 2.5rem;
    }

    .hero-text p {
        font-size: 1.1rem;
    }

    .hero-image {
        height: 300px;
    }

    .projects-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .section-title {
        text-align: center;
    }

    .about-content {
        text-align: center;
    }

    .contact h1 {
        font-size: 2.5rem;
    }

    .contact p {
        font-size: 1.1rem;
    }

    .contact-form {
        padding: 32px 24px;
    }

    .contact-links {
        justify-content: center;
    }
}
