/* Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Syne:wght@400..800&display=swap');


:root {
    scroll-padding-top: 50px;
    --c-brand: #f83691;
    --c-brand-rgb: 248, 54, 145;
    --c-dark: #303050;
    --c-body: #636383;
    --f-main: "Syne", sans-serif;
    --transition: all .6s cubic-bezier(.165, .84, .44, 1);
    --shadow: 0px 15px 40px rgba(0, 0, 0, 0.1);
}

/*======== Reset & Helpers ========*/
body {
    font-family: var(--f-main);
    color: var(--c-body);
    line-height: 1.7;
}

h1, .h1, h2, .h2, h3, .h3, h4, .h4, h5, .h5, h6, .h6 {
    font-weight: 700;
    color: var(--c-dark);
}

a {
    text-decoration: none  !important;
    color: var(--c-dark);
    transition: var(--transition);
}

a:hover {
    color: var(--c-brand);
}

img {
    width: 100%;
}

.section-padding {
    padding-top: 120px;
    padding-bottom: 120px;
}

.text-brand {
    color: var(--c-brand);
}

.section-title {
    max-width: 560px;
    margin: 0 auto 60px auto;
}

.line {
    width: 60px;
    height: 2px ;
    background-color: var(--c-brand);
    margin: 20px auto ;
    display: inline-block;
}

.section-connector {
    position: relative;
}

.section-connector::after {
    content: '';
    width: 2px;
    height: 90px ;
    background-color: var(--c-brand);
    position:absolute;
    top: -60px;
    left: 50%;
}

.python {
    font-size: 14px;
    color: white;
    background-color: green;
    width: 60px;
    height: 24px;
    border-radius: 2px;
    margin: 0px 3px;
    margin-bottom: 5px;
}

.jupyter {
    font-size: 14px;
    color: white;
    background-color: darkgoldenrod;
    width: 125px;
    height: 24px;
    border-radius: 2px;
    margin: 0px 3px;
}

.React {
    font-size: 14px;
    color: white;
    background-color: rgb(121, 0, 125);
    width: 55px;
    height: 24px;
    border-radius: 2px;
    margin: 0px 3px;
    margin-bottom: 5px;
}

.JavaScript {
    font-size: 14px;
    color: white;
    background-color: rgb(2, 0, 125);
    width: 85px;
    height: 24px;
    border-radius: 2px;
    margin: 0px 3px;
}

.HTML {
    font-size: 14px;
    color: white;
    background-color: rgb(170, 43, 8);
    width: 90px;
    height: 24px;
    border-radius: 2px;
    margin: 0px 3px;
}

.c {
    font-size: 14px;
    color: white;
    background-color: rgb(3, 80, 131);
    width: 45px;
    height: 24px;
    border-radius: 2px;
    margin: 0px 3px;
}

/* Navbar */
.navbar {
    padding-top: 20px;
    padding-bottom: 20px;
    background-color: white !important;
    transition: var(--transition) !important;
    z-index: 100000;
}

.navbar.scrolled {
    padding-top: 10px !important;
    padding-bottom: 10px !important;
    background-color: white !important;
    position: fixed;
    width: 100%;
    box-shadow: var(--shadow) !important;
}
  
@media (min-width: 992px) {
    .navbar-expand-lg .navbar-nav .nav-link {
      padding-right: 16px;
      padding-left: 16px;
    }
}

.navbar .navbar-nav .nav-link {
    font-weight: 500;
    color: var(--c-dark);
    font-size: 20px;
}
  
.navbar .navbar-nav .nav-link:hover,
.navbar .navbar-nav .nav-link.active {
    color: var(--c-brand);
}
  
.navbar-brand {
    font-size: 30px;
    font-weight: 700;
    color: var(--c-dark);
    padding: 0;
    margin-left: 10px;
}

.social-icon {
    width: 36px;
    height: 36px;
    background-color: var(--c-brand);
    font-size: 20px;
    color: white;
    border: 2px solid var(--c-brand);
    border-radius: 4px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin: 6px;
}

.social-icon:hover {
    background-color: transparent;
}

/* Btn */
.btn {
    padding: 10px 24px;
    border-radius: 2;
    border-width: 2px;
    font-weight: 500;
    cursor: pointer;
}
  
.btn-brand, .btn-brand:focus {
    background-color: var(--c-brand) !important;
    color: white !important;
    border-color: var(--c-brand) !important;
    margin: 10px !important;
}

.btn-brand:hover {
    background-color: transparent;
    color: var(--c-brand);
    border-color: var(--c-brand);
}

/* Home */
#home {
    background-image: url('./images/background.avif');
    background-position: center;
    background-size: cover;
}

.home-row {
    display: flex;
    flex-direction: row;
    justify-content:space-evenly;
    flex-wrap: wrap-reverse;
    margin-top: 15%;
}

.headshot {
    height: 450px;
    width: 450px;
    margin-bottom: 20px;
}


@media (max-width: 950px) {
    .headshot {
        height: 300px;
        width: 300px;
    }

}


/* About */
#about {
    background-color: black;
    
}

.langs-list {
    display: flex;
    flex-wrap: wrap;
    margin-top: 20px;
    align-items:baseline;
}
  
  
/*Projects*/
.projects {
    border-color: #303050 !important;
    border-width: 1.5px !important;
    border-radius: 4px;
    height: 400px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    margin-bottom: 15px;
    cursor: pointer !important;
}

.projects:hover {
    border-color: var(--c-brand) !important;
    transform: scale(1.05);
    border-width: 1.5px !important;
    border-radius: 4px;
    height: 400px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    margin-bottom: 15px;
}

.langs {
    display: flex;
    flex-wrap: wrap;
    margin-bottom: 10px;
    justify-content: center;
}

.custom-link {
    display: flex;
    align-items: center;
    justify-content: center;
}

.custom-link span {
    font-weight: 700;
    font-size: 20px;
}

.custom-link i {
    width: 24px;
    height: 24px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: var(--c-brand);
    border-radius: 100px;
    color: white;
    margin-left: 6px;
    transition: var(--transition);
    cursor: pointer;
}

.custom-link:hover i {
    transform: translateX(6px);
    
}

/* Experience */
#experience {
    background-color: black;
}

.exp-logo {
    width: 100px;
    height: 100px;
    margin-right: 30px;
}

.exp-name {
    font-size: 24px;
    font-weight: 700;
    color: var(--c-brand);
}

.exp-title {
    font-size: 18px;
    font-weight: 500;
    color: white;
}

.exp-date {
    font-size: 15px;
    color: white;
}

.exp-text {
    font-size: 15px;
    color: white;
    max-width: 100%;
}
.rm {
    color: var(--c-dark);
}

.rm:hover {
    color: var(--c-brand);
    cursor: pointer;
}

/* Contact */
#contact {
    background-color: white;
}


.contact-box {
    /*width: 30%;*/
    display: flex;
    flex-direction: row;
    justify-content: space-around;
    align-items:safe;
}

.contact-linkd {
    /*width: 45%;*/
    display: flex;
    flex-direction: row;
    justify-content: space-around;
    align-items:safe;
}

.contact-git {
    /*width: 28%;*/
    display: flex;
    flex-direction: row;
    justify-content: space-around;
    align-items:safe;
}

.email {
    text-decoration: underline;
    font-size: 18px;
}
