@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;600;800&display=swap');

:root {
    --bg: #141414;
    --pink: #d680fa;
    --purple: #9b5cff;
    --white: #f8ecfd;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Poppins;
}

body {
    background: var(--bg);
    color: var(--white);
}

/* HEADER */
.header {
    position: fixed;
    top: 0;
    width: 100%;
    padding: 2rem 10%;
    display: flex;
    justify-content: space-between;
    background: rgba(0, 0, 0, .4);
    backdrop-filter: blur(10px);
    z-index: 10;
}

.logo {
    font-size: 2.6rem;
    font-weight: 800;
    color: var(--pink);
}

.logo span {
    color: var(--white);
    text-shadow: 0 0 20px var(--pink);
}

.navbar a {
    margin-left: 2rem;
    color: var(--pink);
    text-decoration: none;
}

/* HERO */
.home {
    min-height: 100vh;
    padding: 12rem 10%;
    display: flex;
    justify-content: space-between;
    gap: 5rem;
}

.home-left h1 {
    font-size: 4rem;
}

.home-left .name {
    color: var(--pink);
    text-shadow: 0 0 3px var(--pink);
}

.home-left h3 {
    font-size: 2rem;
    margin: .5rem 0;
}

.home-left p {
    font-size: 1.3rem;
    line-height: 1.7;
    opacity: .85;
}

.socials a {
    font-size: 1.6rem;
    margin-right: 1rem;
    color: var(--pink);
}

.buttons {
    margin-top: 2rem;
}

.btn {
    padding: 12px 28px;
    border-radius: 30px;
    border: 1px solid var(--pink);
    margin-right: 1rem;
    color: var(--white);
    text-decoration: none;
    transition: .3s;
    box-shadow: 0 0 18px rgba(214, 128, 250, .6);
}

.btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 35px var(--pink);
}

.btn.outline {
    background: transparent;
}

/* HERO IMAGE */
.glow-circle {
    width: 320px;
    height: 320px;
    border-radius: 50%;
    overflow: hidden;

    display: flex;
    align-items: center;
    justify-content: center;

    background: radial-gradient(circle,
            rgba(200, 140, 255, 0.35),
            rgba(120, 60, 180, 0.15),
            transparent 70%);

    box-shadow:
        0 0 40px rgba(180, 120, 255, 0.45),
        0 0 90px rgba(140, 80, 200, 0.25);
}

.hero-logo {
    width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: center;
        border-radius: 50%;
}

/* DIVIDER */
.section-divider {
    width: 100%;
    height: 1px;
    margin: 6rem 0;
    background: linear-gradient(90deg, transparent, var(--pink), transparent);
    box-shadow: 0 0 20px rgba(214, 128, 250, .6);
}

/* SECTIONS */
.section-title {
    text-align: center;
    font-size: 2.2rem;
}

.section-subtitle {
    text-align: center;
    opacity: .65;
    margin: .8rem 0 3rem;
}

/* PROJECTS */
.projects-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 2.5rem;
    padding: 0 10%;
}

.project-card {
    padding: 2.5rem;
    border-radius: 18px;
    background: rgba(255, 255, 255, .04);
    transition: .35s;
}

.project-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 0 30px var(--pink);
}

/* STEAM */
.steam {
    text-align: center;
    padding: 6rem 10%;
}

.steam-text {
    opacity: .8;
    margin-bottom: 2rem;
}

/* CONTACT */
.contact-list {
    max-width: 720px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1.3rem;
}

.contact-line {
    display: flex;
    align-items: center;
    gap: 1.4rem;
    padding: 1.2rem 2rem;
    border-radius: 999px;
    border: 1px solid rgba(214, 128, 250, .4);
    text-decoration: none;
    color: var(--white);
    transition: .35s;
    background: rgba(255, 255, 255, .02);
}

.contact-line i {
    font-size: 1.8rem;
    color: var(--pink);
}

.contact-line:hover {
    background: rgba(214, 128, 250, .08);
    box-shadow: 0 0 25px rgba(214, 128, 250, .8);
}

/* FOOTER */
.footer {
    text-align: center;
    padding: 2rem;
    opacity: .6;
}