/* ============================================================
   overrides.css  —  Component-level refinements
   Loaded LAST so it wins specificity cleanly.
   ============================================================ */

/* ── Project number badge — enhanced styling ── */
.project-number {
    background: rgba(0, 217, 255, 0.12) !important;
    border: 1px solid rgba(0, 217, 255, 0.25) !important;
    box-shadow: 0 2px 10px rgba(0, 217, 255, 0.15), inset 0 0 8px rgba(0, 217, 255, 0.05) !important;
    backdrop-filter: blur(8px) !important;
    -webkit-backdrop-filter: blur(8px) !important;
    color: #ffffff !important;
    text-shadow: 0 0 6px rgba(0, 217, 255, 0.6) !important;
    font-weight: 600 !important;
    letter-spacing: 1px !important;
    font-size: 0.68rem !important;
    padding: 0.25rem 0.6rem !important;
    height: auto !important;
    min-width: 0 !important;
    border-radius: 6px !important;
    transition: all 0.3s ease;
}
.project-card:hover .project-number {
    box-shadow: 0 4px 15px rgba(0, 217, 255, 0.3), inset 0 0 10px rgba(0, 217, 255, 0.15) !important;
    background: rgba(0, 217, 255, 0.2) !important;
}

/* ── Project content padding ── */
.project-content {
    padding: 1rem 1.25rem 1rem !important;
}

/* ── Skills section — 2-column layout ── */
.skills-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.4rem 2.5rem;
    margin-bottom: 2.7rem;
}
.skill-header { margin-bottom: 0.58rem !important; }
.skill-name {
    font-size: 0.94rem !important;
    font-family: 'Poppins', sans-serif;
    color: var(--text-primary) !important;
    font-weight: 500 !important;
}

/* ── Tech Arsenal bar track ── */
.skill-bar {
    height: 9px !important;
    background: rgba(0,217,255,0.07) !important;
    border-radius: 10px;
    overflow: hidden;
    position: relative;
}

/* ── Contact grid alignment ── */
.contact-grid { align-items: stretch !important; }
.contact-info { display: flex; flex-direction: column; height: 100%; }

/* ── Connect label above social links ── */
.connect-label {
    font-family: 'Poppins', sans-serif;
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: rgba(0, 217, 255, 0.55);
    margin-bottom: 0.75rem;
    margin-top: 0.2rem;
}

/* ── Responsive tweaks ── */
@media (max-width: 968px) {
    .skills-grid  { grid-template-columns: 1fr; gap: 1.2rem; }
    .contact-recreated { padding-top: 3rem !important; padding-bottom: 3rem !important; }
}
