/* ================================
   PROJECTS HERO
================================ */

.projects-hero {
    min-height: 65vh;

    display: flex;
    align-items: center;

    padding-top: 80px;
    padding-bottom: 100px;
}

.projects-hero-content {
    max-width: 900px;
}

.projects-hero h1 {
    max-width: 850px;

    font-size: clamp(56px, 7vw, 90px);

    line-height: 1;
    letter-spacing: -4px;
}

.projects-hero h1 span {
    color: #ff1493;

    text-shadow:
        0 0 25px rgba(255, 20, 147, 0.35);
}

.projects-hero-content > p:not(.eyebrow) {
    max-width: 650px;

    margin-top: 30px;

    color: #858585;

    font-size: 17px;
}


/* ================================
   PROJECTS MAIN
================================ */

.projects-main {
    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);
}

.project-list {
    display: flex;
    flex-direction: column;

    gap: 20px;
}


/* ================================
   PROJECT ITEM
================================ */

.project-item {
    display: grid;

    grid-template-columns: 1.15fr 0.85fr;

    overflow: hidden;

    background: #0c0c0c;

    border: 1px solid rgba(255, 255, 255, 0.07);

    border-radius: 16px;

    transition: 0.3s ease;
}

.project-item:hover {
    transform: translateY(-4px);

    border-color: rgba(255, 20, 147, 0.28);

    box-shadow:
        0 20px 60px rgba(0, 0, 0, 0.4),
        0 0 30px rgba(255, 20, 147, 0.05);
}


/* ================================
   PROJECT PREVIEW
================================ */

.project-preview {
    min-height: 420px;

    display: flex;
    align-items: center;
    justify-content: center;

    padding: 35px;

    background:
        radial-gradient(
            circle at center,
            rgba(255, 20, 147, 0.12),
            transparent 60%
        ),
        #101010;
}

.preview-window {
    width: 100%;
    max-width: 560px;

    overflow: hidden;

    background: #080808;

    border: 1px solid rgba(255, 20, 147, 0.18);

    border-radius: 12px;

    box-shadow:
        0 25px 60px rgba(0, 0, 0, 0.45);
}

.preview-top {
    height: 34px;

    display: flex;
    align-items: center;

    gap: 6px;

    padding: 0 12px;

    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.preview-top span {
    width: 7px;
    height: 7px;

    border-radius: 50%;

    background: #333333;
}

.preview-content {
    min-height: 300px;

    display: flex;
    flex-direction: column;
    justify-content: center;

    padding: 45px;
}

.preview-content p {
    color: #ff4fa3;

    font-size: 10px;
    font-weight: 600;

    letter-spacing: 2px;
}

.preview-content h3 {
    margin-top: 15px;

    font-size: clamp(28px, 4vw, 46px);

    line-height: 1.05;
    letter-spacing: -2px;
}

.preview-line {
    width: 80px;
    height: 2px;

    margin-top: 30px;

    background: #ff1493;

    box-shadow:
        0 0 15px rgba(255, 20, 147, 0.6);
}

.preview-placeholder {
    width: 100%;
    height: 100%;
    min-height: 300px;

    display: flex;
    align-items: center;
    justify-content: center;

    border: 1px dashed rgba(255, 20, 147, 0.16);

    color: #555555;

    font-size: 11px;

    letter-spacing: 3px;
}


/* ================================
   PROJECT DETAILS
================================ */

.project-details {
    display: flex;
    flex-direction: column;
    justify-content: center;

    padding: 55px;
}

.project-category {
    color: #ff4fa3;

    font-size: 10px;
    font-weight: 600;

    letter-spacing: 2px;
}

.project-details h3 {
    margin-top: 10px;

    font-size: 32px;

    letter-spacing: -1px;
}

.project-details > p:not(.project-category) {
    margin-top: 16px;

    color: #7e7e7e;

    font-size: 15px;
    line-height: 1.8;
}

.project-tech {
    display: flex;
    flex-wrap: wrap;

    gap: 7px;

    margin-top: 28px;
}

.project-tech span {
    padding: 7px 10px;

    border: 1px solid rgba(255, 20, 147, 0.14);

    border-radius: 6px;

    color: #8b8b8b;

    font-size: 10px;
}

.project-details .text-link {
    margin-top: 30px;
}

.project-status {
    display: inline-block;

    width: fit-content;

    margin-top: 30px;

    padding: 7px 10px;

    border: 1px solid rgba(255, 255, 255, 0.08);

    border-radius: 6px;

    color: #666666;

    font-size: 9px;
    font-weight: 600;

    letter-spacing: 1.5px;
}


/* ================================
   PROJECT PROCESS
================================ */

.project-process {
    padding: 140px 0;
}

.process-grid {
    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 100px;
}

.process-grid h2 {
    max-width: 550px;

    font-size: clamp(40px, 5vw, 60px);

    line-height: 1.05;
    letter-spacing: -2px;
}

.process-steps {
    display: flex;
    flex-direction: column;
}

.process-step {
    display: grid;

    grid-template-columns: 50px 1fr;

    gap: 20px;

    padding: 28px 0;

    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.process-step:last-child {
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.process-step > span {
    color: #ff4fa3;

    font-size: 11px;
    font-weight: 600;

    letter-spacing: 2px;
}

.process-step h3 {
    font-size: 22px;
}

.process-step p {
    margin-top: 8px;

    color: #777777;

    font-size: 14px;
    line-height: 1.7;
}


/* ================================
   RESPONSIVE
================================ */

@media (max-width: 800px) {

    .projects-hero {
        min-height: 60vh;

        padding-top: 70px;
        padding-bottom: 80px;
    }

    .projects-hero h1 {
        letter-spacing: -3px;
    }

    .project-item {
        grid-template-columns: 1fr;
    }

    .project-preview {
        min-height: 360px;
    }

    .project-details {
        padding: 40px;
    }

    .process-grid {
        grid-template-columns: 1fr;

        gap: 50px;
    }
}


@media (max-width: 520px) {

    .projects-hero {
        padding-top: 55px;
        padding-bottom: 70px;
    }

    .projects-hero h1 {
        font-size: 50px;

        letter-spacing: -2.5px;
    }

    .projects-hero-content > p:not(.eyebrow) {
        font-size: 15px;
    }

    .projects-main {
        padding: 90px 0;
    }

    .project-preview {
        min-height: 280px;

        padding: 20px;
    }

    .preview-content {
        min-height: 220px;

        padding: 28px;
    }

    .preview-content h3 {
        font-size: 30px;
    }

    .project-details {
        padding: 30px;
    }

    .project-details h3 {
        font-size: 28px;
    }

    .project-process {
        padding: 100px 0;
    }

    .process-grid h2 {
        font-size: 42px;
    }

    .process-step {
        grid-template-columns: 40px 1fr;
    }
}

/* ================================
   HEARTFALL SMP PREVIEW
================================ */

.heartfall-preview {
    position: relative;

    width: 100%;
    height: 100%;
    min-height: 350px;

    display: flex;
    align-items: center;
    justify-content: center;

    overflow: hidden;

    background:
        radial-gradient(
            circle at center,
            rgba(255, 20, 147, 0.18),
            transparent 45%
        ),
        radial-gradient(
            circle at 70% 30%,
            rgba(255, 79, 163, 0.08),
            transparent 35%
        ),
        #080808;
}

.heartfall-glow {
    position: absolute;

    width: 180px;
    height: 180px;

    background: rgba(255, 20, 147, 0.12);

    filter: blur(70px);

    border-radius: 50%;
}

.heartfall-content {
    position: relative;

    text-align: center;

    z-index: 1;
}

.heartfall-label {
    color: #ff4fa3;

    font-size: 9px;
    font-weight: 600;

    letter-spacing: 3px;
}

.heartfall-content h3 {
    margin-top: 14px;

    font-size: clamp(38px, 5vw, 58px);

    line-height: 0.95;

    letter-spacing: -3px;
}

.heartfall-content h3 span {
    color: #ff1493;

    text-shadow:
        0 0 25px rgba(255, 20, 147, 0.45);
}

.heartfall-line {
    width: 70px;
    height: 1px;

    margin: 24px auto 0;

    background: #ff1493;

    box-shadow:
        0 0 15px rgba(255, 20, 147, 0.7);
}

.heartfall-content p {
    margin-top: 16px;

    color: #666666;

    font-size: 11px;
}