/* ============================================================
   Yuarika Profile
   style.css
   ============================================================ */


/* ============================================================
   基本設定
   ============================================================ */

* {
    box-sizing: border-box;
}

html {
    min-height: 100%;
}

body {
    margin: 0;
    min-height: 100vh;

    background:
        radial-gradient(
            circle at 50% 20%,
            #18202b 0%,
            #0b0f14 45%,
            #05070a 100%
        );

    color: #ffffff;

    font-family:
        -apple-system,
        BlinkMacSystemFont,
        "Segoe UI",
        "Noto Sans JP",
        sans-serif;

    display: flex;
    justify-content: center;
    align-items: center;

    overflow-x: hidden;
}


/* ============================================================
   背景
   ============================================================ */

body::before {
    content: "";

    position: fixed;

    top: -30%;
    left: 50%;

    width: 700px;
    height: 700px;

    transform: translateX(-50%);

    background: radial-gradient(
        circle,
        rgba(80, 150, 255, 0.08),
        transparent 70%
    );

    pointer-events: none;
}


/* ============================================================
   プロフィール全体
   ============================================================ */

.profile {
    position: relative;

    width: min(90%, 650px);

    padding: 70px 30px 40px;

    text-align: center;

    animation: fadeIn 0.8s ease-out;
}


/* ============================================================
   プロフィール画像
   ============================================================ */

.profile-image-wrapper {
    width: 170px;
    height: 170px;

    margin: 0 auto 28px;

    padding: 5px;

    border-radius: 50%;

    background: linear-gradient(
        135deg,
        #ffffff,
        #6e7d91
    );

    box-shadow:
        0 0 35px rgba(120, 160, 220, 0.2),
        0 15px 40px rgba(0, 0, 0, 0.45);
}

.profile-image {
    display: block;

    width: 100%;
    height: 100%;

    object-fit: cover;

    border-radius: 50%;

    background: #11161c;
}


/* ============================================================
   名前
   ============================================================ */

.profile-name {
    margin: 0;

    font-size: clamp(38px, 8vw, 60px);

    font-weight: 700;

    letter-spacing: 0.08em;

    text-shadow:
        0 0 20px rgba(255, 255, 255, 0.08);
}


/* ============================================================
   Xリンク
   ============================================================ */

.x-link {
    display: inline-flex;

    align-items: center;
    justify-content: center;

    gap: 10px;

    margin-top: 18px;
    padding: 10px 18px;

    color: #cbd3dc;

    text-decoration: none;

    font-size: 16px;

    border: 1px solid rgba(255, 255, 255, 0.12);

    border-radius: 999px;

    background: rgba(255, 255, 255, 0.035);

    transition:
        background 0.2s ease,
        border-color 0.2s ease,
        color 0.2s ease,
        transform 0.2s ease;
}

.x-link:hover {
    color: #ffffff;

    background: rgba(255, 255, 255, 0.09);

    border-color: rgba(255, 255, 255, 0.25);

    transform: translateY(-2px);
}

.x-icon {
    font-size: 18px;

    font-weight: 600;
}


/* ============================================================
   ABOUT
   ============================================================ */

.introduction {
    max-width: 560px;

    margin: 60px auto 0;
    padding: 30px 25px;

    border-top: 1px solid rgba(255, 255, 255, 0.1);

    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.introduction h2 {
    margin: 0 0 28px;

    font-size: 13px;

    font-weight: 600;

    letter-spacing: 0.3em;

    color: #8995a3;
}

.introduction p {
    margin: 12px 0;

    color: #d7dde4;

    font-size: 16px;

    line-height: 1.9;
}


/* ============================================================
   フッター
   ============================================================ */

footer {
    margin-top: 45px;
}

footer p {
    margin: 0;

    color: #59636e;

    font-size: 12px;

    letter-spacing: 0.1em;
}


/* ============================================================
   アニメーション
   ============================================================ */

@keyframes fadeIn {

    from {
        opacity: 0;
        transform: translateY(15px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }

}


/* ============================================================
   スマートフォン
   ============================================================ */

@media (max-width: 600px) {

    body {
        align-items: flex-start;
    }

    .profile {
        width: 100%;

        padding:
            60px 20px 35px;
    }

    .profile-image-wrapper {
        width: 140px;
        height: 140px;

        margin-bottom: 24px;
    }

    .profile-name {
        font-size: 40px;
    }

    .introduction {
        margin-top: 50px;

        padding:
            28px 15px;
    }

    .introduction p {
        font-size: 15px;
    }

}
