/* Project Detail Page Styles */

.project-detail {
    padding-top: var(--header-height);
}

.project-hero {
    padding: 4rem 0 2rem;
    background: radial-gradient(circle at 50% 50%, rgba(6, 182, 212, 0.1) 0%, transparent 60%);
}

.breadcrumb {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-bottom: 2rem;
}

.breadcrumb a {
    color: var(--highlight);
    transition: color 0.3s ease;
}

.breadcrumb a:hover {
    color: var(--text-main);
}

.breadcrumb span {
    color: var(--text-main);
}

.project-hero h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    background: var(--gradient-text);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.project-subtitle {
    font-size: 1.25rem;
    color: var(--text-muted);
}

.project-content {
    padding: 3rem 0 5rem;
}

.project-info {
    display: grid;
    grid-template-columns: 1fr 350px;
    gap: 4rem;
}

.info-main {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.project-image {
    width: 100%;
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.placeholder-image {
    width: 100%;
    aspect-ratio: 16 / 9;
    display: flex;
    align-items: center;
    justify-content: center;
}

.placeholder-image svg {
    opacity: 0.8;
}

.project-description h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: var(--text-main);
}

.project-description h3 {
    font-size: 1.5rem;
    margin: 2rem 0 1rem;
    color: var(--text-main);
}

.project-description p {
    color: var(--text-muted);
    line-height: 1.8;
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
}

.feature-list {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1rem;
    margin: 1.5rem 0;
}

.feature-list li {
    padding: 1rem;
    background: var(--bg-card);
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    color: var(--text-muted);
    transition: all 0.3s ease;
}

.feature-list li:hover {
    border-color: var(--highlight);
    transform: translateX(5px);
}

.tech-stack {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-top: 1.5rem;
}

.tech-badge {
    padding: 0.5rem 1rem;
    background: rgba(6, 182, 212, 0.1);
    border: 1px solid var(--highlight);
    border-radius: 20px;
    color: var(--highlight);
    font-size: 0.9rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

.tech-badge:hover {
    background: var(--highlight);
    color: var(--bg-dark);
}

.info-sidebar {
    position: sticky;
    top: calc(var(--header-height) + 2rem);
    height: fit-content;
}

.project-meta {
    background: var(--bg-card);
    padding: 2rem;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    margin-bottom: 2rem;
}

.meta-item {
    padding: 1.5rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.meta-item:last-child {
    border-bottom: none;
}

.meta-item h4 {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.meta-item p {
    font-size: 1.1rem;
    color: var(--text-main);
    font-weight: 500;
}

.status-active {
    color: #10b981;
}

.info-sidebar .cta-button {
    width: 100%;
    text-align: center;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .project-hero h1 {
        font-size: 2.5rem;
    }

    .project-subtitle {
        font-size: 1.1rem;
    }

    .project-info {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .info-sidebar {
        position: static;
    }

    .feature-list {
        grid-template-columns: 1fr;
    }
}