/* ================================
   GLOBAL RESET
================================ */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: Arial, Helvetica, sans-serif;
    background: #050505;
    color: #f5f5f5;
    line-height: 1.6;
    overflow-x: hidden;
}

a {
    color: inherit;
    text-decoration: none;
}

.container {
    width: min(1120px, calc(100% - 40px));
    margin: 0 auto;
}


/* ================================
   BACKGROUND
================================ */

body::before {
    content: "";
    position: fixed;
    inset: 0;

    pointer-events: none;
    z-index: -2;

    background:
        radial-gradient(
            circle at 15% 20%,
            rgba(255, 0, 128, 0.08),
            transparent 30%
        ),
        radial-gradient(
            circle at 85% 75%,
            rgba(255, 20, 147, 0.06),
            transparent 30%
        );
}

body::after {
    content: "";
    position: fixed;

    width: 450px;
    height: 450px;

    top: -220px;
    right: -180px;

    background: rgba(255, 0, 128, 0.08);

    filter: blur(130px);
    border-radius: 50%;

    pointer-events: none;
    z-index: -1;
}


/* ================================
   NAVIGATION
================================ */

.navbar {
    position: sticky;
    top: 0;
    z-index: 1000;

    background: rgba(5, 5, 5, 0.82);

    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);

    border-bottom: 1px solid rgba(255, 0, 128, 0.12);
}

.navbar nav {
    min-height: 76px;

    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    font-size: 24px;
    font-weight: 700;

    letter-spacing: -1px;

    color: #ffffff;
}

.logo span {
    color: #ff1493;

    text-shadow:
        0 0 12px rgba(255, 20, 147, 0.8);
}

.nav-links {
    display: flex;
    gap: 32px;

    list-style: none;
}

.nav-links a {
    color: #858585;

    font-size: 14px;

    transition: color 0.25s ease;
}

.nav-links a:hover,
.nav-links a.active {
    color: #ffffff;
}

.nav-button {
    padding: 10px 18px;

    border: 1px solid rgba(255, 20, 147, 0.4);
    border-radius: 8px;

    color: #ff5cad;

    font-size: 14px;

    transition: 0.25s ease;
}

.nav-button:hover {
    color: #ffffff;

    background: rgba(255, 20, 147, 0.08);

    border-color: #ff1493;

    box-shadow:
        0 0 20px rgba(255, 20, 147, 0.15);
}


/* ================================
   HERO
================================ */

.hero {
    min-height: calc(100vh - 76px);

    display: grid;
    grid-template-columns: 1.15fr 0.85fr;

    align-items: center;

    gap: 80px;

    padding-top: 80px;
    padding-bottom: 100px;
}

.eyebrow,
.section-label {
    margin-bottom: 18px;

    color: #ff4fa3;

    font-size: 12px;
    font-weight: 600;

    letter-spacing: 2px;
}

.hero h1 {
    max-width: 760px;

    font-size: clamp(48px, 6vw, 78px);

    line-height: 1.02;

    letter-spacing: -4px;
}

.hero h1 span {
    color: #ff1493;

    text-shadow:
        0 0 25px rgba(255, 20, 147, 0.35);
}

.hero-description {
    max-width: 620px;

    margin-top: 28px;

    color: #8d8d8d;

    font-size: 17px;
}

.hero-actions {
    display: flex;
    align-items: center;

    gap: 14px;

    margin-top: 36px;
}


/* ================================
   BUTTONS
================================ */

.primary-button,
.secondary-button {
    display: inline-flex;
    align-items: center;

    padding: 13px 21px;

    border-radius: 8px;

    font-size: 14px;
    font-weight: 600;

    transition: 0.25s ease;
}

.primary-button {
    background: #ff1493;

    color: #ffffff;

    box-shadow:
        0 0 20px rgba(255, 20, 147, 0.18);
}

.primary-button:hover {
    transform: translateY(-2px);

    background: #ff2aa0;

    box-shadow:
        0 10px 35px rgba(255, 20, 147, 0.25);
}

.secondary-button {
    color: #b3b3b3;

    border: 1px solid rgba(255, 255, 255, 0.1);
}

.secondary-button:hover {
    color: #ffffff;

    border-color: rgba(255, 20, 147, 0.35);

    background: rgba(255, 20, 147, 0.04);
}


/* ================================
   HERO CARD
================================ */

.hero-visual {
    display: flex;
    justify-content: center;
}

.profile-card {
    width: 100%;
    max-width: 390px;

    overflow: hidden;

    background: #0c0c0c;

    border: 1px solid rgba(255, 20, 147, 0.16);

    border-radius: 18px;

    box-shadow:
        0 30px 80px rgba(0, 0, 0, 0.5),
        0 0 50px rgba(255, 20, 147, 0.05);
}

.profile-top {
    height: 42px;

    display: flex;
    align-items: center;

    gap: 7px;

    padding: 0 16px;

    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.profile-top span {
    width: 8px;
    height: 8px;

    border-radius: 50%;

    background: #353535;
}

.profile-content {
    padding: 45px 38px;
}

.profile-label {
    margin-bottom: 12px;

    color: #666666;

    font-size: 10px;

    letter-spacing: 2px;
}

.profile-content h2 {
    font-size: 34px;

    letter-spacing: -1px;
}

.profile-content > p:not(.profile-label) {
    margin-top: 14px;

    color: #777777;

    font-size: 14px;
}

.profile-line {
    width: 100%;
    height: 1px;

    margin: 35px 0;

    background: rgba(255, 20, 147, 0.12);
}

.profile-status {
    display: flex;
    align-items: center;

    gap: 9px;

    color: #999999;

    font-size: 12px;
}

.status-dot {
    width: 7px;
    height: 7px;

    border-radius: 50%;

    background: #ff1493;

    box-shadow:
        0 0 12px rgba(255, 20, 147, 0.8);
}


/* ================================
   INTRO
================================ */

.intro-section {
    padding: 120px 0;

    background: #090909;

    border-top: 1px solid rgba(255, 20, 147, 0.07);
    border-bottom: 1px solid rgba(255, 20, 147, 0.07);
}

.intro {
    max-width: 850px;
}

.intro h2 {
    max-width: 800px;

    font-size: clamp(32px, 5vw, 54px);

    line-height: 1.1;

    letter-spacing: -2px;
}

.intro > p:not(.section-label) {
    max-width: 680px;

    margin-top: 25px;

    color: #858585;

    font-size: 16px;
}


/* ================================
   TEXT LINK
================================ */

.text-link {
    display: inline-block;

    margin-top: 25px;

    color: #ff4fa3;

    font-size: 14px;

    transition: 0.25s ease;
}

.text-link:hover {
    color: #ff8ac5;

    transform: translateX(3px);

    text-shadow:
        0 0 12px rgba(255, 20, 147, 0.35);
}


/* ================================
   SECTION HEADINGS
================================ */

.skills-preview,
.projects-preview {
    padding-top: 120px;
    padding-bottom: 120px;
}

.section-heading {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;

    margin-bottom: 45px;
}

.section-heading h2 {
    font-size: clamp(32px, 4vw, 48px);

    line-height: 1.1;

    letter-spacing: -2px;
}

.section-heading .text-link {
    margin-bottom: 4px;
}


/* ================================
   SKILLS
================================ */

.skills-grid {
    display: grid;

    grid-template-columns: repeat(3, 1fr);

    gap: 14px;
}

.skill-card {
    padding: 28px;

    background: #0c0c0c;

    border: 1px solid rgba(255, 255, 255, 0.07);

    border-radius: 12px;

    transition: 0.3s ease;
}

.skill-card:hover {
    transform: translateY(-4px);

    border-color: rgba(255, 20, 147, 0.3);

    background: #0f0a0d;

    box-shadow:
        0 12px 35px rgba(0, 0, 0, 0.35),
        0 0 25px rgba(255, 20, 147, 0.06);
}

.skill-card h3 {
    font-size: 18px;
}

.skill-card p {
    margin-top: 6px;

    color: #727272;

    font-size: 13px;
}


/* ================================
   PROJECTS
================================ */

.projects-grid {
    display: grid;

    grid-template-columns: 1.4fr 1fr;

    gap: 20px;
}

.project-card {
    overflow: hidden;

    background: #0c0c0c;

    border: 1px solid rgba(255, 255, 255, 0.07);

    border-radius: 14px;

    transition: 0.3s ease;
}

.project-card:hover {
    transform: translateY(-5px);

    border-color: rgba(255, 20, 147, 0.3);

    box-shadow:
        0 20px 60px rgba(0, 0, 0, 0.4),
        0 0 30px rgba(255, 20, 147, 0.06);
}

.project-image {
    height: 260px;

    display: flex;
    align-items: center;
    justify-content: center;

    background:
        radial-gradient(
            circle at center,
            rgba(255, 20, 147, 0.12),
            transparent 60%
        ),
        #121212;

    color: rgba(255, 79, 163, 0.7);

    font-size: 12px;

    letter-spacing: 3px;
}

.project-info {
    padding: 30px;
}

.project-category {
    color: #6f6f6f;

    font-size: 10px;

    letter-spacing: 2px;
}

.project-info h3 {
    margin-top: 8px;

    font-size: 25px;
}

.project-info > p:not(.project-category) {
    margin-top: 12px;

    color: #7e7e7e;

    font-size: 14px;
}


/* ================================
   CONTACT
================================ */

.contact-section {
    padding: 130px 0;

    background: #090909;

    border-top: 1px solid rgba(255, 20, 147, 0.07);
}

.contact-content {
    text-align: center;
}

.contact-content h2 {
    max-width: 700px;

    margin: auto;

    font-size: clamp(40px, 6vw, 68px);

    line-height: 1.05;

    letter-spacing: -3px;
}

.contact-content > p:not(.section-label) {
    max-width: 560px;

    margin: 25px auto 0;

    color: #858585;
}

.contact-content .primary-button {
    margin-top: 32px;
}


/* ================================
   FOOTER
================================ */

.footer {
    border-top: 1px solid rgba(255, 20, 147, 0.08);
}

.footer-content {
    min-height: 80px;

    display: flex;
    align-items: center;
    justify-content: space-between;

    color: #5f5f5f;

    font-size: 12px;
}


/* ================================
   RESPONSIVE
================================ */

@media (max-width: 800px) {

    .nav-links {
        display: none;
    }

    .hero {
        grid-template-columns: 1fr;

        gap: 60px;

        padding-top: 70px;
    }

    .hero h1 {
        letter-spacing: -3px;
    }

    .hero-visual {
        justify-content: flex-start;
    }

    .skills-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .projects-grid {
        grid-template-columns: 1fr;
    }
}


@media (max-width: 520px) {

    .container {
        width: min(100% - 28px, 1120px);
    }

    .nav-button {
        display: none;
    }

    .hero {
        padding-top: 55px;
    }

    .hero h1 {
        font-size: 48px;

        letter-spacing: -2.5px;
    }

    .hero-description {
        font-size: 15px;
    }

    .hero-actions {
        flex-direction: column;
        align-items: stretch;
    }

    .primary-button,
    .secondary-button {
        justify-content: center;
    }

    .profile-content {
        padding: 35px 28px;
    }

    .skills-grid {
        grid-template-columns: 1fr;
    }

    .section-heading {
        align-items: flex-start;

        flex-direction: column;

        gap: 15px;
    }

    .section-heading .text-link {
        margin-top: 0;
    }

    .project-image {
        height: 210px;
    }

    .footer-content {
        flex-direction: column;

        justify-content: center;

        gap: 5px;
    }
}