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

body{
    background-color:#1974b1;
    font-family:-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Helvetica,Arial,sans-serif;
    min-height:100vh;
    display:flex;
    justify-content:center;
    align-items:center;
    overflow-x:hidden;
}

/* --- Main Hero Section --- */
.hero-wrapper-section{

    width:100%;
    min-height:100vh;
    display:flex;
    flex-direction:column;
    justify-content:center;
    align-items:center;
    padding:60px 20px;
    text-align:center;
    color:#fff;
}

.hero-content-box{
    width:100%;
    max-width:620px;
    display:flex;
    flex-direction:column;
    align-items:center;
}

/* --- Profile Image --- */
.profile-avatar-block{
    margin-bottom:25px;
    display:flex;
    justify-content:center;
}

.avatar-graphic{
    width:450px;
    max-width:100%;
    height:auto;
    object-fit:cover;
    
}

/* --- Buttons --- */
.cta-button-group{
    width:100%;
    display:flex;
    flex-direction:column;
    gap:20px;
    margin-top:5px;
    margin-bottom:35px;
}

.hero-action-link{
    width:100%;
    display:flex;
    justify-content:center;
    align-items:center;
    padding:16px;
    background:#bae3e9;
    color:#0f172a;
    text-decoration:none;
    font-size:25px;
    font-weight:700;
    border-radius:14px;
    transition:0.3s ease;
    box-shadow:0 4px 10px rgba(0,0,0,0.1);
}

.hero-action-link:hover{
    transform:translateY(-3px);
    box-shadow:0 0 10px #7dd3fc,
               0 0 20px #38bdf8;
}


.social-media-strip {
    display: flex;
    justify-content: center;
    gap: 24px;
    width: 100%;
}

.social-strip-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    width: 70px;
}

/* High contrast rounded circle box container for structural icons */
.icon-circle-wrapper {
    width: 50px;
    height: 50px;
    background-color: rgba(255, 255, 255, 0.95);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    transition: all 0.25s ease;
}

.social-strip-item i {
    font-size: 30px;
    transition: all 0.25s ease;
}

/* Brand configurations inside initial layout state */
.fb-color i { color: #1877F2; }
.ig-color i { color: #E4405F; }
.tk-color i { color: #000000; }

.social-label-text {
    color: #e2e8f0;
    font-size: 16px;
    font-weight: 500;
    transition: color 0.2s ease;
}

/* Inverting styles beautifully on hover */
.social-strip-item:hover .icon-circle-wrapper {
    transform: translateY(-5px);
}

.fb-color:hover .icon-circle-wrapper { background-color: #1877F2; box-shadow: 0 0 15px rgba(24, 119, 242, 0.6); }
.ig-color:hover .icon-circle-wrapper { background-color: #E4405F; box-shadow: 0 0 15px rgba(228, 64, 95, 0.6); }
.tk-color:hover .icon-circle-wrapper { background-color: #000000; box-shadow: 0 0 15px rgba(0, 0, 0, 0.4); }

.social-strip-item:hover .icon-circle-wrapper i {
    color: #ffffff !important;
}

.social-strip-item:hover .social-label-text {
    color: #ffffff;
}

/* --- Dynamic Aura Background Keyframe Animation --- */
@keyframes auraPulse {
    0%, 100% { transform: translate(-50%, -50%) scale(1); opacity: 0.8; }
    50% { transform: translate(-50%, -50%) scale(1.15); opacity: 0.5; }
}


/* --- Mobile Responsive --- */
@media(max-width:480px){

    .hero-wrapper-section{
        padding:40px 15px;
    }

    .avatar-graphic{
        width:140px;
    }

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

    .wellness-slogan{
        font-size:14px;
    }

    .hero-action-link{
        font-size:15px;
        padding:14px;
    }

    .social-media-strip{
        gap:18px;
    }

    .social-strip-item i{
        font-size:28px;
    }

    .social-label-text{
        font-size:12px;
    }
}