/* Created by J. Blackburn - Jan 8 2025 */



/* CORE DESIGN ELEMENTS */
body {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  margin: 0px;
  background: black;
}
main {
  scroll-snap-type: y proximity;
  overflow-y: scroll;
  height: 100vh;
}
	/* Background Section */
.bg-section {
  width: 100%;
  height: 70vh;
  background-attachment: fixed;
  background-size: cover;
  background-position: center;
  position: relative;
  z-index: 1;
}



	 /* footer styles */
footer { 
  scroll-snap-align: none;
  height: 50%;
  padding-top: 30px;
  margin: 0 30% 0 30%;
  font-style: italic;
  color: lightgrey;
  text-align: center;
}
footer h4 {
  font-size: 1.1rem;
}
footer a {
  color: rgba(150, 100, 255, 1);
}
footer a:hover {
  color: blue;
}


/* CONTENT SECTION DESIGN */
.content-section {
  scroll-snap-align: start;
  height: 100vh;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 2;
}

		/* shared section image styles */

	.image-container {
	  height: 100vh;
	  width: 45%;
	}
	.image-container img {
	  height: 100%;
	  width: 100%;
	  object-fit: cover;
	}

		/* shared section content styles */

	.content-container {
	  height: 100vh;
	  width: 55%;
	  display: flex;
	  flex-direction: column;
	  align-items: center;
	}
	.content-container {

		.section-header {
		  width: 75%;

	          h1 {
		    text-align: center;
		    font-size: 2rem;
		  }
		  h2 {
		    text-align: center;
		    font-size: 2.2rem;
		    margin: 20px 0 10px 0;
		  }
		  h4 {
		    margin-left: 30px;
  		  }
		}

		.content-sub-section {
		  width: 75%;
		}

		ul {
		  list-style: none;
		  text-align: center;
		  margin-top: 20px;
		  padding: 0;
		}
		li {
		  align-items: center;
		  margin: 10px;

			h4 {
			  padding-left: 5px;
			  margin: 0;
			}
		}

		figcaption {
		  margin-top: auto;
		  width: 60%;
		  padding: 10px 25px;
		  color: grey;
		  font-size: 0.9rem;
		  font-style: italic;
		  
		  pre {
		    font-family: Arial, sans-serif;
		  }
		}
		.right-caption {
		  text-align: left;
		  align-self: flex-start;
		}
		.left-caption {
		  text-align: right;
		  align-self: flex-end;
		}


	} /* end content container styles */



/* CONTENT SECTION CUSTOMIZATION */

.about {

	.section-header {
	  margin: 50px 50px 0px 50px;

		.real-name-message {
		  font-weight: normal;
		  color: lightgrey;
		  font-size: 0.6rem;
		  padding: 0;
		  margin: 0;
		}
	}

	ul {
	  width: 20%;
	  font-size: 1.2rem;
	}
}

.projects {

  .section-header {
    font-size: 2rem;
    margin: 40px 0 40px 0;

  #projects-link {
      font-size: 1.2rem;
      width: 100%;
      margin: 0;
      text-align: center;

    }
  }

#pinned-projects {
  font-size: 1.1rem;
  margin-bottom: 20px;
}

#other-projects {
  font-size: 1.1rem;
  margin: 50px 0 20px 0;
}
.other-projects-content {
}

  ul {
    width: 80%;
    margin: 0;
  }
  li {
  	h4 {
	  margin: 0;
	}
	p {
	  display: inline;
	  color: grey;
	}
	pre {
	  display: inline;
	}
	b {
	  color: black;
	}
  }

  .pinned {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    justify-content: flex-start;
    margin-bottom: 20px;

	  pre {
	    display: inline;
	    flex-shrink: 0;
	    min-width: 30px;
	    margin: 0;
	    font-weight: bold;
	  }
	  p {
	    flex: 1;
	    word-wrap: break-word;
	    flex-shrink: 0;
	    margin: 0;
	    text-align: left;
	    color: black;
	  }
	  .link-container {
	    flex-shrink: 0;
	    min-width: 180px;
	    text-align: right;
	  }

  }

} 

.education {
  #relevant-coursework h4 {
    font-size: 1.2rem;
    margin-bottom: 30px;
  }
  ul {
    width: 80%;
  }
  .course-title {
    margin-top: 50px;
  }

}
