/* ============================================
   Projects Page Styles
   ============================================ */

.projects-hero {
    background: linear-gradient(135deg, rgba(23, 105, 232, 0.08) 0%, rgba(17, 169, 135, 0.06) 100%);
    padding: 60px 0;
    margin-bottom: 40px;
    border-bottom: 1px solid rgba(15, 20, 30, 0.08);
}

.project-details-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
    margin-bottom: 60px;
    align-items: start;
}

.project-details-content {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.project-details-content h3 {
    font-family: "Space Grotesk", "Plus Jakarta Sans", sans-serif;
    font-size: 1.4rem;
    line-height: 1.3;
}

.project-details-content p {
    color: var(--text-soft);
    line-height: 1.7;
}

.tech-stack {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 12px;
}

.tech-badge {
    background: rgba(17, 169, 135, 0.15);
    color: #0e8a6f;
    border: 1px solid rgba(17, 169, 135, 0.25);
    border-radius: 999px;
    padding: 5px 12px;
    font-size: 0.8rem;
    font-weight: 600;
}

.demo-placeholder {
    background: linear-gradient(135deg, rgba(23, 105, 232, 0.12) 0%, rgba(17, 169, 135, 0.08) 100%);
    border: 2px dashed rgba(23, 105, 232, 0.22);
    border-radius: var(--radius-lg);
    padding: 40px;
    text-align: center;
    color: var(--text-soft);
    font-size: 0.95rem;
}

.demo-icon {
    font-size: 2.5rem;
    margin-bottom: 12px;
    opacity: 0.6;
}

.video-container {
    background: #000;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.demo-video {
    width: 100%;
    height: auto;
    display: block;
}

.github-link {
    color: var(--brand-strong);
    font-weight: 700;
    text-decoration: underline;
}

.section {
    margin-bottom: 80px;
}

.back-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--brand-strong);
    font-weight: 700;
    margin-bottom: 40px;
    transition: transform 0.2s ease;
}

.back-link:hover {
    transform: translateX(-4px);
}

/* ============================================
   Responsive Design
   ============================================ */

@media (max-width: 768px) {
    .project-details-grid {
        grid-template-columns: 1fr;
    }

    .projects-hero {
        padding: 40px 0;
        margin-bottom: 30px;
    }
}
