@import "../../css/style.css";

:root {
    --wa-color: #25d366;
    --wa-hover: #128c7e;
}

/* --- Bio Page Specific Overrides --- */
body {
    padding-top: 0; /* No navbar on bio page */
    background-color: var(--bg-color); /* Default slate 50 */
}

.bio-container {
    max-width: 680px;
    margin: 0 auto;
}

.profile-img-container {
    display: inline-block;
    padding: 6px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-accent) 100%);
    border-radius: 50%;
    position: relative;
    z-index: 2;
}

.profile-img {
    width: 140px;
    height: 140px;
    object-fit: cover;
    border: 5px solid white;
    background-color: white;
}

.mn-badge {
    font-weight: 500;
    letter-spacing: 0.5px;
    font-size: 0.85rem;
}

.btn-wa {
    background-color: var(--wa-color);
    border: none;
    transition: all 0.3s ease;
}

.btn-wa:hover {
    background-color: var(--wa-hover);
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(142, 68, 173, 0.25) !important;
}

/* Redefine shape absolute positioning for the constraint container */
.bio-hero {
    position: relative;
    background-image: url('../../img/hero-bg.png'); /* Relative from bio/css/style.css */
    background-size: cover;
    background-position: center bottom;
    border-radius: 0 0 2rem 2rem;
    overflow: hidden;
}

.bio-hero::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: linear-gradient(to right, rgba(255,255,255,0.95) 0%, rgba(255,255,255,0.7) 100%);
    z-index: 0;
}
