.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 0 2rem 4rem 2rem;
    margin-top: -4rem;
    justify-content: flex-start;
}

.hero-content {
    max-width: 1200px;
    margin-left: 2rem;
    text-align: left;
}

.hero-title {
    font-size: 3rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    background: linear-gradient(to bottom, var(--text-primary), var(--text-secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

@media (min-width: 768px) {
    .hero-title {
        font-size: 4rem;
    }
}

@media (min-width: 1024px) {
    .hero-title {
        font-size: 5rem;
    }
}

.name {
    color: var(--accent);
    position: relative;
    display: inline-block;
    background: none;
    -webkit-text-fill-color: var(--accent);
}

.name::after {
    content: '';
    position: absolute;
    bottom: 0.5rem;
    left: 0;
    width: 100%;
    height: 0.25rem;
    background-color: var(--accent);
    transform: skewX(-12deg);
}

.hero-description {
    font-size: 1.25rem;
    color: var(--text-secondary);
    max-width: 600px;
    margin-bottom: 2rem;
    line-height: 1.5;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.featured-projects {
    max-width: 1200px;
    margin: 0 auto;
    padding: 4rem 2rem;
}

.featured-projects h2 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 2rem;
    text-align: center;
}

.projects-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.project-card {
    background-color: var(--bg-secondary);
    border: 1px solid var(--border);
    border-radius: 1rem;
    overflow: hidden;
    height: 280px;
    transition: all 0.3s ease;
}

.project-card:hover {
    transform: translateY(-4px);
    border-color: var(--border-light);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.3), 0 10px 10px -5px rgba(0, 0, 0, 0.2);
}

.project-image {
    width: 100%;
    height: 180px;
    object-fit: cover;
    transition: all 0.3s ease;
}

.project-card:hover .project-image {
    transform: scale(1.05);
    filter: blur(2px);
}

.project-content {
    padding: 1.5rem;
    height: 100px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.project-title {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
}

.project-description {
    color: var(--text-secondary);
    margin-bottom: 1rem;
    flex-grow: 1;
}

.see-all-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-secondary);
    text-decoration: none;
    transition: all 0.2s ease;
    font-weight: 500;
}

.see-all-link:hover {
    color: var(--text-primary);
}

.see-all-link svg {
    width: 1rem;
    height: 1rem;
    transition: transform 0.2s ease;
}

.see-all-link:hover svg {
    transform: translateX(0.25rem);
}

.featured-projects > .see-all-link {
    display: flex;
    justify-content: center;
    margin-top: 2rem;
    font-size: 1.1rem;
}

@media (max-width: 768px) {
    .projects-grid {
        grid-template-columns: 1fr;
    }
    
    .hero-content {
        margin-left: 0;
    }
    
    .hero {
        padding-left: 1rem;
    }
}

