@charset "UTF-8";

/* Visual */
.visual {
    width: 100%;
    max-width: 1440px;
    height: calc(100vh - 85px);
    margin: 0 auto;
    padding: 0 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: visible; 
}
.visual-content {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

/* Text Area */
.text-area {
    position: absolute;
    left: -20%;
    top: 70%;
    transform: translateY(-50%);
    z-index: 2;
}
.focus-text {
    font-size: 180px;
    font-weight: 800;
    color: transparent;
    -webkit-text-stroke: 2px #659AB9;
    letter-spacing: -20px;
    line-height: 0.9;
    margin-bottom: 15px;
}

/* SPARK */
.spark-line {
    display: flex;
    align-items: flex-end; 
    gap: 15px;
}
.spark-text {
    font-size: 180px;
    font-weight: 800;
    color: #659AB9;
    letter-spacing: -20px;
    line-height: 1;
    margin: 0;
}
.line-divider {
    width: 180px;
    height: 1px;
    background-color: #659AB9;
    margin-bottom: 13px;
    margin-left: 30px;
}
.copyright-text {
    font-size: 10px;
    color: #999;
    line-height: 1.3;
    white-space: nowrap;
    margin: 0;
    margin-bottom: 15px; 
}

/* Star Area */
.star-area {
    position: absolute;
    left: 50%;
    top: 45%;
    transform: translate(-50%, -50%);
    z-index: 1;
    animation: float 2s ease-in-out infinite;
}
.star-img {
    width: 550px;
    height: auto;
    display: block;
}

/* Float Animation */
@keyframes float {
    0% {
        transform: translate(-50%, -50%) translateY(0px);
    }
    50% {
        transform: translate(-50%, -50%) translateY(-40px);
    }
    100% {
        transform: translate(-50%, -50%) translateY(0px);
    }
}

/* Float Animation for Mobile */
@keyframes floatMobile {
    0% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-20px);
    }
    100% {
        transform: translateY(0px);
    }
}

/* Skill Area */
.skill-area {
    position: absolute;
    right: 0;
    bottom: 12%;
    display: flex;
    flex-direction: column;
    gap: 10px;
    z-index: 2;
}
.skill-item {
    font-size: 22px;
    font-weight: 600;
    color: #659AB9;
    position: relative;
    padding-left: 18px;
    white-space: nowrap;
}
.skill-item::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 10px;
    height: 10px;
    background-color: #659AB9;
    border-radius: 50%;
}

/* Responsive */
/* Responsive */
@media screen and (max-width: 1440px) {
    .subtitle {
        margin-left: 40px;
    }
    .visual {
        padding: 0 40px;
    }
    .text-area {
        left: 0;
    }
    .skill-area {
        right: 40px;
    }
}

@media screen and (max-width: 1200px) {
    .focus-text,
    .spark-text {
        font-size: 140px;
        letter-spacing: -15px;
    }
    .star-img {
        width: 550px;
    }
    .star-area {
        top: 48%;
    }
    .text-area {
        top: 65%;
    }
    .skill-area {
        bottom: 10%;
    }
}

@media screen and (max-width: 1024px) {
    .visual {
        height: auto;
        min-height: calc(100vh - 85px);
        padding: 0 40px;
    }
    .text-area {
        left: 0;
        top: 60%;
    }
    .focus-text,
    .spark-text {
        font-size: 100px;
        letter-spacing: -10px;
    }
    .star-img {
        width: 400px; 
    }
    .star-area {
        top: 42%;
    }
    .spark-line {
        flex-direction: column; 
        align-items: flex-start;
        gap: 15px;
    }
    .line-divider {
        margin-left: 0;
        margin-bottom: 0;
        width: 150px;
    }
    .copyright-text {
        margin-bottom: 0;
        font-size: 9px;
    }
    .skill-area {
        bottom: 8%;
        right: 40px;
    }
    .skill-item {
        font-size: 18px;
    }
}

@media screen and (max-width: 768px) {
    .subtitle {
        margin-left: 20px;
        font-size: 18px !important; 
    }
    .visual {
        padding: 20px;
        height: calc(100vh - 70px);
        min-height: auto;
        display: flex;
        align-items: center;
    }
    .visual-content {
        padding: 0;
        flex-direction: column;
        gap: 15px;
        height: 100%;
        justify-content: center;
    }
    .text-area {
        position: relative;
        left: 0;
        top: 0;
        transform: none;
        width: 100%;
        margin-bottom: 0;
        text-align: center;
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    .focus-text {
        font-size: 55px; 
        letter-spacing: -5px;
        margin-bottom: 8px;
    }
    .spark-text {
        font-size: 55px; 
        letter-spacing: -5px;
    }
    .star-area {
        position: relative;
        left: 0;
        top: 0;
        transform: none;
        margin: 0 auto;
        text-align: center;
        order: -1;
        animation: floatMobile 2s ease-in-out infinite;
    }
    .star-img {
        width: 240px;
    }
    .skill-area {
        position: relative;
        right: 0;
        bottom: 0;
        margin-top: 0;
        align-items: center;
        gap: 6px;
    }
    .skill-item {
        font-size: 12px;
        text-align: center;
        padding-left: 15px;
    }
    .skill-item::before {
        width: 7px;
        height: 7px;
    }
    .spark-line {
        gap: 5px;
        align-items: center;
        flex-direction: column;
    }
    .line-divider {
        display: none;
    }
    .copyright-text {
        font-size: 7px;
        margin-bottom: 0;
        margin-top: 3px;
    }
}

@media screen and (max-width: 480px) {
    .visual {
        padding: 15px;
        height: calc(100vh - 85px);
    }
    .visual-content {
        gap: 12px;
    }
    .text-area {
        margin-bottom: 0;
    }
    .focus-text {
        font-size: 45px;
        letter-spacing: -4px;
        margin-bottom: 6px;
    }
    .spark-text {
        font-size: 45px;
        letter-spacing: -4px;
    }
    .subtitle {
        margin-left: 15px;
        font-size: 13px !important;
    }
    .skill-item {
        font-size: 11px;
        padding-left: 12px;
    }
    .skill-item::before {
        width: 6px;
        height: 6px;
    }
    .skill-area {
        gap: 5px;
    }
    .star-area {
        margin: 0 auto;
    }
    .star-img {
        width: 180px;
    }
    .copyright-text {
        font-size: 6px;
    }
}

@media screen and (max-width: 360px) {
    .visual {
        padding: 12px;
    }
    .focus-text,
    .spark-text {
        font-size: 38px;
        letter-spacing: -3px;
    }
    .star-img {
        width: 160px;
    }
    .skill-item {
        font-size: 10px;
    }
    .subtitle {
        font-size: 11px !important;
    }
}