/* SideBar */
aside {
    display: flex;
    position: fixed;
    flex-direction: column;
    align-items: center;
    justify-content: space-evenly;
    width: 20%; /* Width is now in percentage */
    height: 90vh;
    left: 3vw;
    top: 5vh;
    padding: 2vh;
    
    box-shadow: var(--main-box-shadow);
    border-radius: 15px;
    box-sizing: border-box;
    background-color: var(--mainDivs-background-color);
    color: var(--text-color1);
    
    flex: 1 1 auto;
}

.side-wrapper {
    display: flex;
    flex-direction: column;
    position: relative;
    
    flex: 1 1 auto;
}

/* SideBar Img */
.logo {
    display: flex;
    position: relative;
    
    height: 30%;
}

.mainLogo {
    position: relative;
    width: 100%;
    height: auto; /* Makes sure the image scales proportionally */
    top: -3.2vw;
}

.darkMobileLogo {
    display: none;
}

/* Name Tag */
.NameTag {
    display: flex;
    position: relative;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: auto; 

}

.NameTag h1 {
    width: 100%;
    margin: 0 0 10px;
    text-align: center;
    font-size: 2.2rem;
    font-weight: 550;
    font-family: serif;
    letter-spacing: 1px;
    font-variant-caps: petite-caps;
    color: var(--text-color1);
}

.NameTag h2 {
    display: inline-block;
    position: relative;
    text-align: center;
    overflow: hidden;
    width: 95%;
    padding: .5vh;
    border-radius: 15px;
    margin: 10px 0 20px;
    background-color: var(--div-background-color);
    color: var(--text-color1);
    
    font-size: 1.5rem;
    font-family: serif;
    font-weight: 550;
    letter-spacing: 1px;
    font-variant-caps: petite-caps;
}

.NameTag h2::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: -150%;
    background: var(--gradient-background);
    transform: skewX(-25deg);
}

.Side-infoTxt {
    display: flex;
    position: relative;

    border-bottom: var(--half-border-bottom);
    
    margin: 0 0 10px;
}

.Side-infoTxt h3 {
    display: inline-block;
    position: relative;
    text-align: center;
    overflow: hidden;
    width: 95%;
    padding: .5vh;
    border-radius: 15px;
    margin: 0;
    font-size: 1rem;
    font-family: serif;
    font-weight: 250;
    letter-spacing: 1px;
    font-variant-caps: petite-caps;
}

/* NameTag Animation trigger on hover */
.NameTag h2:hover::after {
    animation: shine 1s ease-out;
}

@keyframes shine {
    from {
        left: -100%;
    }
    to {
        left: 100%;
    }
}

/* Personal Info */
/*
.personalInfoGrid {
    display: flex;
    flex-direction: column;
    padding: 20px;
    width: 100%;
    height: 100%;
    justify-content: space-around;
    align-items: flex-start;
    transform: translateY(-10%);
}

.contactCard {
    display: flex;
    align-items: center; 
    column-gap: 20px;
    justify-content: flex-start;
    align-content: flex-start;
    width: 100%;
    height: 100%;
}

.contactCard i {
    font-size: 2rem;
    text-align: center;
    justify-content: center;
    text-align: center;
    display: flex;
    color: var(--i-color);
    
    width: 3vw;
    height: 2.5vw;
    padding: 5px;
}

.textGroup {
    display: flex;
    flex-direction: column;
}

.textGroup h3 {
    margin: 0;
    font-size: 1.3vw;
    font-family: serif;
    font-weight: 5500;
    letter-spacing: 2px;
    font-variant-caps: petite-caps;
}

.textGroup p {
    margin: 5px 0 0;
    font-size: 1vw;
    font-family: serif;
    letter-spacing: 1px;
    font-weight: 250;
}

*/

.contact {
    display: flex;
    flex-direction: row;
    flex: 1 1 auto;
    
    position: relative; 
    width: 100%;
    height: auto;
}

.contactIcon,
.contactTxt {
    display: grid;
    position: relative;
    flex: 1 1 auto;
    
}

.contactIcon i {
    display: flex;
    position: relative;
    justify-content: center;
    align-items: center;
    
    font-size: 1.8rem;
}

.txtGroup {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start; 
}

.txtGroup h3 {
    margin: 0 0 5px;;
    
    font-size: 1.4rem;
    font-weight: 550;
    letter-spacing: 1px;
    line-height: 1;
}

.txtGroup p {
    margin: 0;
    
    font-size: 1.2rem;
    font-weight: 250;
    letter-spacing: 1px;
    line-height: 1.5;
}

/* Social Media Icons */
.socials {
    display: flex;
    position: relative;
    justify-content: space-evenly;
    align-items: flex-end;
    width: 100%;
    height: 10%;
    margin: 0;
    color: var(--social-color);
}

.socials i {
    font-size: 1.8rem;
    padding: 5px;
    cursor: pointer;
}

a.social-icon {
    color: var(--social-color1);
    text-decoration: none;
    font-weight: normal;
}

.socials i:hover {
    transform: scale(1.2);
    color: var(--hover-color);
    transition: ease-in-out .4s;
}

a[href^="tel"] {
    color: var(--text-color1);
    text-decoration: none;
    font-weight: normal;
    }

a[href^="mail"] {
    color: var(--text-color1);
    text-decoration: none;
    font-weight: normal;
    }

a[href^="i"] {
    color: var(--text-color1);
}

a {
    color: var(--text-color1);
}