.project-hero {
    min-height: 60vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    overflow: hidden;
    background: linear-gradient(135deg, #B24BCB, #64CB4B);
}

.project-hero-content {
    text-align: center;
    z-index: 1;
    padding: 2rem;
}

.project-hero h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    font-family: "Winky Sans", sans-serif;
}

.project-subtitle {
    font-size: 1.5rem;
    opacity: 0.9;
}

.project-hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, rgb(222 90 255 / 42%), rgb(99 255 5 / 11%));
    z-index: 0;
}

.project-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 4rem 2rem;
}

.project-content section {
    margin-bottom: 4rem;
}

.project-content h2 {
    font-size: 2rem;
    color: #333;
    margin-bottom: 1.5rem;
    font-family: "Winky Sans", sans-serif;
}

.project-overview p {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #444;
}

.project-features ul {
    list-style: none;
    padding: 0;
}

.project-features li {
    font-size: 1.1rem;
    color: #444;
    margin-bottom: 1rem;
    padding-left: 1.5rem;
    position: relative;
}

.project-features li::before {
    content: "•";
    color: #B24BCB;
    position: absolute;
    left: 0;
}

.tech-stack {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.tech-tag {
    background: #f0f0f0;
    padding: 0.5rem 1rem;
    border-radius: 2rem;
    font-size: 0.9rem;
    color: #666;
    transition: all 0.3s ease;
}

.tech-tag:hover {
    background: #B24BCB;
    color: white;
    transform: translateY(-2px);
}

.challenge {
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: #f9f9f9;
    border-radius: 1rem;
    transition: transform 0.3s ease;
}

.challenge:hover {
    transform: translateY(-5px);
}

.challenge h3 {
    color: #B24BCB;
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.challenge p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 0.5rem;
}

@media screen and (max-width: 768px) {
    .project-hero h1 {
        font-size: 2.5rem;
    }

    .project-subtitle {
        font-size: 1.2rem;
    }

    .project-content {
        padding: 2rem 1rem;
    }

    .project-content section {
        margin-bottom: 2rem;
    }

    .project-content h2 {
        font-size: 1.8rem;
    }
}

.back-button {
    position: fixed;
    top: 2rem;
    left: 2rem;
    background: rgba(255, 255, 255, 0.2);
    color: white;
    padding: 0.8rem 1.5rem;
    border-radius: 2rem;
    text-decoration: none;
    font-size: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
    z-index: 100;
    backdrop-filter: blur(5px);
}

.back-button.scrolled {
    background: rgba(255, 255, 255, 0.9);
    color: #333;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.back-button:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: translateX(-5px);
}

.back-button.scrolled:hover {
    background: rgba(255, 255, 255, 1);
}

.back-button svg {
    width: 20px;
    height: 20px;
}