/* ===== PROJECT PAGE ===== */

.project-page {
    max-width: 1100px;
    margin: 0 auto;
    padding: 40px 20px;
}

.project-header {
    margin-bottom: 40px;
}

.project-header h1 {
    font-size: 2.5rem;
    margin-bottom: 10px;
}

.project-subtitle {
    font-size: 1.1rem;
    color: #888;
}

.project-section {
    margin-bottom: 50px;
}

.project-section h2 {
    margin-bottom: 15px;
    border-left: 4px solid #FF5C00;
    padding-left: 12px;
}

.project-section p {
    line-height: 1.7;
}

/* Technology tags */

.tech-stack {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.tech-tag {
    background: #1f1f1f;
    color: white;
    padding: 8px 14px;
    border-radius: 20px;
    font-size: 0.9rem;
}

/* Images */

.project-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
}

.project-gallery img {
    width: 100%;
    border-radius: 12px;
    display: block;
}

/* Optional info box */

.project-info {
    background: rgba(255,255,255,0.05);
    padding: 20px;
    border-radius: 12px;
    margin-bottom: 30px;
}