/* ============================================
   PROJECT DETAIL PAGE
   ============================================ */

.project-detail-section {
    min-height: 100vh;
    padding: 120px 0 80px;
}

.project-detail-container {
    max-width: 1000px;
    margin: 0 auto;
}

/* Back Button */
.back-button {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--accent-cyan);
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
    margin-bottom: 30px;
    transition: all 0.3s ease;
}

.back-button:hover {
    transform: translateX(-5px);
    gap: 12px;
}

/* Project Header */
.project-header {
    margin-bottom: 40px;
}

.project-category-badge {
    display: inline-block;
    padding: 8px 20px;
    background: rgba(0, 245, 255, 0.1);
    border: 1px solid rgba(0, 245, 255, 0.3);
    border-radius: 50px;
    color: var(--accent-cyan);
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 20px;
}

.project-title {
    font-family: 'Orbitron', sans-serif;
    font-size: 48px;
    font-weight: 900;
    background: linear-gradient(135deg, #00f5ff 0%, #ff00ff 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 25px;
    line-height: 1.2;
}

.project-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    margin-bottom: 40px;
    padding-bottom: 30px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.meta-item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--text-muted);
    font-size: 15px;
}

.meta-item .icon {
    font-size: 18px;
}

.meta-item a {
    color: var(--accent-cyan);
    text-decoration: none;
    transition: color 0.3s ease;
}

.meta-item a:hover {
    color: var(--accent-magenta);
}

/* Featured Image */
.project-featured-image {
    width: 100%;
    border-radius: 20px;
    margin-bottom: 50px;
    overflow: hidden;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.project-featured-image img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s ease;
}

.project-featured-image:hover img {
    transform: scale(1.05);
}

/* Project Content */
.project-content {
    background: rgba(255, 255, 255, 0.02);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    padding: 50px;
    margin-bottom: 50px;
}

.project-content h2 {
    font-size: 32px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 20px;
    margin-top: 40px;
}

.project-content h2:first-child {
    margin-top: 0;
}

.project-content h3 {
    font-size: 24px;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 15px;
    margin-top: 30px;
}

.project-content p {
    font-size: 18px;
    line-height: 1.8;
    color: var(--text-secondary);
    margin-bottom: 20px;
}

.project-content ul,
.project-content ol {
    margin: 20px 0;
    padding-left: 30px;
}

.project-content li {
    font-size: 17px;
    line-height: 1.8;
    color: var(--text-secondary);
    margin-bottom: 12px;
}

.project-content strong {
    color: var(--text-primary);
    font-weight: 600;
}

.project-content a {
    color: var(--accent-cyan);
    text-decoration: none;
    border-bottom: 1px solid rgba(0, 245, 255, 0.3);
    transition: all 0.3s ease;
}

.project-content a:hover {
    color: var(--accent-magenta);
    border-bottom-color: rgba(255, 0, 255, 0.3);
}

/* Project Tags */
.project-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 40px;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.project-tag {
    padding: 8px 16px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50px;
    color: var(--text-secondary);
    font-size: 14px;
    transition: all 0.3s ease;
}

.project-tag:hover {
    background: rgba(0, 245, 255, 0.1);
    border-color: var(--accent-cyan);
    color: var(--accent-cyan);
}

/* Related Projects */
.related-projects {
    margin-top: 80px;
}

.related-projects h2 {
    font-size: 32px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 40px;
    text-align: center;
}

/* Responsive */
@media (max-width: 768px) {
    .project-detail-section {
        padding: 100px 0 60px;
    }
    
    .project-title {
        font-size: 32px;
    }
    
    .project-meta {
        gap: 20px;
    }
    
    .project-content {
        padding: 30px 25px;
    }
    
    .project-content h2 {
        font-size: 26px;
    }
    
    .project-content h3 {
        font-size: 20px;
    }
    
    .project-content p,
    .project-content li {
        font-size: 16px;
    }
}

@media (max-width: 480px) {
    .project-title {
        font-size: 28px;
    }
    
    .project-meta {
        flex-direction: column;
        gap: 15px;
    }
    
    .project-content {
        padding: 25px 20px;
    }
}
