/* ===== PROJECT SPECIFIC STYLES ===== */
/* Inherits global variables and base styles from ../style.css */

.content {
    /* Override main content padding for project pages if needed, 
       but generally we want to keep it consistent. 
       Resetting margin/padding here to align with main layout */
    margin-left: var(--nav-width);
    padding: 4rem;
    max-width: 1200px;
}

/* ===== HERO ===== */
.project-hero {
    text-align: center;
    margin-bottom: 4rem;
    padding-top: 2rem;
}

.project-hero h1 {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    line-height: 1.2;
}

.project-tagline {
    color: var(--text-secondary);
    font-size: 1.2rem;
    max-width: 700px;
    margin: 0 auto 2rem auto;
    line-height: 1.6;
}

.project-links {
    margin-top: 2.5rem;
    display: flex;
    gap: 1.5rem;
    justify-content: center;
}

/* ===== SECTIONS ===== */
.project-section {
    margin-bottom: 5rem;
}

.project-section h2 {
    margin-bottom: 2rem;
    font-size: 2rem;
    display: flex;
    align-items: center;
    gap: 15px;
    color: var(--text-primary);
}

.project-section h2 i {
    color: var(--accent-primary);
}

.project-content {
    color: var(--text-secondary);
    line-height: 1.8;
    font-size: 1.05rem;
    max-width: 900px;
    background: var(--bg-secondary);
    padding: 2.5rem;
    border-radius: var(--border-radius);
    border: 1px solid rgba(255, 255, 255, 0.03);
}

/* ===== TECH STACK ===== */
.tech-stack {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-top: 0.5rem;
}

.tech-item {
    padding: 0.8rem 1.5rem;
    background: var(--bg-secondary);
    border-radius: 30px;
    display: flex;
    align-items: center;
    gap: 10px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: var(--transition);
    font-size: 0.95rem;
    color: var(--text-secondary);
}

.tech-item i {
    color: var(--accent-secondary);
    font-size: 1.1rem;
}

.tech-item:hover {
    border-color: var(--accent-primary);
    background: rgba(139, 92, 246, 0.1);
    color: var(--text-primary);
    transform: translateY(-3px);
}

/* ===== MOBILE ===== */
@media (max-width: 900px) {
    .content {
        margin-left: 0;
        padding: 2rem 1.5rem;
        padding-bottom: 100px;
        /* Space for mobile nav */
    }

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

    .project-links {
        flex-direction: column;
        gap: 1rem;
    }

    .btn {
        width: 100%;
        text-align: center;
        justify-content: center;
    }
}