﻿


.profileImage {
    position: relative;
    width: 100%;
    height: auto;
    top: -10px;
    left: 0;
    pointer-events: none;
}

/* Profile Page Container */
.profilePage {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    padding: 20px;
}

/* Profile Image */
.profileImageContainer {
    position: absolute;
    left: 10px;
    top: -100px;
    max-width: 200px;
    max-height: 200px;
    min-width: 200px;
    min-height: 200px;
    overflow: hidden;
    position: relative;
    outline: 4px solid var(--background);
    border-radius: 10px;
    box-shadow: 0 0px 25px 0px #000000ab;
    margin-bottom: -180px;
}


.dark-mode .profileImageContainer {
    outline-color: #ffac00;
}

.profileImage {
    object-fit: cover;
    border-bottom: 2px solid #ccc;
}

.profileBio {
    color: var(--dim-color);
    font-size: 16px;
}

.profileBanner {
    background-image: url('../Images/Hexagons_Banner_edited.png');
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    height: 380px;
}

.profileContainer {
    flex: 1;
    background: linear-gradient(var(--background-light) 0px, rgba(0,0,0,0) 120px);
    position: relative;
    height: calc(100% - 280px);
    box-shadow: 0 -30px 20px -10px rgba(0, 0, 0, 0.5);
}
/* var(--background-light) */
.profileHeader {
    min-height: 120px;
    padding-bottom: 40px;
}

.profileOffset {
    margin: 20px auto 10px auto;
    max-width: var(--max-width);
}

.profileHeader-inner {
    position: relative;
    display: flex;
    flex-direction: row;
    margin: 0 auto;
    max-width: var(--max-width);
}

.profileHeaderText {
    padding-top: 10px;
    margin-left: 50px;
    font-weight: bold;
}


.ProfileHeaderBio {
}
