/* Project Page Styles */
.project-hero {
    padding: 120px 0 60px;
    background: var(--bg-light);
    border-bottom: 1px solid var(--border);
}

.project-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}

.project-type {
    display: inline-block;
    padding: 6px 16px;
    background: var(--text-dark);
    color: white;
    border-radius: var(--radius);
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 16px;
}

.project-header h1 {
    font-size: 48px;
    margin-bottom: 16px;
}

.project-tagline {
    font-size: 20px;
    color: var(--text-light);
    margin-bottom: 24px;
}

.project-meta {
    display: flex;
    justify-content: center;
    gap: 16px;
    color: var(--text-lighter);
    font-size: 14px;
}

/* Content Layout */
.project-content {
    padding: 60px 0;
}

.content-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 60px;
}

.content-main {
    max-width: 700px;
}

.section {
    margin-bottom: 48px;
}

.section h2 {
    font-size: 28px;
    margin-bottom: 20px;
}

.section h3 {
    font-size: 20px;
    margin-top: 24px;
    margin-bottom: 12px;
    color: var(--text-dark);
}

.section p {
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 16px;
}

.achievement-list {
    list-style: none;
    padding: 0;
}

.achievement-list li {
    padding: 12px 0;
    color: var(--text-light);
    font-size: 16px;
    border-bottom: 1px solid var(--border);
}

.achievement-list li:last-child {
    border-bottom: none;
}

.tech-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 20px;
}

.tech-item {
    padding: 8px 16px;
    background: var(--bg-light);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    font-size: 14px;
    color: var(--text-dark);
}

/* Sidebar */
.content-sidebar {
    position: sticky;
    top: 100px;
    height: fit-content;
}

.gallery {
    margin-bottom: 32px;
}

.gallery h3 {
    font-size: 16px;
    margin-bottom: 16px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--text-lighter);
}

.gallery-image {
    width: 100%;
    margin-bottom: 16px;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    transition: transform 0.3s;
}

.gallery-image:hover {
    transform: scale(1.02);
}

.gallery-video {
    width: 100%;
    margin-bottom: 16px;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}

.project-links h3 {
    font-size: 16px;
    margin-bottom: 16px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--text-lighter);
}

.external-link {
    display: inline-block;
    padding: 12px 20px;
    background: var(--text-dark);
    color: white;
    border-radius: var(--radius);
    font-weight: 500;
    transition: background 0.2s;
}

.external-link:hover {
    background: var(--accent-hover);
}

/* Feature List */
.feature-list {
    list-style: none;
    padding: 0;
}

.feature-list li {
    padding: 12px 0;
    padding-left: 24px;
    position: relative;
    color: var(--text-light);
    line-height: 1.6;
}

.feature-list li:before {
    content: "→";
    position: absolute;
    left: 0;
    color: var(--text-dark);
    font-weight: bold;
}

/* Responsive */
@media (max-width: 968px) {
    .content-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .content-sidebar {
        position: relative;
        top: 0;
    }

    .project-header h1 {
        font-size: 36px;
    }
}

@media (max-width: 768px) {
    .project-hero {
        padding: 100px 0 40px;
    }

    .project-header h1 {
        font-size: 32px;
    }

    .project-tagline {
        font-size: 18px;
    }

    .section h2 {
        font-size: 24px;
    }
}