/* =====================================================
   PROJECT PAGE STYLES
   ===================================================== */

/* Project Hero */
.project-hero {
    padding: calc(80px + var(--space-4xl)) var(--space-xl) var(--space-3xl);
    background: var(--surface);
    border-bottom: 1px solid var(--border);
    position: relative;
    overflow: hidden;
}

.project-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(ellipse at 30% 0%, var(--orange-glow) 0%, transparent 50%),
        radial-gradient(ellipse at 70% 100%, var(--purple-glow) 0%, transparent 50%);
    opacity: 0.3;
    pointer-events: none;
}

.project-hero .container {
    position: relative;
    z-index: 1;
}

.breadcrumb {
    color: var(--text-muted);
    font-size: 0.875rem;
    margin-bottom: var(--space-md);
}

.breadcrumb a {
    color: var(--text-secondary);
    text-decoration: none;
    transition: color var(--transition-fast);
}

.breadcrumb a:hover {
    color: var(--orange);
}

.project-hero h1 {
    font-size: 3rem;
    margin-bottom: var(--space-lg);
}

.hero-description {
    font-size: 1.25rem;
    color: var(--text-secondary);
    margin-bottom: var(--space-xl);
    max-width: 800px;
}

.hero-badges {
    display: flex;
    gap: var(--space-sm);
    flex-wrap: wrap;
    margin-bottom: var(--space-xl);
}

.hero-actions {
    display: flex;
    gap: var(--space-md);
    flex-wrap: wrap;
}

/* Content Grid */
.project-content {
    padding: var(--space-4xl) 0;
}

.content-grid {
    display: grid;
    grid-template-columns: 1fr 320px;
    gap: var(--space-3xl);
}

.content-main {
    min-width: 0;
}

.content-section {
    margin-bottom: var(--space-3xl);
}

.content-section h2 {
    margin-bottom: var(--space-lg);
    padding-bottom: var(--space-sm);
    border-bottom: 2px solid var(--border);
}

.content-section p {
    color: var(--text-secondary);
    line-height: 1.7;
    font-size: 1.05rem;
}

/* Feature List */
.feature-list {
    list-style: none;
    display: grid;
    gap: var(--space-md);
}

.feature-list li {
    padding: var(--space-md);
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    border-left: 3px solid var(--orange);
    color: var(--text-secondary);
    line-height: 1.6;
}

.feature-list li::before {
    content: '✓';
    display: inline-block;
    width: 24px;
    height: 24px;
    background: var(--gradient-fire);
    color: var(--void);
    border-radius: 50%;
    text-align: center;
    line-height: 24px;
    margin-right: var(--space-sm);
    font-weight: bold;
}

/* Screenshots */
.screenshot-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: var(--space-lg);
}

.screenshot-placeholder {
    aspect-ratio: 16/9;
    background: var(--surface);
    border: 2px dashed var(--border);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
    font-size: 1.25rem;
}

/* Sidebar */
.content-sidebar {
    position: sticky;
    top: 80px;
    align-self: start;
}

.sidebar-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-xl);
    padding: var(--space-xl);
    margin-bottom: var(--space-lg);
}

.sidebar-card h3 {
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--text-muted);
    margin-bottom: var(--space-md);
}

.status-indicator {
    padding: var(--space-md);
    background: var(--bg);
    border-radius: var(--radius-lg);
    text-align: center;
}

.tech-list {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-xs);
}

.tech-item {
    padding: var(--space-xs) var(--space-sm);
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    font-size: 0.8rem;
    font-family: 'JetBrains Mono', monospace;
    color: var(--text-muted);
}

.link-list {
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
}

.link-item {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    padding: var(--space-sm);
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    text-decoration: none;
    color: var(--text-secondary);
    transition: all var(--transition-fast);
}

.link-item:hover {
    border-color: var(--orange);
    color: var(--orange);
}

.related-projects {
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
}

.related-project {
    padding: var(--space-sm);
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    text-decoration: none;
    color: var(--text);
    transition: all var(--transition-fast);
}

.related-project:hover {
    border-color: var(--purple);
    transform: translateX(4px);
}

.related-project-name {
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 2px;
}

.related-project-category {
    font-size: 0.75rem;
    color: var(--text-muted);
}

/* Responsive */
@media (max-width: 968px) {
    .content-grid {
        grid-template-columns: 1fr;
    }
    
    .content-sidebar {
        position: static;
    }
    
    .project-hero h1 {
        font-size: 2rem;
    }
}
