html {
    /* Cite for nav scrolling: https://youtu.be/hk3RgcBx5Fc */
    scroll-behavior: smooth;
    /* scroll-padding: 10rem; */
    scroll-padding: var(--scroll-padding, 5rem);
}

body {
    /* background-image: url("./images/bubbles_static.png"); */
    /* background-image: url("./images/abstractBackground.png"); */
    background-color: rgba(20, 0, 15, 1);
    background-repeat: round;
    /* background-color: rgba(125, 111, 135, 0.8); */
    /* background-color: rgba(0, 0, 0, 0.8); */
    background-attachment: fixed;
    /* background-color: rgba(0, 0, 0, 1.0); */
    color: #FFFFFF;
    margin: 0;
    padding: 0;
    height: 100%;
    width: 100%;
}

header {
    position: sticky;
    z-index: 99;
    top: 0px;
    margin: 0px;
    background: linear-gradient(rgba(0, 0, 0, 0.25), rgba(0, 0, 0, 0.25)), url("./images/abstractBackground.png");
    background-repeat: round;
    /* background: radial-gradient(61.47% 107.29% at 50% 88.54%, #d09ee2 0%, rgba(217, 183, 222, 0) 100%); */
    filter: drop-shadow(0px 10px 6px rgba(0, 0, 0, 0.75));
    /* background-color: #000000; */
    width: 100%;
    height: 10vh;
    /* height: 128px; */
    display: flex;
    text-align: center;
}

/**
 * =========================================================================
 * TITLE
 * =========================================================================
 */

 .titleSector {
    /* margin: 0px;
    background: radial-gradient(61.47% 107.29% at 50% 88.54%, #d09ee2 0%, rgba(217, 183, 222, 0) 100%);
    filter: drop-shadow(0px 10px 6px rgba(0, 0, 0, 0.75)); */
    position: relative;
    /* top: 0px; */
    margin: 0;
    /* display: inline-block; */
    display: flex;
    width: 33.33%;
}

.titleSector h1 {
    margin: 0 3vw;
    position: fixed;
    /* left: 23px; change for dynamic */
    /* top: 15px; change for dynamic */
    
    font-family: 'Italianno', cursive;
    /* font-size: 102px; */
    /* font-size: 8vw; */
    font-size: 5vw;
    font-weight: 400;
    font-style: normal;
    color: white;
    text-align: center;
    text-shadow: 0px 8px 4px rgba(0, 0, 0, 1.0);

    /* https://stackoverflow.com/questions/2570972/css-font-border */
    /* -webkit-text-stroke: 1px #FFFFFF; */
}


/**
 * =========================================================================
 * NAVIGATION
 * =========================================================================
 */

 .header .navbar {
    display: flex;
    width: 33.33%;
    height: 64px;
    top: 0;
    align-self: center;
    align-items: center;
    justify-content: space-around;
    justify-self: flex-end;
    text-align: center;
    padding: 0 1rem;
    margin-right: 10px;
 }

 .header .navbar a {
    color: white;
    /* font-size: 1.5vw; */
    font-size: 1vw;
    font-weight: bolder;
    text-decoration: none;
    padding: 10px 10px;
 }

 .header .navbar a:hover {
    color: #b09fb9;
    border-bottom: 1px solid #b09fb9;
 }


 /**
 * =========================================================================
 * FOOTER
 * =========================================================================
 */

 footer {
    position: sticky;
    bottom: 0;
    z-index: 99;
    width: 100%;
    height: 30px;
    background-color: rgba(0, 0, 0, 0.5);
 }


/**
 * =========================================================================
 * GENERAL STYLINGS
 * =========================================================================
 */

 .section {
    display: flex;
    flex-flow: column;
    visibility: visible;
    /* background-color: gray; */
    border: 5px solid black; /* temp */
    height: 100%;
    width: 100%;
 }

 .section .sectionText {
    font-family: 'Italiana', serif;
    font-style: normal;
    font-weight: 400;
    font-size: 40px;
    line-height: 47px;
    /* display: flex; */
    margin-bottom: 5px;
    /* align-items: center; */
    /* justify-self: center; */
    text-align: center;
    color: #FFFFFF;
    flex-grow: 1;
    /* background-color: #534C57; temp */
}

.section-container {
    display: flex;
    /* flex-wrap: wrap; */
    justify-content: space-evenly;
    gap: 8px;
    padding: 1rem 40px;
}

/* Cite for shadow: https://codepen.io/opinatj/pen/ZEEaNYm */
.card {
    /* background-color: #FFFFFF; */
    cursor: pointer;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    overflow: hidden;
    box-shadow: 0 2px 2px 2px rgba(0,0,0,0.14), 0 3px 1px -2px rgba(0,0,0,0.12), 0 1px 5px 0 rgba(0,0,0,0.2);
    transition: box-shadow 0.4s ease-in-out;
}

.card:hover {
    box-shadow: 0 30px 38px 3px rgba(0,0,0,0.14), 0 9px 46px 8px rgba(0,0,0,0.12), 0 11px 15px -7px rgba(0,0,0,0.2);
}

.card-title {
    position: relative;
    margin: 5px;
    padding: 0 1rem;
    font-size: 25px;
}

.description {
    font-size: 20px;
}

/* Glass Effect; Cite: https://youtu.be/3HRvb2tLqF4?list=PL1Y46f7xTSVR74n4fqHJBG08QAyDNJCaW */
.glass {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0));
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.18);
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.37);
}

/**
 * =========================================================================
 * SKILLS
 * =========================================================================
 */

.skill-card {
    width: 98%;
    padding-left: 2%;
    padding-right: 2%;
    list-style: none;
    display: grid;
    grid-template-columns: auto auto;
}

.skill-category h4{
    justify-self: center;
}

.skill-card li{
    margin: 5px 10px 5px 0;
    padding: 5px;
}

.skill-card li h5{
    margin: 5px 0;
}

.bar {
    background: #353b48;
    display: block;
    height: 10px;
    border: 1px solid rgba(0, 0, 0, 0.3);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24);
    transition: all 0.3s cubic-bezier(.25, .8, .25, 1);
    animation-duration: 3s;
}

.bar:hover {
    box-shadow: 0 14px 28px rgba(0, 0, 0, 0.25), 0 10px 10px rgba(0, 0, 0, 0.22);
}

.bar span{
    height: 20px;
    float: left;
    background: linear-gradient(135deg, rgb(0, 217, 246)0%, rgba(252, 103, 103, 1)100%);
}

.percentile {
    width: 100%;
    animation: animationProgress 3s;
}

@keyframes animationProgress{
    0%{
        width: 0%
    }
}

 /**
 * =========================================================================
 * EXPERIENCE
 * =========================================================================
 */

 .exp-container {
    /* display: flex;
    justify-content: space-evenly;
    gap: 8px;
    padding: 1rem 40px; */
    flex-wrap: wrap;
 }

 .experience-card {
    /* background-color: #534C57; */
    border: 1px solid rgba(255, 0, 0, 0.625);
    height: 450px;
    width: 650px;
}

.exp-title h3{
    margin-bottom: 0.5rem;
    padding-bottom: 0;
}

.exp-title h4{
    margin-top: 0;
    padding-top: 0;
    font-style: italic;
}


 /**
 * =========================================================================
 * EDUCATION
 * =========================================================================
 */

 .edu-container {
    flex-wrap: wrap;
 }

 .education-card {
    /* background-color: #534c5782; */
    border: 1px solid rgba(0, 60, 255, 0.625);
    height: 250px;
    width: 650px;
 }

 .edu-title h3{
    margin-bottom: 0.5rem;
    padding-bottom: 0;
 }

 .edu-title h4{
    margin-top: 0.5rem;
    padding-top: 0;
    font-size: 20px;
    font-style: italic;
 }

 .edu-description {
    padding-left: 2%;
 }


 /**
 * =========================================================================
 * PROJECTS
 * =========================================================================
 */

 .projects-container {
    /* display: flex; */
    flex-wrap: wrap;
    /* justify-content: space-evenly;
    gap: 8px;
    padding: 1rem 40px; */
 }

 .project-card {
    display: flex;
    flex-flow: column;
    position: relative;
    height: 300px;
    width: 400px;
    /* background-color: #534C57; */
    border: 1px solid rgba(9, 255, 0, 0.625);
 }

 .project-title h3{
    margin-top: 1.5rem;
    margin-bottom: 0.5rem;
 }

 .proj-description p{
    margin: 1rem;
    margin-top: 0.5rem;
    padding: 1rem;
    padding-top: 0;
 }

 .proj-btn-container {
    width: 100%;
    display: flex;
    justify-content: center;
    position: absolute;
    bottom: 0;
 }

 .project-card button {
    width: 150px;
    height: 60px;
    margin: 20px 10px;
    padding: 5px;
    font: inherit;
    font-size: 2.25vmin;
    color: rgba(9, 255, 0, 0.625);
    background-color: rgba(255, 255, 255, 0);
    border-radius: 50px;
    border: 2px solid rgba(9, 255, 0, 0.625);
 }

 .project-card button:hover {
    cursor: pointer;
    background-color: rgba(0, 0, 0, 0.33);
 }

/* FROM YOUTUBE TUTORIAL - TODO: DELETE */
 /* .mfp-hide {
    display: none !important;
 } */

 /* #demoPopup {
    width: 75%;
    margin: 0 auto;
 }

 #demoPopup iframe {
    width: 100%;
    margin: 0 auto;
 } */

 /**
 * Simple fade transition,
 */
.mfp-fade.mfp-bg {
	opacity: 0;
	-webkit-transition: all 0.15s ease-out; 
	-moz-transition: all 0.15s ease-out; 
	transition: all 0.15s ease-out;
}
.mfp-fade.mfp-bg.mfp-ready {
	opacity: 0.8;
}
.mfp-fade.mfp-bg.mfp-removing {
	opacity: 0;
}

.mfp-fade.mfp-wrap .mfp-content {
	opacity: 0;
	-webkit-transition: all 0.15s ease-out; 
	-moz-transition: all 0.15s ease-out; 
	transition: all 0.15s ease-out;
}
.mfp-fade.mfp-wrap.mfp-ready .mfp-content {
	opacity: 1;
}
.mfp-fade.mfp-wrap.mfp-removing .mfp-content {
	opacity: 0;
}


 /**
 * =========================================================================
 * DEMOS
 * =========================================================================
 */