.project-detail {
    min-height: 100vh;
}

.detail-hero {
    height: 60vh;
    background-size: cover;
    background-position: center;
    position: relative;
    color: white;
}

.detail-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, rgba(0,0,0,0.3), rgba(0,0,0,0.7));
}

.detail-hero-content {
    position: relative;
    padding: 2rem 5%;
    height: 100%;
    display: flex;
    align-items: flex-end;
}

.project-meta {
    max-width: 800px;
}

.project-title {
    font-size: 3rem;
    margin: 1rem 0;
}

.tags {
    display: flex;
    gap: 1rem;
}

.tag {
    background: var(--primary-color);
    padding: 0.5rem 1rem;
    border-radius: 4px;
}

.detail-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 3rem 5%;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.gallery-item {
    aspect-ratio: 16/9;
    overflow: hidden;
    border-radius: 8px;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.gallery-item:hover img {
    transform: scale(1.05);
}

.time-chart {
    margin-top: 2rem;
    padding: 2rem;
    background: var(--light-color);
    border-radius: 8px;
}

.project-info {
    padding: 1.5rem;
    background: transparent;
    color: white;
}

.project-info h3 {
    color: white;
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
}

.project-info p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.9rem;
    line-height: 1.4;
}

.score {
    color: white;
    font-weight: bold;
}

.score-text {
    color: rgba(255, 255, 255, 0.9);
} 