.body {
    background-color: #ffffff;
    font-family: 'Montserrat', sans-serif;
    margin: 0;
    padding: 0;
    overflow-x: hidden;
}

.hero-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100vh;
    padding: 0 10%;
    gap: 50px;
}

.hero-content {
    flex: 1;
}

.hero-image-wrapper {
    flex: 1;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.side-block {
    position: fixed;
    background-color: #F2B824;
    width: 25px;
    z-index: 100;
}

.left-accent {
    left: 0;
    top: 30%;
    height: 370px;
    width: 50px;
}

.right-accent {
    right: 0;
    top: 53%;
    transform: translateY(-50%);
    height: 370px;
    width: 50px;
}

.intro-text {
    color: #F2B824;
    font-weight: 900;
    letter-spacing: 2px;
    text-decoration: underline;
    text-decoration-thickness: 7px;
    text-underline-offset: 9px;
    margin-bottom: 24px;
}

.main-name {
    font-family: 'Oswald', sans-serif;
    font-size: 4rem;
    font-weight: 700;
    color: #F2B824;
    -webkit-text-stroke: 0px;
    text-shadow: none;
    margin: 0;
    line-height: 1;
}

.outline {
    font-family: 'Oswald', sans-serif;
    font-weight: 700;
    color: white;
    -webkit-text-stroke: 1.5px #1A1A1B;
    text-shadow: 4px 4px 0px #1A1A1B;
    margin-right: 10px;
}

.name {
    font-family: 'Oswald', sans-serif;
    -webkit-text-stroke: 1.5px #F2B824;
    color: white;
    font-weight: 700;
    text-shadow: 5px 5px 0px #F2B824;
}

.badge {
    font-family: 'Montserrat', sans-serif;
    background-color: #1A1A1B;
    color: #F2B824;
    display: inline-block;
    padding: 10px 15px;
    font-size: 1.1rem;
    margin-top: 35px;
    letter-spacing: 2px;
}

.sub-badge {
    font-family: 'Montserrat', sans-serif;
    background-color: #F2B824;
    color: #1A1A1B;
    display: inline-block;
    padding: 10px 27px;
    font-size: 1.1rem;
    margin-top: 10px;
    letter-spacing: 2px;
}

.description {
    color: #4A4A4A;
    line-height: 1.6;
    max-width: 610px;
    font-weight: 700;
    font-family: 'Courier New', Courier, monospace;
}

.profile-circle {
    width: 400px;
    height: 400px;
    border-radius: 50%;
    overflow: hidden;
    z-index: 2;
    border: 5px solid white;
}

.profile-circle img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.orbit-ring {
    position: absolute;
    width: 450px;
    height: 450px;
    border: 2px solid #F2B824;
    border-radius: 50%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 1;
}

.cta-btn {
    background-color: #1A1A1B;
    color: white;
    border: none;
    padding: 15px 35px;
    border-radius: 30px;
    font-weight: 800;
    cursor: pointer;
    margin-top: 30px;
    transition: 0.3s;
}

.cta-btn:hover {
    background-color: #F2B824;
    color: #1A1A1B;
}

.orbit-icon {
    position: absolute;
    width: 35px;
    height: 35px;
    background-color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 14px;
    z-index: 3;
    border: 2px solid #F2B824;
    box-shadow: 0 0 8px rgba(0, 0, 0, 0.3);
    transition: 0.3s;
}

.orbit-icon:hover {
    background-color: #F2B824;
    color: #1A1A1B;
}

.icon-1 {
    top: 2%;
    right: 21%;
    background-color: #F2B824;
}

.icon-2 {
    top: 16%;
    right: 5%;
}

.icon-3 {
    top: 36%;
    right: -3.5%;
}

.icon-4 {
    top: 58%;
    right: -3%;
}

.icon-5 {
    top: 78%;
    right: 7%;
}

.icon-6 {
    top: 91%;
    right: 24%;
}

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

/* Tablets (768px and below) */
@media (max-width: 768px) {
    .hero-container {
        flex-direction: column;
        height: auto;
        padding: 60px 30px;
        gap: 50px;
        align-items: center;
        justify-content: center;
    }

    .hero-content {
        flex: 1;
    }

    .hero-image-wrapper {
        flex: 1;
        width: 100%;
    }

    .main-name {
        font-size: 2.5rem;
    }

    .intro-text {
        font-size: 1.2rem;
    }

    .badge {
        font-size: 0.9rem;
        padding: 8px 12px;
    }

    .sub-badge {
        font-size: 0.9rem;
        padding: 8px 20px;
    }

    .description {
        font-size: 1rem;
        max-width: 100%;
    }

    .profile-circle {
        width: 250px;
        height: 250px;
    }

    .orbit-ring {
        width: 300px;
        height: 300px;
    }

    .orbit-icon {
        width: 30px;
        height: 30px;
        font-size: 12px;
    }

    .left-accent {
        display: none;
    }

    .right-accent {
        display: none;
    }

    .cta-btn {
        padding: 12px 25px;
        font-size: 0.9rem;
    }
}

/* Mobile phones (480px and below) */
@media (max-width: 480px) {
    body {
        overflow-x: hidden;
    }

    .hero-container {
        padding: 40px 15px 50px 15px;
        gap: 30px;
        min-height: auto;
        align-items: center;
        justify-content: center;
    }

    .hero-content {
        width: 100%;
        text-align: center;
    }

    .hero-image-wrapper {
        width: 100%;
        height: auto;
        margin-top: 20px;
    }

    .main-name {
        font-size: 1.5rem;
        -webkit-text-stroke: 1px #F2B824;
        text-shadow: 3px 3px 0px #F2B824;
    }

    .outline {
        font-size: 1.5rem;
        -webkit-text-stroke: 1px #1A1A1B;
        text-shadow: 2px 2px 0px #1A1A1B;
    }

    .name {
        font-size: 1.5rem;
        -webkit-text-stroke: 1px #F2B824;
        text-shadow: 3px 3px 0px #F2B824;
    }

    .intro-text {
        font-size: 1rem;
        margin-bottom: 12px;
        text-decoration-thickness: 3px;
        text-underline-offset: 5px;
    }

    .badge {
        font-size: 0.8rem;
        padding: 6px 10px;
        margin-top: 15px;
    }

    .sub-badge {
        font-size: 0.8rem;
        padding: 6px 15px;
        margin-top: 10px;
    }

    .tagline-group {
        margin: 15px 0;
    }

    .description {
        font-size: 0.9rem;
        line-height: 1.5;
        margin-bottom: 20px;
        max-width: 100%;
    }

    .profile-circle {
        width: 180px;
        height: 180px;
        border: 5px solid white;
    }

    .orbit-ring {
        width: 220px;
        height: 220px;
        border: 2px solid #F2B824;
    }

    .orbit-icon {
        width: 28px;
        height: 28px;
        font-size: 10px;
        border: 1.5px solid #F2B824;
    }

    /* Reposition orbit icons to fit within mobile viewport */
    .icon-1 {
        top: -14px;
        right: 50%;
        transform: translateX(50%);
    }

    .icon-2 {
        top: 7px;
        right: 31px;
    }

    .icon-3 {
        top: 62px;
        right: -9px;
    }

    .icon-4 {
        top: 130px;
        right: -9px;
    }

    .icon-5 {
        top: 185px;
        right: 31px;
    }

    .icon-6 {
        top: 206px;
        right: 50%;
        transform: translateX(50%);
    }

    .cta-btn {
        padding: 12px 25px;
        font-size: 0.85rem;
        margin-top: 20px;
    }
}