/* Project Detail Page Styles */

.project-hero {
    min-height: 60vh;
    background: linear-gradient(180deg, #000 0%, #0a0a0a 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 8rem 2rem 4rem;
    position: relative;
}

.project-hero-content {
    max-width: 1000px;
    width: 100%;
}

.back-button-fixed {
    display: none;
}

.breadcrumb-nav {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 3rem;
    font-size: 0.9rem;
    color: #666;
}

.breadcrumb-link {
    color: #aaa;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.breadcrumb-link:hover {
    color: #fff;
}

.breadcrumb-separator {
    color: #444;
    font-size: 0.8rem;
}

.breadcrumb-current {
    color: #fff;
}

.project-hero-title {
    font-size: clamp(3rem, 8vw, 6rem);
    color: #fff;
    margin-bottom: 1rem;
    letter-spacing: 0.02em;
    font-family: 'Bebas Neue', sans-serif;
    text-align: center;
}

.project-hero-subtitle {
    font-size: 1.5rem;
    color: #666;
    margin-bottom: 2rem;
    letter-spacing: 0.1em;
    text-align: center;
}

.project-hero-meta {
    display: flex;
    gap: 2rem;
    justify-content: center;
    flex-wrap: wrap;
}

.meta-item {
    font-size: 1rem;
    color: #aaa;
    padding: 0.75rem 1.5rem;
    background: #111;
    border-radius: 50px;
    border: 1px solid #222;
}

/* Project Overview */
.project-overview {
    background: #0a0a0a;
    padding: 6rem 2rem;
}

.project-container {
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
    position: relative;
}

.back-to-projects {
    display: none;
}

.overview-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 4rem;
}

.section-title {
    font-size: 2.5rem;
    color: #fff;
    margin-bottom: 2rem;
    letter-spacing: 0.02em;
    font-family: 'Bebas Neue', sans-serif;
}

.subsection-title {
    font-size: 1.8rem;
    color: #fff;
    margin: 2.5rem 0 1.5rem;
    letter-spacing: 0.02em;
}

.overview-text {
    font-size: 1.1rem;
    color: #aaa;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.feature-list {
    list-style: none;
    padding: 0;
    margin: 1.5rem 0;
}

.feature-list li {
    font-size: 1.05rem;
    color: #aaa;
    line-height: 1.8;
    padding-left: 2rem;
    position: relative;
    margin-bottom: 1rem;
}

.feature-list li::before {
    content: '✦';
    position: absolute;
    left: 0;
    color: #fff;
    opacity: 0.5;
}

/* Sidebar */
.sidebar-card {
    background: linear-gradient(135deg, #000 0%, #0a0a0a 100%);
    padding: 2rem;
    border-radius: 20px;
    border: 1px solid #222;
    margin-bottom: 2rem;
    transition: all 0.3s ease;
}

.sidebar-card:hover {
    border-color: #333;
    box-shadow: 0 10px 30px rgba(255, 255, 255, 0.05);
}

.sidebar-title {
    font-size: 1.5rem;
    color: #fff;
    margin-bottom: 1.5rem;
    letter-spacing: 0.05em;
}

.tech-stack {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.tech-badge {
    font-size: 0.9rem;
    color: #fff;
    padding: 0.5rem 1rem;
    background: #111;
    border-radius: 20px;
    border: 1px solid #222;
    letter-spacing: 0.05em;
    transition: all 0.3s ease;
}

.tech-badge:hover {
    background: #1a1a1a;
    border-color: #fff;
    transform: translateY(-2px);
}

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

.link-button {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 1.5rem;
    background: #111;
    border: 1px solid #222;
    border-radius: 12px;
    color: #fff;
    text-decoration: none;
    font-size: 1rem;
    letter-spacing: 0.05em;
    transition: all 0.3s ease;
}

.link-button:hover {
    background: #1a1a1a;
    border-color: #fff;
    transform: translateX(5px);
}

.link-button svg {
    flex-shrink: 0;
}

.stats-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.stat-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem 0;
    border-bottom: 1px solid #222;
}

.stat-label {
    font-size: 1rem;
    color: #666;
    letter-spacing: 0.05em;
}

.stat-value {
    font-size: 1.1rem;
    color: #fff;
    font-weight: 600;
}

/* Project Gallery */
.project-gallery {
    background: #000;
    padding: 6rem 2rem;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2.5rem;
    margin-top: 3rem;
}

.gallery-item {
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.gallery-item:hover {
    transform: translateY(-10px);
}

.gallery-placeholder {
    width: 100%;
    aspect-ratio: 16/10;
    background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 16px;
    border: 1px solid #222;
    transition: all 0.3s ease;
}

.gallery-item:hover .gallery-placeholder {
    border-color: #fff;
    box-shadow: 0 20px 60px rgba(255, 255, 255, 0.1);
}

.placeholder-text {
    font-size: 1.5rem;
    color: #444;
    letter-spacing: 0.1em;
    font-family: 'Bebas Neue', sans-serif;
}

.gallery-caption {
    font-size: 1rem;
    color: #aaa;
    margin-top: 1rem;
    text-align: center;
}

/* More Projects */
.more-projects {
    background: #0a0a0a;
    padding: 6rem 2rem;
}

.more-projects-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.more-project-card {
    background: linear-gradient(135deg, #000 0%, #0a0a0a 100%);
    padding: 3rem 2.5rem;
    border-radius: 20px;
    border: 1px solid #222;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 2rem;
    transition: all 0.3s ease;
    position: relative;
}

.more-project-card:hover {
    border-color: #fff;
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(255, 255, 255, 0.1);
}

.more-project-number {
    font-size: 4rem;
    font-weight: 700;
    color: #222;
    font-family: 'Bebas Neue', sans-serif;
}

.more-project-title {
    font-size: 1.8rem;
    color: #fff;
    letter-spacing: 0.02em;
    flex: 1;
}

.more-project-arrow {
    font-size: 2rem;
    color: #666;
    transition: all 0.3s ease;
}

.more-project-card:hover .more-project-arrow {
    color: #fff;
    transform: translateX(10px);
}

/* Responsive Design */
@media (max-width: 968px) {
    .breadcrumb-nav {
        margin-bottom: 2rem;
        font-size: 0.85rem;
    }
    
    .overview-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .gallery-grid {
        grid-template-columns: 1fr;
    }
    
    .more-projects-grid {
        grid-template-columns: 1fr;
    }
    
    .project-hero {
        padding: 6rem 2rem 3rem;
    }
    
    .project-hero-title {
        font-size: 3rem;
    }
}

@media (max-width: 640px) {
    .project-hero-meta {
        flex-direction: column;
        gap: 1rem;
    }
    
    .meta-item {
        width: 100%;
        text-align: center;
    }
}
