@charset "UTF-8";

/* Content */
.content {
    width: 100%;
    height: calc(100vh - 85px);
    overflow: hidden;
}
.content .content-wrap {
    width: 100%;
    max-width: 1920px;
    height: 100%;
    margin: 0 auto;
    display: flex;
    position: relative;
}

.content .content-wrap::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    width: 1px;
    height: 100%;
    background-color: #659AB9;
    z-index: 10;
}

.content .left-section {
    width: 50%;
    position: relative;
    display: flex;
    flex-direction: column;
    padding: 0;
}

.content .left-section .focus-text {
    height: 14%;
    font-size: 18px;
    font-weight: 600;
    color: #659AB9;
    letter-spacing: 0.5px;
    text-align: left;
    margin: 0;
    padding: 0 60px;
    display: flex;
    align-items: center;
    border-bottom: 1px solid #659AB9;
}

/* 슬라이딩 텍스트 부분 */
.content .left-section .blue-box {
    height: 14%;
    background-color: #2B4C70;
    padding: 0 60px;
    margin: 0;
    display: flex;
    align-items: center;
    border-bottom: 1px solid #659AB9;
    overflow: hidden;
    position: relative;
}

.slide-container {
    width: 100%;
    height: 100%;
    position: relative;
    overflow: hidden;
}

.slide-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
}

.slide-item {
    height: 100%;
    display: flex;
    align-items: center;
    position: absolute;
    width: 100%;
    opacity: 0;
    top: 0;
    left: 0;
}

.slide-item:nth-child(1) { animation: fadeSlide 8s infinite 0s; }
.slide-item:nth-child(2) { animation: fadeSlide 8s infinite 2s; }
.slide-item:nth-child(3) { animation: fadeSlide 8s infinite 4s; }
.slide-item:nth-child(4) { animation: fadeSlide 8s infinite 6s; }

.slide-item p {
    font-size: 18px;
    color: #fff;
    text-align: left;
    line-height: 1.8;
    letter-spacing: 0.5px;
    margin: 0;
}

@keyframes fadeSlide {
    0% { 
        opacity: 0;
        transform: translateY(30px);
    }
    10% { 
        opacity: 1;
        transform: translateY(0);
    }
    25% { 
        opacity: 1;
        transform: translateY(0);
    }
    35% { 
        opacity: 0;
        transform: translateY(-30px);
    }
    100% { 
        opacity: 0;
        transform: translateY(-30px);
    }
}

.content .left-section .skill-text {
    height: 14%;
    font-size: 18px;
    font-weight: 600;
    color: #659AB9;
    text-align: left;
    letter-spacing: 0.5px;
    margin: 0;
    padding: 0 60px;
    display: flex;
    align-items: center;
    border-bottom: 1px solid #659AB9;
}

.content .left-section .diamond-image {
    flex: 1;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 60px;
    overflow: hidden;
}
.content .left-section .diamond-image img {
    max-width: 420px;
    max-height: 420px;
    width: auto;
    height: auto;
    object-fit: contain;
    animation: floatPulseGlow 4s ease-in-out infinite;
}

@keyframes floatPulseGlow {
    0% {
        transform: translateY(0px) scale(1);
        opacity: 0.6;
    }
    50% {
        transform: translateY(-20px) scale(1.15);
        opacity: 1;
    }
    100% {
        transform: translateY(0px) scale(1);
        opacity: 0.6;
    }
}

/* Right Section - 50% */
.content .right-section {
    width: 50%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 60px 80px;
}

/* CONTACT ME Title */
.content .right-section .contact-title {
    font-size: 70px;
    font-weight: 800;
    color: transparent;
    -webkit-text-stroke: 2px #659AB9;
    letter-spacing: -5px;
    margin-bottom: 50px;
    line-height: 1;
    text-align: left;
    width: 100%;
    max-width: 500px;
}

/* Contact Info */
.content .right-section .contact-info {
    margin-bottom: 20px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    width: 100%;
    max-width: 500px;
}
.content .right-section .contact-info .info-item {
    display: flex;
    align-items: center;
    gap: 35px;
    margin-bottom: 15px;
    justify-content: flex-start;
}
.content .right-section .contact-info .info-item .info-label {
    font-size: 22px;
    font-weight: 700;
    color: #659AB9;
    min-width: 150px;
    position: relative;
    padding-left: 25px;
}
.content .right-section .contact-info .info-item .info-label::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 14px;
    height: 14px;
    background-color: #659AB9;
    border-radius: 50%;
}
.content .right-section .contact-info .info-item .info-value {
    font-size: 22px;
    color: #659AB9;
    font-weight: 400;
}

/* Email Form */
.content .right-section .email-form {
    margin-top: 15px;
    max-width: 500px;
    width: 100%;
}
.content .right-section .email-form .form-group {
    margin-bottom: 14px;
}
.content .right-section .email-form .form-label {
    font-size: 14px;
    font-weight: 600;
    color: #659AB9;
    margin-bottom: 8px;
    display: block;
    letter-spacing: 0.5px;
}
.content .right-section .email-form .form-input,
.content .right-section .email-form .form-textarea {
    width: 100%;
    padding: 8px 14px;
    border: 1px solid #659AB9;
    border-radius: 5px;
    font-size: 14px;
    color: #333;
    background-color: #fff;
    transition: all 0.3s;
    font-family: inherit;
}
.content .right-section .email-form .form-input:focus,
.content .right-section .email-form .form-textarea:focus {
    outline: none;
    border-color: #2B4C70;
    box-shadow: 0 0 5px rgba(101, 154, 185, 0.3);
}
.content .right-section .email-form .form-textarea {
    resize: vertical;
    min-height: 90px;
}
.content .right-section .email-form .send-btn {
    width: 100%;
    padding: 10px 30px;
    background-color: transparent;
    border: 1px solid #659AB9;
    color: #659AB9;
    font-size: 14px;
    font-weight: 600;
    border-radius: 5px;
    cursor: pointer;
    transition: all 0.3s;
    letter-spacing: 0.5px;
}
.content .right-section .email-form .send-btn:hover {
    background-color: #659AB9;
    color: #FFFBEF;
}
.content .right-section .email-form .success-message {
    display: none;
    margin-top: 15px;
    padding: 12px 20px;
    background-color: #e8f5e9;
    border: 1px solid #4caf50;
    border-radius: 5px;
    color: #2e7d32;
    font-size: 14px;
    text-align: center;
}

/* Responsive */
@media screen and (max-width: 1440px) {
    .content .left-section .focus-text,
    .content .left-section .blue-box,
    .content .left-section .skill-text {
        padding: 0 50px;
    }
    .content .left-section .diamond-image {
        padding: 50px;
    }
    .content .right-section {
        padding: 50px 60px;
    }
    .content .right-section .contact-title {
        font-size: 60px;
    }
}

@media screen and (max-width: 1024px) {
    html, body {
        overflow-y: auto;
    }
    #wrap {
        height: auto;
        min-height: 100vh;
        overflow: visible;
    }
    .content {
        height: auto;
        overflow: visible;
    }
    .content .content-wrap {
        flex-direction: column;
        height: auto;
    }
    .content .content-wrap::before {
        display: none;
    }
    .content .right-section {
        order: 1;
        width: 100%;
        padding: 60px 40px;
    }
    .content .right-section .contact-title {
        font-size: 55px;
        margin-bottom: 40px;
    }
    .content .left-section {
        order: 2;
        width: 100%;
        min-height: 70vh;
        border-top: 1px solid #659AB9;
    }
    .content .left-section .focus-text {
        height: 120px;
        padding: 0 40px;
    }
    .content .left-section .blue-box {
        height: 140px;
        padding: 0 40px;
    }
    .content .left-section .skill-text {
        height: 120px;
        padding: 0 40px;
    }
    .content .left-section .diamond-image {
        padding: 40px;
    }
}

@media screen and (max-width: 768px) {
    .content .right-section {
        padding: 40px 90px;
        align-items: center;
    }
    .content .right-section .contact-title {
        font-size: 50px;
        margin-bottom: 25px;
        text-align: center;
        margin-left: auto;
        margin-right: auto;
    }
    .content .right-section .contact-info {
        margin-bottom: 20px;
        align-items: flex-start;
        margin-left: auto;
        margin-right: auto;
        display: flex;
        justify-content: center;
    }
    .content .right-section .contact-info .info-item {
        gap: 20px;
        margin-bottom: 12px;
        justify-content: flex-start;
    }
    .content .right-section .contact-info .info-item .info-label {
        font-size: 18px;
        min-width: 120px;
        text-align: left;
    }
    .content .right-section .contact-info .info-item .info-value {
        font-size: 18px;
        text-align: left;
    }
    .content .right-section .email-form {
        margin-left: auto;
        margin-right: auto;
        margin-top: 10px;
    }
    .content .right-section .email-form .form-group {
        margin-bottom: 10px;
    }
    .content .left-section {
        min-height: auto;
    }
    .content .left-section .focus-text {
        height: 90px;
        font-size: 17px;
        padding: 0 30px;
    }
    .content .left-section .blue-box {
        height: 110px;
        padding: 0 30px;
    }
    .content .left-section .blue-box p {
        font-size: 17px;
    }
    .content .left-section .skill-text {
        height: 90px;
        font-size: 17px;
        padding: 0 30px;
    }
    .content .left-section .diamond-image {
        padding: 40px 20px;
        height: 350px;
    }
    .content .left-section .diamond-image img {
        max-width: 280px;
        max-height: 280px;
    }
    .slide-item p {
        font-size: 17px;
    }
}

@media screen and (max-width: 480px) {
    .content .right-section {
        padding: 30px 40px;
        align-items: center;
    }
    .content .right-section .contact-title {
        font-size: 38px;
        letter-spacing: -3px;
        margin-bottom: 20px;
        text-align: center;
        margin-left: auto;
        margin-right: auto;
    }
    .content .right-section .contact-info {
        margin-bottom: 12px;
        align-items: flex-start;
        margin-left: auto;
        margin-right: auto;
        display: flex;
        justify-content: center;
        width: 100%;
    }
    .content .right-section .contact-info .info-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 4px;
        margin-bottom: 10px;
        justify-content: flex-start;
    }
    .content .right-section .contact-info .info-item .info-label {
        font-size: 15px;
        min-width: auto;
        text-align: left;
    }
    .content .right-section .contact-info .info-item .info-value {
        font-size: 15px;
        padding-left: 20px;
        text-align: left;
    }
    .content .right-section .email-form {
        margin-left: auto;
        margin-right: auto;
        margin-top: 5px;
    }
    .content .right-section .email-form .form-group {
        margin-bottom: 10px;
    }
    .content .right-section .email-form .form-label {
        font-size: 13px;
        margin-bottom: 5px;
    }
    .content .right-section .email-form .form-input,
    .content .right-section .email-form .form-textarea {
        padding: 8px 12px;
        font-size: 13px;
    }
    .content .right-section .email-form .form-textarea {
        min-height: 55px;
    }
    .content .right-section .email-form .send-btn {
        width: 100%;
        padding: 10px 20px;
        font-size: 13px;
    }
    .content .left-section {
        min-height: auto;
    }
    .content .left-section .focus-text {
        height: 70px;
        font-size: 15px;
        padding: 0 20px;
    }
    .content .left-section .blue-box {
        height: 90px;
        padding: 0 20px;
    }
    .content .left-section .blue-box p {
        font-size: 15px;
    }
    .content .left-section .skill-text {
        height: 70px;
        font-size: 15px;
        padding: 0 20px;
    }
    .content .left-section .diamond-image {
        padding: 30px 15px;
        height: 280px;
    }
    .content .left-section .diamond-image img {
        max-width: 220px;
        max-height: 220px;
    }
    .slide-item p {
        font-size: 15px;
    }
}