html {
    scroll-behavior: smooth;
}

:root {
  --new-primary-color: #e153e6;
  --new-secondary-color: #F2B84C;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Main styling */

a {
    text-decoration: none;
    display: inline-block;
    color: #333;
}

ul {
    list-style: none;
}

h1, h2 {
    font-weight: 300;
}

p {
    margin: 10px 0;
}

span {
    color: var(--new-primary-color);
}

img {
    width: 100%;
    vertical-align: middle;
}
  
body {
    font-family: Helvetica, Arial, sans-serif;
    background: #fff;
    color: #333;
    line-height: 1.4;
}

/* NAVBAR */
.navbar {
    display: flex;
    align-items: center;
    justify-content: space-between !important;
    background: linear-gradient(to bottom, #333333 25%, #33333300);
    /*background-color: transparent;*/ 
    width: 100%;
    height: 70px;
    position: fixed;
    top: 0;
    padding: 0 25px;
    transition: 0.3s;
}
  
.navbar .logo {
    font-size: 2rem;
    font-weight: 400;
}
  
.navbar a {
    color: #fff;
    padding: 10px 10px;
    margin: 0 2.5px;
}

.navbar ul li a {
    transition: border-color 0.2s ease-in-out;
    border-bottom: 2px transparent solid;
}

.navbar ul li a:hover {
    border-bottom: 2px var(--new-secondary-color) solid;
    color: rgba(255, 255, 255, 0.7);
}

.navbar ul {
    display: flex;
}

.navbar .btn {
    margin-left: 1rem;
}

/* HEADER */
.hero {
    /* background-image: url("/Portfolio\ Images/Sandy.JPG"); */
    background-repeat: no-repeat;
    background-size: 100vw 120vh;
    object-fit: fill;
    background-color: rgba(0, 0, 0, 0.15);
    background-blend-mode: multiply;
    background-position-y: -40vh;
    height: 75vh;
    position: relative;
    color: #fff;
}

/* .hero .tint {
    background-color: rgba(0, 0, 0, 0.5);
    background-blend-mode: multiply;
} */

.hero .content {
    display: flex;
    flex-direction: column;
    text-align: center;
    justify-content: center;
    align-items: center;
    height: 100%;
    padding: 0 20px;
}

.hero .content h1 {
    font-size: 55px;
    position: static;
}

.hero .content p {
    font-size: 23px;
    max-width: 600px;
    margin: 20px 0 30px;
}

/* .hero::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.1;
    background-color: #000;
} */

/* ABOUT ME */
#aboutMe {
    margin: 2rem 0;
}
  
#aboutMe .bioInfo {
    display: grid;
    grid-template-areas: "bioimage bio bio";
    grid-gap: 1.2rem;
    align-items: center;
}

#aboutMe .bioInfo .bio p {
    padding-bottom: 1rem;
}

#aboutMe .bioInfo .bioImage {
    grid-area: bioimage;
    aspect-ratio: 4/3;
    object-fit: contain;
    height: auto;
    /* border: 3px solid pink; */
}

#aboutMe .bioInfo .thirdWidth {
    width: 20vw;
}

#aboutMe .bioInfo .bio {
    grid-area: bio;
    border-left: 3px solid var(--new-primary-color);
    padding: 1rem;
    margin-right: 2rem;
}

#aboutMe .bioInfo .bio h4 {
    font-size: 1.5rem;
}

#aboutMe p {
    text-align: justify;
    padding-bottom: 0px;
}

#aboutMe .outerList {
    list-style-type:disc;
    margin-left: 2rem;
}

#aboutMe .outerList li {
    padding-top: 0.5rem;
}

#aboutMe .innerList {
    list-style-type: circle;
    margin-left: 2rem;
}

#aboutMe .innerList li {
    padding-top: 0px;
}

/*  SKILLS */
#skills {
    margin: 2rem;
}

/* CONTACT */
#contact {
    padding: 2rem 0;
}

#content .section-title {
    left: 50%;
    transform: translate(-50%);
}

#content .bottom-line {
    left: 50%;
    transform: translate(-50%);
}

#contact .contact {
    display: grid;
    grid-template-areas: "email phone linkedIn";
    grid-gap: 1.2rem;
}

#contact .contact .email {
    grid-area: email;
    }

#contact .contact .phone {
    grid-area: phone;
}

#contact .contact .linkedIn {
    grid-area: linkedIn;
}

#contact .contact .email .fa,
#contact .contact .phone .fa,
#contact .contact .linkedIn .fa {
    color: var(--new-primary-color);
    margin: 1rem;
}

#contact .contact .linkedIn a {
    transition: color 0.2s ease-in-out;
    color: #333;
}

#contact .contact .linkedIn a:hover {
    color: var(--new-secondary-color);
}

/* FOOTER */
#mainFooter .footerContent {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 1.5rem;
    font-size: 1.2rem;
}
  
#mainFooter .footerContent .social i {
    border: 2px #333 solid;
    margin-left: 0.2rem;
    border-radius: 50%;
    padding: 0.5rem;
    text-align: center;
    transition: all 0.2s ease-out;
}
  
#mainFooter .footerContent .social i:hover {
    background: var(--new-secondary-color);
}

/* ONLOAD ANIMATION */
.intro {
    background: black;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    --new-primary-color: #b842bc;
    --new-secondary-color: #F2B84C;
}
  
.slider {
    background: #333;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    transform: translateY(100%);
}

.introText {
    color: rgb(233, 233, 233);
    font-family: "Heebo", sans-serif;
    font-size: 3rem;
}

.introText .text {
    color: rgb(212, 209, 209);
}

.hide {
    background: black;
    overflow: hidden;
}

.hide span {
    transform: translateY(100%);
    display: inline-block;
}

/* SCROLL BAR */
::-webkit-scrollbar {
    width: 0.75rem;
}
    
::-webkit-scrollbar-track {
    background: #333;
}
    
::-webkit-scrollbar-thumb {
    background: var(--new-primary-color);
    border-radius: 3rem;
}