/* ============================================================
   Home page — modern redesign (matches experience aesthetic)
   Reuses chips / eyebrow / colours from style_experience.css
   ============================================================ */

.home-wrap {
    width: 100%;
    max-width: 1080px;
    margin: 0 auto;
    padding: 7rem 6vw 3rem;
}

/* ---------- hero ---------- */
.home-hero {
    margin-bottom: 4rem;
}

.home-hello {
    color: var(--exp-accent, #00eeb6);
    font-family: 'PT Mono', monospace;
    font-size: 1rem;
    letter-spacing: 0.12rem;
    margin-bottom: 0.6rem;
}

.home-name {
    display: flex;
    flex-wrap: wrap;
    gap: 0 1.2rem;
    margin-bottom: 0.8rem;
    background: transparent;
}

.home-name h1 {
    font-size: clamp(3rem, 8vw, 5.5rem);
    font-weight: 700;
    color: #fff;
    line-height: 1.02;
    letter-spacing: -0.02em;
    transition: color 0.2s ease;
}

.home-name h1:hover {
    color: var(--exp-accent, #00eeb6);
}

.home-role {
    font-size: clamp(1.2rem, 3vw, 1.8rem);
    font-weight: 300;
    color: #8892b0;
    margin-bottom: 1.6rem;
}

.home-role a {
    color: var(--exp-accent, #00eeb6);
    border-bottom: 1px solid rgba(0, 238, 182, 0.4);
    transition: color 0.2s ease;
}

.home-role a:hover {
    color: #fff;
}

.home-hero .chips {
    margin-bottom: 2rem;
}

.home-actions {
    display: flex;
    align-items: center;
    gap: 1.2rem;
    flex-wrap: wrap;
}

.home-actions .btn-resume {
    display: inline-block;
    padding: 0.7rem 1.6rem;
    border-radius: 8px;
    background: var(--exp-accent, #00eeb6);
    color: #03122b;
    font-weight: 500;
    font-size: 0.95rem;
    transition: transform 0.2s ease, background 0.2s ease;
}

.home-actions .btn-resume:hover {
    transform: translateY(-3px);
    background: #4dffcf;
}

.home-social {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.home-social a {
    display: inline-flex;
    transition: transform 0.2s ease;
}

.home-social a:hover {
    transform: translateY(-3px);
}

.home-social img {
    width: 1.6rem;
    height: 1.6rem;
}

/* ---------- section headers (reuse .exp-h2 from experience) ---------- */
.home-wrap .exp-h2 {
    margin-top: 0;
    margin-bottom: 1.6rem;
}

/* ---------- about card ---------- */
.about-card {
    display: grid;
    grid-template-columns: 240px 1fr;
    gap: 2.5rem;
    align-items: center;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 18px;
    padding: 2rem;
    margin-bottom: 4rem;
}

.about-photo {
    width: 100%;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    border-radius: 16px;
    border: 1px solid rgba(0, 238, 182, 0.3);
    filter: grayscale(1);
    transition: filter 0.3s ease, transform 0.3s ease;
}

.about-photo:hover {
    filter: grayscale(0);
    transform: scale(1.02);
}

.about-text p {
    color: #8892b0;
    font-weight: 300;
    font-size: 1rem;
    line-height: 1.7;
}

.about-text a {
    color: #ccd6f6;
    border-bottom: 1px dashed rgba(0, 238, 182, 0.5);
    transition: color 0.2s ease;
}

.about-text a:hover {
    color: var(--exp-accent, #00eeb6);
}

.about-text em {
    color: #ccd6f6;
    font-style: italic;
}

/* ---------- quick links ---------- */
.quicklinks {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    margin-bottom: 4.5rem;
}

.ql-card {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 14px;
    padding: 1.4rem 1.5rem;
    transition: transform 0.22s ease, border-color 0.22s ease, background 0.22s ease;
}

.ql-card:hover {
    transform: translateY(-5px);
    border-color: rgba(0, 238, 182, 0.4);
    background: rgba(0, 238, 182, 0.05);
}

.ql-num {
    font-family: 'PT Mono', monospace;
    font-size: 0.8rem;
    color: var(--exp-accent, #00eeb6);
}

.ql-title {
    font-size: 1.25rem;
    font-weight: 500;
    color: #fff;
}

.ql-desc {
    font-size: 0.88rem;
    font-weight: 300;
    color: #8892b0;
}

.ql-arrow {
    margin-top: 0.4rem;
    color: var(--exp-accent, #00eeb6);
    font-size: 0.9rem;
}

/* ---------- feeds (news + working on) ---------- */
.home-feeds {
    display: grid;
    grid-template-columns: 1.6fr 1fr;
    gap: 2rem;
    align-items: start;
    margin-bottom: 3rem;
}

.feed-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    padding: 1.6rem 1.8rem;
}

.feed-list {
    list-style: none;
    position: relative;
    padding-left: 1.4rem;
}

.feed-list::before {
    content: "";
    position: absolute;
    left: 4px;
    top: 8px;
    bottom: 8px;
    width: 2px;
    background: linear-gradient(180deg, var(--exp-accent, #00eeb6), rgba(0, 238, 182, 0.1));
}

.feed-list li {
    position: relative;
    padding-bottom: 1.2rem;
    color: #8892b0;
    font-weight: 300;
    font-size: 0.95rem;
    line-height: 1.5;
}

.feed-list li:last-child {
    padding-bottom: 0;
}

.feed-list li::before {
    content: "";
    position: absolute;
    left: -1.4rem;
    top: 6px;
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: var(--exp-accent, #00eeb6);
    box-shadow: 0 0 0 3px rgba(0, 238, 182, 0.15);
}

.feed-list li .tag {
    color: var(--exp-accent, #00eeb6);
    font-family: 'PT Mono', monospace;
    font-size: 0.75rem;
    display: block;
    margin-bottom: 0.2rem;
}

.working-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 0.6rem;
}

/* ---------- footer ---------- */
.home-footer {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding: 2.5rem 0 1rem;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.home-footer .foot-social {
    display: flex;
    gap: 1.2rem;
}

.home-footer .foot-social img {
    width: 1.5rem;
    height: 1.5rem;
    transition: transform 0.2s ease;
}

.home-footer .foot-social a:hover img {
    transform: translateY(-3px);
}

.home-footer .foot-mail a {
    color: #8892b0;
    font-family: 'PT Mono', monospace;
    font-size: 0.9rem;
    transition: color 0.2s ease;
}

.home-footer .foot-mail a:hover {
    color: var(--exp-accent, #00eeb6);
}

.home-footer .foot-copy {
    color: #55617d;
    font-size: 0.8rem;
}

/* ---------- responsive ---------- */
@media only screen and (max-width: 820px) {
    .home-feeds {
        grid-template-columns: 1fr;
    }

    .quicklinks {
        grid-template-columns: 1fr;
    }

    .about-card {
        grid-template-columns: 1fr;
        justify-items: center;
        text-align: left;
    }

    .about-photo {
        max-width: 220px;
    }
}

@media only screen and (max-width: 576px) {
    .home-wrap {
        padding-top: 6rem;
    }
}
