/* About Hero Section */
.about-hero {
    padding: 8rem 2rem 2rem 2rem;
    background: var(--bg-primary);
}

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

.about-hero-content .feature-image {
    width: 200px;
    height: 200px;
    margin: 0 auto 2rem;
    border-radius: 50%;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.about-hero-content .feature-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.about-hero-text h1 {
    font-family: var(--font-display);
    font-size: 3.5rem;
    color: var(--text-primary);
    margin-bottom: 2rem;
}

.about-hero-text p {
    font-family: var(--font-primary);
    font-size: 1.2rem;
    line-height: 1.6;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
}

.profile-container {
    width: 100%;
    max-width: 400px;
    margin: 0 auto 2rem;
    position: relative;
}

.hero-content {
    max-width: 1400px;
    margin: 0 auto;
    width: 100%;
}

.hero-content h1 {
    font-family: var(--font-display);
    font-size: 3.5rem;
    color: var(--text-primary);
    margin-bottom: 3rem;
}

.intro-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    width: 100%;
}

.intro-image {
    border-radius: 12px;
    overflow: hidden;
    width: 100%;
}

.intro-image img {
    width: 100%;
    height: auto;
    display: block;
}

.intro-text h2 {
    font-family: var(--font-display);
    font-size: 2rem;
    color: var(--text-primary);
    margin-bottom: 1.5rem;
    line-height: 1.3;
}

.intro-text p {
    font-family: var(--font-primary);
    font-size: 1.1rem;
    line-height: 1.6;
    color: var(--text-secondary);
}

.about-content {
    padding: 2rem 2rem;
    background: var(--bg-secondary);
}

.content-section {
    max-width: 1400px;
    margin: 0 auto;
}

.content-section h2 {
    font-family: var(--font-display);
    font-size: 2.5rem;
    color: var(--text-primary);
    margin-bottom: 2rem;
}

.content-section p {
    font-family: var(--font-primary);
    font-size: 1.1rem;
    line-height: 1.6;
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
    max-width: 800px;
}

/* Video Section */
.video-section {
    background: var(--bg-secondary);
}

.video-container {
    max-width: 1000px;
    margin: 0 auto;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 9;
}

.video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

/* Inspirations Section */
.inspirations-section {
    padding: 4rem 2rem;
    background: var(--bg-secondary);
    position: relative;
}

.inspirations-section h2 {
    text-align: center;
    font-size: 2.2rem;
    color: #2d3748;
    margin-bottom: 2rem;
}

.inspirations-content {
    max-width: 800px;
    margin: 0 auto;
}

.inspirations-content p {
    color: #4a5568;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

/* Side Projects Section */
.side-projects {
    padding: 4rem 2rem;
    background: var(--bg-secondary);
}

.projects-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.project-content h2 {
    font-size: 2.2rem;
    color: #2d3748;
    margin-bottom: 1.5rem;
}

.project-content p {
    color: #4a5568;
    line-height: 1.8;
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

.portfolio-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: #2d3748;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: color 0.3s ease;
}

.portfolio-link:hover {
    color: #4299e1;
}

.portfolio-link i {
    transition: transform 0.3s ease;
}

.portfolio-link:hover i {
    transform: translateX(5px);
}

.project-image {
    width: 100%;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
}

.art-preview {
    width: 100%;
    height: 400px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.project-image:hover .art-preview {
    transform: scale(1.02);
}

/* Responsive Design */
@media (max-width: 768px) {
    .about-hero {
        padding: 6rem 1rem .5rem;
    }

    .about-hero-content .feature-image {
        width: 150px;
        height: 150px;
        margin-bottom: 1.5rem;
    }

    .about-hero-text h1 {
        font-size: 2.5rem;
        margin-bottom: 1.5rem;
    }

    .about-hero-text p {
        font-size: 1.1rem;
        max-width: 100%;
    }

    .profile-image {
        width: 240px;
        height: 240px;
    }

    .hero-content h1 {
        font-size: 2.2rem;
    }

    .intro-text h2 {
        font-size: 1.75rem;
    }

    .intro-text p {
        font-size: 1rem;
    }

    .video-container {
        max-width: 95%;
        margin: 0 auto;
    }

    .inspirations-section {
        padding: 3rem 1rem;
    }

    .inspirations-section h2 {
        font-size: 1.75rem;
    }

    .inspirations-content p {
        font-size: 1rem;
    }

    .projects-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .project-content h2 {
        font-size: 1.75rem;
    }

    .project-content p {
        font-size: 1rem;
    }

    .art-preview {
        height: 300px;
    }
}

/* Animation for profile image */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.profile-container {
    animation: fadeInUp 0.8s ease-out forwards;
}

.about-content {
    animation: fadeInUp 0.8s ease-out 0.2s forwards;
    opacity: 0;
}

.video-container {
    animation: fadeInUp 0.8s ease-out 0.4s forwards;
    opacity: 0;
}

.inspirations-section {
    animation: fadeInUp 0.8s ease-out 0.6s forwards;
    opacity: 0;
}

.about-section p {
    color: #444444;
    line-height: 1.6em;
    margin-bottom: 1.5rem;
}

/* Match feature image style from case studies */
.about-content .feature-image {
    width: 100%;
    height: 400px;
    margin-bottom: 2rem;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}
.about-content .feature-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 45%;
} 