/* ============================================
   HOME PAGE
============================================ */

.home {
    display: flex;
    justify-content: space-between;
    height: 100vh;
    width: 100%;
    box-sizing: border-box;
    padding-top: 100px;
}

/* ---- Left Side ---- */
.home .left {
    flex: 1;
    padding: 20px 20px 20px 60px;
    height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 12px;
}

/* "Hello, I am" */
.home .left .hero-greeting {
    font-size: 1.2rem;
    color: #a0a0b0;
    letter-spacing: 1px;
    font-weight: 400;
}

/* "Adarsh Anand" */
.home .left .hero-name {
    font-size: 3.8rem;
    font-weight: 800;
    background: linear-gradient(45deg, #8b45ff, #ff6b6b, #4ecdc4);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: -1px;
    line-height: 1.1;
}

/* "AI & Full Stack Engineer" */
.home .left .hero-role {
    font-size: 1.6rem;
    font-weight: 400;
    color: #64ffda;
    letter-spacing: 1px;
}

/* Tagline / sub text */
.home .left .hero-sub {
    font-size: 0.95rem;
    color: #7070a0;
    line-height: 1.7;
    max-width: 480px;
}

/* CTA Buttons row */
.home .left .hero-actions {
    display: flex;
    gap: 16px;
    margin-top: 8px;
    flex-wrap: wrap;
}

.home .left .btn-primary {
    padding: 12px 28px;
    background: #64ffda;
    color: #000;
    font-weight: 700;
    font-size: 0.9rem;
    border-radius: 8px;
    text-decoration: none;
    transition: background 0.2s, transform 0.2s;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}
.home .left .btn-primary:hover {
    background: #00bcd4;
    transform: translateY(-2px);
}

.home .left .btn-secondary {
    padding: 12px 28px;
    background: transparent;
    color: #e8e8f0;
    font-weight: 600;
    font-size: 0.9rem;
    border-radius: 8px;
    border: 1.5px solid rgba(255, 255, 255, 0.15);
    text-decoration: none;
    transition: border-color 0.2s, transform 0.2s;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}
.home .left .btn-secondary:hover {
    border-color: #64ffda;
    color: #64ffda;
    transform: translateY(-2px);
}

/* ---- Right Side ---- */
.home .right {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: flex-end;
    height: 100%;
    width: 100%;
    overflow: hidden;
}

.home .right img {
    max-width: 100%;
    height: 90%;
    border-radius: 20px;
    object-fit: cover;
    object-position: top;
    mix-blend-mode: luminosity;
    filter: contrast(1.05) brightness(0.95);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.6);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.home .right img:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow:
        0 30px 80px rgba(0, 0, 0, 0.6),
        0 0 50px rgba(139, 69, 255, 0.25);
    filter: contrast(1.1) brightness(1.0);
}

/* ============================================
   RESPONSIVE
============================================ */

@media (max-width: 1000px) {
    .home {
        flex-direction: column;
        padding-top: 80px;
        height: auto;
    }

    .home .left {
        width: 100%;
        height: auto;
        padding: 40px 20px 20px 20px;
        text-align: center;
        align-items: center;
        gap: 10px;
    }

    .home .left .hero-name {
        font-size: 2.8rem;
    }

    .home .left .hero-role {
        font-size: 1.3rem;
    }

    .home .left .hero-greeting {
        font-size: 1rem;
    }

    .home .left .hero-sub {
        text-align: center;
    }

    .home .right {
        margin-top: 40px;
        height: 50vh;
        align-items: center;
    }

    .home .right img {
        height: 80%;
        width: auto;
        mix-blend-mode: normal;
    }
}

@media (max-width: 500px) {
    .home {
        padding-top: 70px;
    }

    .home .left {
        padding: 30px 15px 20px 15px;
        gap: 8px;
    }

    .home .left .hero-greeting {
        font-size: 0.95rem;
    }

    .home .left .hero-name {
        font-size: 2.2rem;
        letter-spacing: -0.5px;
    }

    .home .left .hero-role {
        font-size: 1.1rem;
    }

    .home .left .hero-sub {
        font-size: 0.85rem;
    }

    .home .left .btn-primary,
    .home .left .btn-secondary {
        padding: 10px 20px;
        font-size: 0.85rem;
    }

    .home .right {
        height: 45vh;
        margin-top: 20px;
    }

    .home .right img {
        border-radius: 15px;
        height: 75%;
    }
}

/* Ultra-wide screens */
@media (min-width: 1400px) {
    .home .left {
        padding-left: 100px;
    }

    .home .left .hero-name {
        font-size: 5rem;
    }

    .home .left .hero-role {
        font-size: 2rem;
    }

    .home .left .hero-sub {
        font-size: 1.05rem;
    }
}

/* ============================================
   HERO STATS ROW
============================================ */

.hero-stats {
    display: flex;
    gap: 0;
    margin-top: 4px;
    border: 1px solid rgba(255, 255, 255, 0.07);
    border-radius: 12px;
    overflow: hidden;
    max-width: 480px;
    width: 100%;
}

.stat-item {
    flex: 1;
    padding: 14px 10px 12px;
    text-align: center;
    border-right: 1px solid rgba(255, 255, 255, 0.07);
    background: rgba(255, 255, 255, 0.02);
    transition: background 0.2s;
}

.stat-item:last-child {
    border-right: none;
}

.stat-item:hover {
    background: rgba(100, 255, 218, 0.04);
}

.stat-num {
    font-family: 'Syne', sans-serif;
    font-size: 1.45rem;
    font-weight: 800;
    color: #64ffda;
    line-height: 1;
}

.stat-suffix {
    font-family: 'Syne', sans-serif;
    font-size: 0.85rem;
    font-weight: 700;
    color: #7070a0;
    margin-left: 1px;
}

.stat-label {
    font-size: 0.7rem;
    color: #7070a0;
    margin-top: 5px;
    letter-spacing: 0.3px;
    line-height: 1.3;
}

/* Responsive */
@media (max-width: 1000px) {
    .hero-stats {
        max-width: 100%;
    }
}

@media (max-width: 500px) {
    .hero-stats {
        border-radius: 10px;
    }

    .stat-num {
        font-size: 1.2rem;
    }

    .stat-label {
        font-size: 0.65rem;
    }

    .stat-item {
        padding: 12px 6px 10px;
    }
}