/* ========================================
   BIODATA SECTION
======================================== */

.biodata-section {
    position: relative;

    min-height: 100vh;

    padding: 120px 7vw 70px;

    background: #111111;

    color: #ffffff;

    overflow: hidden;
}


.biodata-container {
    width: 100%;
    max-width: 1500px;

    margin: auto;
}


/* ========================================
   HEADER
======================================== */

.biodata-header {
    display: flex;
    align-items: center;
    justify-content: space-between;

    padding-bottom: 25px;

    border-bottom: 1px solid rgba(255,255,255,0.18);
}


.section-label {
    display: flex;
    align-items: center;
    gap: 10px;

    font-size: 12px;
    letter-spacing: 0.18em;

    color: #aaaaaa;
}


.label-dot {
    width: 7px;
    height: 7px;

    border-radius: 50%;

    background: #ffffff;
}


.section-number {
    font-size: 13px;

    color: #777777;

    letter-spacing: 0.1em;
}


/* ========================================
   CONTENT
======================================== */

.biodata-content {
    display: grid;

    grid-template-columns: 0.9fr 1.1fr;

    gap: 100px;

    padding: 80px 0 110px;
}


/* ========================================
   INTRO
======================================== */

.biodata-intro {
    position: relative;
}


.small-title {
    margin-bottom: 25px;

    font-size: 11px;

    letter-spacing: 0.2em;

    color: #777777;
}


.biodata-intro h2 {
    font-size: clamp(70px, 9vw, 150px);

    line-height: 0.82;

    font-weight: 400;

    letter-spacing: -0.07em;
}


.biodata-intro h2 span {
    color: #8bd9e8;
}


.intro-description {
    max-width: 410px;

    margin-top: 45px;

    color: #8c8c8c;

    font-size: 14px;

    line-height: 1.7;
}


/* ========================================
   GROUP BADGE
======================================== */

.group-badge {
    display: flex;
    align-items: center;
    gap: 15px;

    width: fit-content;

    margin-top: 45px;

    padding: 12px 17px;

    border: 1px solid #333333;

    border-radius: 100px;
}


.group-badge span {
    font-size: 9px;

    letter-spacing: 0.15em;

    color: #666666;
}


.group-badge strong {
    font-size: 12px;

    font-weight: 500;

    letter-spacing: 0.1em;
}


.group-badge small {
    display: flex;
    align-items: center;
    justify-content: center;

    width: 25px;
    height: 25px;

    border-radius: 50%;

    background: #8bd9e8;

    color: #111111;

    font-size: 9px;
}


/* ========================================
   BIODATA INFORMATION
======================================== */

.biodata-info {
    border-top: 1px solid #333333;
}


.bio-row {
    display: grid;

    grid-template-columns: 150px 1fr;

    gap: 30px;

    min-height: 70px;

    padding: 20px 0;

    align-items: center;

    border-bottom: 1px solid #2d2d2d;

    transition:
        padding-left 0.3s ease,
        background 0.3s ease;
}


.bio-row:hover {
    padding-left: 15px;

    background: rgba(255,255,255,0.025);
}


.bio-label {
    font-size: 9px;

    letter-spacing: 0.15em;

    color: #666666;
}


.bio-value {
    font-size: 14px;

    font-weight: 400;

    line-height: 1.5;

    color: #eeeeee;
}


/* ========================================
   MARQUEE
======================================== */

.biodata-marquee {
    width: 100%;

    overflow: hidden;

    border-top: 1px solid #292929;
    border-bottom: 1px solid #292929;

    padding: 22px 0;
}


.marquee-track {
    display: flex;
    align-items: center;

    width: max-content;

    gap: 30px;

    animation: marqueeMove 22s linear infinite;
}


.marquee-track span {
    font-size: clamp(30px, 4vw, 60px);

    font-weight: 400;

    letter-spacing: -0.05em;

    color: #303030;

    white-space: nowrap;
}


.marquee-track i {
    font-size: 12px;

    color: #8bd9e8;
}


@keyframes marqueeMove {

    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-50%);
    }

}


/* ========================================
   RESPONSIVE TABLET
======================================== */

@media (max-width: 900px) {

    .biodata-section {
        padding: 90px 5vw 60px;
    }

    .biodata-content {
        grid-template-columns: 1fr;

        gap: 70px;

        padding-top: 60px;
    }

    .biodata-intro h2 {
        font-size: clamp(70px, 15vw, 130px);
    }

    .intro-description {
        margin-top: 35px;
    }

}


/* ========================================
   RESPONSIVE MOBILE
======================================== */

@media (max-width: 600px) {

    .biodata-section {
        padding: 80px 20px 50px;
    }

    .biodata-content {
        padding: 50px 0 80px;

        gap: 60px;
    }

    .biodata-intro h2 {
        font-size: 24vw;
    }

    .intro-description {
        font-size: 13px;

        margin-top: 30px;
    }

    .bio-row {
        grid-template-columns: 100px 1fr;

        gap: 15px;

        min-height: 65px;
    }

    .bio-label {
        font-size: 8px;
    }

    .bio-value {
        font-size: 12px;
    }

    .group-badge {
        margin-top: 30px;
    }

    .marquee-track span {
        font-size: 35px;
    }

}