/* ===================================
   RESET
=================================== */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}


/* ===================================
   BODY
=================================== */

body {
    font-family: "Poppins", sans-serif;

    background:
        linear-gradient(
            135deg,
            #eef2ff 0%,
            #f8f9ff 50%,
            #e8ecff 100%
        );

    color: #202438;

    min-height: 100vh;

    padding: 60px 20px;
}


/* ===================================
   CONTAINER
=================================== */

.container {
    width: 100%;
    max-width: 950px;

    margin: auto;
}


/* ===================================
   HEADER
=================================== */

.header {
    display: flex;

    align-items: center;

    gap: 45px;

    padding: 45px;

    background: #ffffff;

    border-radius: 25px;

    box-shadow:
        0 20px 50px rgba(46, 55, 120, 0.12);

    position: relative;

    overflow: hidden;
}

.header::before {
    content: "";

    position: absolute;

    width: 250px;
    height: 250px;

    border-radius: 50%;

    background:
        linear-gradient(
            135deg,
            #667eea,
            #764ba2
        );

    opacity: 0.08;

    top: -120px;
    right: -80px;
}


/* ===================================
   PHOTO
=================================== */

.photo {
    width: 190px;
    height: 190px;

    min-width: 190px;

    padding: 7px;

    border-radius: 50%;

    background:
        linear-gradient(
            135deg,
            #667eea,
            #764ba2
        );

    position: relative;

    z-index: 2;
}

.photo img {
    width: 100%;
    height: 100%;

    object-fit: cover;

    border-radius: 50%;

    border: 6px solid white;
}


/* ===================================
   HEADER TEXT
=================================== */

.header-text {
    position: relative;

    z-index: 2;
}

.label {
    color: #667eea;

    font-size: 13px;

    font-weight: 700;

    letter-spacing: 4px;

    margin-bottom: 10px;
}

.header h1 {
    font-size: 36px;

    line-height: 1.2;

    color: #202438;

    margin-bottom: 15px;
}

.description {
    max-width: 600px;

    color: #777d91;

    font-size: 14px;

    line-height: 1.8;
}


/* ===================================
   SECTION
=================================== */

.section {
    margin-top: 30px;

    background: #ffffff;

    padding: 35px;

    border-radius: 22px;

    box-shadow:
        0 15px 40px rgba(46, 55, 120, 0.08);
}


/* ===================================
   SECTION TITLE
=================================== */

.section-title {
    display: flex;

    align-items: center;

    gap: 12px;

    margin-bottom: 25px;
}

.section-title span {
    width: 6px;
    height: 30px;

    background:
        linear-gradient(
            180deg,
            #667eea,
            #764ba2
        );

    border-radius: 10px;
}

.section-title h2 {
    font-size: 21px;

    color: #252940;
}


/* ===================================
   DATA PRIBADI
=================================== */

.data-grid {
    display: grid;

    grid-template-columns:
        repeat(2, 1fr);

    gap: 15px;
}

.data-box {
    padding: 18px;

    background: #f7f8ff;

    border: 1px solid #edf0ff;

    border-radius: 14px;

    transition: 0.3s;
}

.data-box:hover {
    border-color: #cdd3ff;

    box-shadow:
        0 8px 20px rgba(102, 126, 234, 0.08);
}

.data-box p {
    font-size: 11px;

    color: #8b90a3;

    margin-bottom: 5px;
}

.data-box h3 {
    font-size: 14px;

    color: #303449;

    font-weight: 600;
}


/* ===================================
   EDUCATION
=================================== */

.education-list {
    display: flex;

    flex-direction: column;

    gap: 15px;
}

.education-item {
    display: flex;

    align-items: center;

    gap: 20px;

    padding: 20px;

    border-radius: 16px;

    background: #f7f8ff;

    border-left: 4px solid #667eea;

    transition: 0.3s;
}

.education-item:hover {
    transform: translateX(5px);

    background: #f1f3ff;
}

.education-number {
    width: 55px;
    height: 55px;

    min-width: 55px;

    display: flex;

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

    border-radius: 15px;

    color: white;

    font-weight: 700;

    background:
        linear-gradient(
            135deg,
            #667eea,
            #764ba2
        );
}

.education-content p {
    color: #667eea;

    font-size: 11px;

    font-weight: 600;

    margin-bottom: 3px;
}

.education-content h3 {
    color: #303449;

    font-size: 16px;
}

.education-content span {
    display: block;

    margin-top: 3px;

    color: #999;

    font-size: 11px;
}


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

.about {
    padding: 25px;

    background:
        linear-gradient(
            135deg,
            #f7f8ff,
            #f2f4ff
        );

    border-radius: 16px;

    border-left: 4px solid #667eea;
}

.about p {
    color: #666c80;

    font-size: 14px;

    line-height: 1.9;

    margin-bottom: 15px;
}

.about p:last-child {
    margin-bottom: 0;
}

.about strong {
    color: #4f5fbd;
}


/* ===================================
   SKILLS
=================================== */

.skills {
    display: flex;

    flex-wrap: wrap;

    gap: 10px;
}

.skills span {
    padding: 9px 17px;

    border-radius: 30px;

    background: #eef0ff;

    color: #5c68bd;

    font-size: 12px;

    font-weight: 500;

    border: 1px solid #dfe3ff;
}


/* ===================================
   SOCIAL MEDIA
=================================== */

.social-section {
    margin-top: 30px;

    padding: 40px;

    border-radius: 22px;

    color: white;

    background:
        linear-gradient(
            135deg,
            #202438,
            #34395a
        );

    box-shadow:
        0 15px 40px rgba(32, 36, 56, 0.2);
}

.social-section h2 {
    font-size: 22px;

    margin-bottom: 5px;
}

.social-section > p {
    color: #bfc3d5;

    font-size: 13px;

    margin-bottom: 25px;
}


/* ===================================
   SOCIAL
=================================== */

.social {
    display: grid;

    grid-template-columns:
        repeat(3, 1fr);

    gap: 15px;
}

.social-item {
    display: flex;

    align-items: center;

    gap: 12px;

    padding: 15px;

    text-decoration: none;

    color: white;

    border-radius: 15px;

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

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

    transition: 0.3s;
}

.social-item:hover {
    transform: translateY(-4px);

    background: rgba(255, 255, 255, 0.14);
}

.social-icon {
    width: 42px;
    height: 42px;

    min-width: 42px;

    display: flex;

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

    border-radius: 12px;

    font-size: 12px;

    font-weight: 700;

    background: white;

    color: #202438;
}

.instagram .social-icon {
    color: #e1306c;
}

.tiktok .social-icon {
    color: #111111;
}

.whatsapp .social-icon {
    color: #25d366;
}

.social-item small {
    display: block;

    color: #aeb3c8;

    font-size: 10px;
}

.social-item strong {
    display: block;

    margin-top: 2px;

    font-size: 12px;

    font-weight: 500;
}


/* ===================================
   FOOTER
=================================== */

footer {
    text-align: center;

    margin-top: 40px;

    color: #858ba0;

    font-size: 11px;
}

.footer-line {
    width: 50px;
    height: 3px;

    margin: 0 auto 15px;

    border-radius: 10px;

    background:
        linear-gradient(
            90deg,
            #667eea,
            #764ba2
        );
}

footer span {
    display: block;

    margin-top: 4px;

    color: #a1a6b7;
}


/* ===================================
   RESPONSIVE
=================================== */

@media (max-width: 750px) {

    body {
        padding: 25px 15px;
    }

    .header {
        flex-direction: column;

        text-align: center;

        padding: 35px 25px;

        gap: 25px;
    }

    .header h1 {
        font-size: 27px;
    }

    .data-grid {
        grid-template-columns: 1fr;
    }

    .social {
        grid-template-columns: 1fr;
    }
}


@media (max-width: 450px) {

    .section,
    .social-section {
        padding: 25px 18px;
    }

    .photo {
        width: 150px;
        height: 150px;

        min-width: 150px;
    }

    .header h1 {
        font-size: 23px;
    }

    .education-item {
        padding: 15px;

        gap: 12px;
    }
}
