/* ============================================
   CHARIS BARBOSA — PORTFOLIO
   project.css — Project Page Styles (Lab 6 Style)
   ============================================ */

/* ── PROJECT CONTAINER ── */
.proj-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 60px 24px;
}

/* ── PROJECT SECTIONS ── */
.proj-section {
    margin-bottom: 48px;
}

.proj-section h2 {
    font-size: 1.3rem;
    font-weight: 700;
    color: #222;
    margin-bottom: 16px;
}

.proj-section p {
    font-size: 0.95rem;
    color: #444;
    line-height: 1.8;
    margin-bottom: 12px;
}

/* ── DIVIDER ── */
.proj-divider {
    border: none;
    border-top: 1px solid #eee;
    margin: 0 0 48px 0;
}

/* ── PROJECT TAG ── */
.proj-tag {
    display: inline-block;
    padding: 4px 14px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    margin-top: 12px;
    font-family: 'Space Mono', monospace;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.proj-tag-teal { background-color: #7ecfc0; color: #fff; }
.proj-tag-blue { background-color: #4a5ba8; color: #fff; }
.proj-tag-dark { background-color: #444; color: #fff; }

/* ── PROJECT META ── */
.proj-meta {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    background-color: #f0eeeb;
    border-radius: 6px;
    padding: 20px;
    margin-top: 20px;
}

.proj-meta-item {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.proj-meta-label {
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #999;
}

.proj-meta-value {
    font-size: 0.88rem;
    font-weight: 600;
    color: #222;
}

/* ── PROJECT IMAGE ── */
.proj-img {
    width: 100%;
    height: auto;
    border-radius: 4px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.08);
    margin-top: 20px;
    display: block;
}

/* ── PROJECT LIST ── */
.proj-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.proj-list li {
    font-size: 0.9rem;
    color: #444;
    line-height: 1.7;
    padding: 10px 0 10px 20px;
    position: relative;
    border-bottom: 1px solid #f0eeeb;
}

.proj-list li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: #7ecfc0;
    font-weight: 700;
}

/* ── COLOR PALETTE ── */
.proj-colors {
    display: flex;
    gap: 20px;
    margin-top: 20px;
    flex-wrap: wrap;
}

.proj-color-item {
    text-align: center;
}

.proj-color-swatch {
    width: 50px;
    height: 50px;
    border-radius: 6px;
    margin-bottom: 8px;
    box-sizing: border-box;
}

.proj-color-item p {
    font-size: 0.72rem;
    color: #666;
    font-family: 'Space Mono', monospace;
    margin: 0;
    line-height: 1.5;
}

/* ── FLAVOR TAGS ── */
.proj-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin: 16px 0;
}

.proj-flavor {
    display: inline-block;
    color: #fff;
    font-size: 0.78rem;
    font-weight: 600;
    padding: 6px 14px;
    border-radius: 20px;
}

/* ── ADJECTIVE CARDS ── */
.proj-adjectives {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    margin-top: 16px;
}

.proj-adjective-card {
    background-color: #f0eeeb;
    border-radius: 6px;
    padding: 20px;
}

.proj-adjective-card h3 {
    font-size: 0.95rem;
    font-weight: 700;
    color: #4a5ba8;
    margin-bottom: 8px;
}

.proj-adjective-card p {
    font-size: 0.83rem;
    color: #555;
    line-height: 1.6;
    margin: 0;
}

/* ── CTA ── */
.proj-cta {
     border-radius: 6px;

    text-align: center;
    margin-top: 48px;
}

/* ── RESPONSIVE ── */
@media (max-width: 768px) {
    .proj-container {
        padding: 40px 16px;
    }
    .proj-meta {
        grid-template-columns: 1fr 1fr;
    }
    .proj-adjectives {
        grid-template-columns: 1fr;
    }
    .proj-colors {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .proj-meta {
        grid-template-columns: 1fr;
    }

    /* ADD THESE: */
    .proj-cta {
        display: flex;
        flex-direction: column;
        gap: 12px;
    }

    .proj-cta .btn {
        width: 100%;
        text-align: center;
        margin-left: 0 !important;
    }
}

