/* ===== General Page Styles ===== */
body {
    background: #1e1e1e; /* Dark gray background */
    font-family: Arial, sans-serif;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0;
}

/* ===== Business Card Container ===== */
.business-card {
    background: #2c2c2c; /* Slightly lighter dark card */
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.6); /* Darker shadow for depth */
    text-align: center;
    width: 320px;
    color: #f4f4f4; /* Default text color: light */
    max-width: 90%;
    width: 320px;
}

.profile-wrapper {
    position: relative;  /* needed for positioning fallback */
    width: 100px;
    height: 100px;
}

.profile-img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 1rem;
}

/* Small initials badge at bottom-right */
.profile-fallback {
    display: none;           /* hidden by default */
    width: 25px;             /* small size */
    height: 25px;
    border-radius: 50%;      /* circular badge */
    background: #0077b6;     /* badge color */
    color: #fff;
    font-weight: bold;
    font-size: 0.7rem;       /* small initials */
    display: flex;
    justify-content: center;
    align-items: center;
    
    position: absolute;      /* position inside wrapper */
    bottom: 0;               /* bottom right */
    right: 0;
    border: 1px solid #fff;  /* optional border to separate from image */
}

/* ===== Job Title ===== */
.title {
    color: #00bfff; /* Accent blue for dark theme */
    font-weight: bold;
    margin-bottom: 0.5rem;
    font-size: 18px;
}

.company {
    font-size: 0.9rem;
    color: #00bfff;  /* accent color to highlight brand */
    font-weight: bold;
    margin-bottom: 1rem;  /* space before divider */
}

/* ===== Bio Text ===== */
.bio {
    font-size: 0.9rem;
    color: #ccc; /* Lighter gray for readability */
    margin: 0.5rem 0 1.5rem 0;
    line-height: 1.4;
    text-align: left;
}

/* ===== Contact Info ===== */
.contact-info {
    text-align: left;
    margin-bottom: 1.5rem;
}

.contact-info a {
    color: #00bfff; /* Keep accent color for links */
    text-decoration: none;
    font-weight: bold;
}

.contact-info a:hover {
    text-decoration: underline;
    color: #0095c2; /* Slightly darker on hover */
}

/* ===== Divider Line ===== */
hr {
    border: none;
    border-top: 1px solid #444; /* Darker divider */
    margin: 1.5rem auto;
    width: 80%;
}

/* ===== Social Links ===== */
.social-links {
    text-align: center;
}

.social-links a {
    display: inline-flex;
    align-items: center;
    color: #00bfff;
    text-decoration: none;
    margin: 0 0.5rem;
    padding: 0.3rem 0.7rem;
    border-radius: 5px;
    transition: background 0.2s, color 0.2s;
    font-weight: normal;
}

.social-links a i {
    margin-right: 0.5rem;
    font-size: 1.1rem;
}

.social-links a:hover {
    background: #00bfff;
    color: #1e1e1e; /* Text becomes dark on hover for contrast */
}
