/* Scrollbar width */
body::-webkit-scrollbar {
  width: 20px;
}

/* Scrollbar Track */
body::-webkit-scrollbar-track {
  box-shadow: inset 0 0 2px rgba(136, 136, 136, 0.205);
  background-color: #222;
}

/* Scrollbar style */
body::-webkit-scrollbar-thumb {
  background-image: linear-gradient(45deg, rgb(5, 238, 255), rgb(115, 255, 0));
  border-radius: 10px;
}

/* Where vertical & horizontal meet */
body::-webkit-scrollbar-corner {
  background-color: #222;
}

body {
  font-family: 'Source Sans Pro', sans-serif;
  margin: 0px;
  width: 100%;
  overflow-x: hidden;
  box-sizing: border-box;
}

html {
  overflow-x: hidden;
  box-sizing: border-box;
}

.website-cover h1 {
  background: -webkit-linear-gradient(rgb(115, 255, 0), rgb(5, 238, 255));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;

  font-size: 170px;
}

h2, h3 {
  padding: 0px 15px;
  margin: 2%;
  font-weight: normal;
  background: -webkit-linear-gradient(rgb(115, 255, 0), rgb(5, 238, 255));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

h2 {
  font-size: 60px;
}

h3, h4 {
  font-size: 36px;
}

/* h4 {
  color: rgb(115, 255, 0);
} */

h4.black-background {
  color: white;
}

p {
  color: black;
  font-size: 22px;
  font-weight: normal;
  margin-top: 10px;
  margin-bottom: 10px;
  line-height: 38px;
}

#menu,
#menu:before,
#menu:after,
#brand,
#brand:before,
#brand:after {
  box-sizing: inherit;
  padding: 0;
  margin: 0;
  list-style: none;
  text-decoration: none;
}

nav {
  background: #222;
  height: 60px;
  z-index: 2;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

nav #menu, nav #brand {
  position: relative;
  display: flex;
  height: 100%;
}
nav #menu a, nav #brand a {
  padding: 0px 15px;
  cursor: pointer;
  line-height: 60px;
}

@media (max-width: 874px) {
  nav #menu {
    display: none;
  }
}
#hamburger {
  margin: 0px 10px;
  position: absolute;
  right: 10px;
  top: 15px;
  z-index: 999;
  width: 30px;
  height: 40px;
  cursor: pointer;
  visibility: hidden;
}
#hamburger .line {
  height: 3px;
  border-radius: 2px;
  background: #666;
  margin: 5px auto;
  backface-visibility: hidden;
}
/* IMPORTANT: X and Y values are opposites and diagonal....*/
#hamburger.active #one {
  transform: rotate(-135deg) translateX(-6px) translateY(-6px); /*these might be diagonal??*/
  transition: all 0.3s ease-in-out;

}
#hamburger.active #two {
  transform: translateX(-20px);
  opacity: 0;
  transition: all 0.3s ease-in-out;
}
#hamburger.active #three {
  transform: rotate(135deg) translateX(-5px) translateY(6px);
  transition: all 0.3s ease-in-out;

}
@media (max-width: 874px) {
  #hamburger {
    visibility: visible;
    opacity: 1;
  }
}
.mobile-menu {
  z-index: 2;
  position: absolute;
  top: 0px;
  background: #222;
  width: 100%;
  height: 100%;
  visibility: hidden;
  opacity: 0;
  display: table;
}
.mobile-menu .mobile-menu__items {
  height: 50px;
  display: table-cell;
  vertical-align: middle;
  padding: 0px;
}
.mobile-menu .mobile-menu__items a {
  display: block;
  padding: 13px 20%;
  text-align: left;
  cursor: pointer;
  transition: all 0.3s ease-out;

  /*making the same as pc nav menu EXCEPT gradient is top to bottom*/
  font-size: 24px;
  font-weight: normal;
  background: -webkit-linear-gradient(bottom, rgb(5, 238, 255), rgb(115, 255, 0));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  box-sizing: border-box;
}

.mobile-menu.active {
  visibility: visible;
  opacity: 1;
}

.all-content {
  background-color: white; /*specified so brightness() takes effect*/
}

.all-content.active {
  filter: brightness(50%);
  transition: all 0.3s ease;
}

@media (min-width: 874px) {
  .mobile-menu {
    visibility: hidden !important;
  }
}

.nav-menu {
  margin: 0;
  background-color: #222;
  position: fixed;
  z-index: 1;
  width: 100%;
  box-sizing: border-box;
  border-bottom: 1px solid #444;
}

.nav-menu a {
  font-size: 24px;
  font-weight: normal;
  text-align: center;
  padding: 5px 8px;
  background: -webkit-linear-gradient(right, rgb(5, 238, 255), rgb(115, 255, 0));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  box-sizing: border-box;
}

/* Change the link color on hover */
.nav-menu li:hover {
  background-color: #333;
  text-decoration: none;

  /*border of nav choice visible when hovered
  border-left: 1px solid #444;
  border-right: 1px solid #444;
  */
  
  /* decreased left-right padding by 1 because border is increased by 1. Otherwise the border makes the wider whenever hovered over.
  padding: 14px 15px;
  */
}

/* Style the button that is used to open and close the collapsible content */
.collapsible {
  background-color: #333;
  cursor: pointer;
  padding: 18px;
  width: 100%;
  border: none;
  text-align: left;
  outline: none;
  font-size: 16px;
}

/* Add a background color to the button if it is clicked on (add the .active class with JS), and when you move the mouse over it (hover) */
.collapsible:hover {
  background-color: rgba(40, 40, 40);
}

pre {
  height: 500px;
}

.project-icon-wolf-sim {
  width: 100%;
  height: 450px;

  /* makes image cenere no matter the scaling */
  background-position: 50% 30%;
  background-repeat: no-repeat;
  background-size: cover;
}

.project-icon{
  width: 100%;
  height: 450px;

  /* makes image cenere no matter the scaling */
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}


#wolf-sim {
  background-image: url('img/wolf-icon.jpg');
}

#arduino-lights {
  background-image: url('img/arduino-lights.png');
}

#personal-website {
  background-image: url('img/personal-website-mockup.png');
}

#minecraft-bronze-mod {
  background-image: url('img/minecraft-2.png');
}

/* Style the collapsible content. Note: hidden by default */
.content {
  padding: 25px;
  display: none;
  overflow: hidden;
  background-color: #f1f1f1;

  /* for animation drop down */
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.15s ease-out;
}

.text-center {
  overflow: hidden;
  box-sizing: border-box;
}

.website-cover .text-center {
  width: 100%;
}

.website-cover p {
  color: white;
  padding: 0px 40px;
}

.about-me h4 {
  margin-top: 20px;
  padding: 0px 10px;
}

.about-me p {
  padding: 0px 10px;
}

img {
  border-radius: 20px;
}

img.wren-pic {
  margin: 20px 0px;
  width: 100%;
  box-sizing: border-box;
}

.instruments img {
  /*aligns image horizontally*/
  display: block;
  margin-left: auto;
  margin-right: auto;

  margin-top: 20px;
  margin-bottom: 20px;
}

.ct-js-btn-scroll:hover {
  position: relative;
  transform:translatey(10px);
  transition: 0.3s;
  
}

#about-me-content {
  display: block;
  position: relative;
  top: -60px;
  visibility: hidden;
}

.btn.btn-primary {
  border-radius: 8px;
  border: 0px solid;
  font-size: 20px;
  color: black;
  background-image: linear-gradient(-45deg,  rgb(115, 255, 0), rgb(5, 238, 255));
  margin: 10px;
  margin-bottom: 30px;
}

.btn.btn-primary p {
  margin: 0px;
  font-weight: lighter;
}

.btn.btn-primary:hover {
  background-image: linear-gradient(-45deg,  rgb(115, 255, 0), rgb(115, 255, 0), rgb(5, 238, 255));
  position: relative;
  top: 1px;
}

.btn.btn-primary:active {
  color: black;
  position: relative;
  top: 2px;
  box-shadow: none;
}

.btn-secondary {
  background-color: #E8DFE0;
  color: #ffffff;
  margin: 0 0 30px;
}

.spacer {
  width: 100%;
  box-sizing: border-box;
  height: 60px;
}

.page-header, .image-gallery, .section-header {
  background-color: #222;
}

.page-header {
  margin: 0px;
  padding: 0px;
  border-bottom: none;
}

.page-header h2 {
  margin: 20px 0px;
}

.page-header p {
  color: white;
  margin-bottom: 20px;
}

.section-header p {
  padding: 20px;
}


.skills {
  overflow-x: hidden;
  margin-top: 20px;
}

.skills-item {
  margin: 0px 0px 20px;
  padding: 0px 25px;

  /* Vertically aligns the element in reference to parent (this class)*/
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}

.projects-items {
  margin: 0px;
  padding: 0px;

  /* Vertically aligns the element in reference to parent (this class)*/
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}

.skills-item h4, .projects-items h4{
  text-align: center;
  width: 100%;
  margin-top: 35px;
}

.skills-item p {
  margin: 30px 0px;
  padding: 0px 10px;
}

.projects-item {
  margin: 20px 0px;
  padding: 0px 25px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}

.projects-item p {
  color: white;
  margin: 0px;
}

.projects-item-title p, .code-language p{
  font-weight: bold;
  text-align: center;
}

.projects-item-title, .code-language {
  padding: 15px;
  background-color: #222;
  width: 100%;
}

.projects-item .content p {
  color: black;
}

.projects-item button {
  color: white;
  text-align: center;
}

img.skills {
  width: 100%;
}

.divider {
  /*not used*/
  height: 40px;
  background-color: #222;
}

.behind-the-scenes {
  /* Vertically aligns the element in reference to parent (this class)*/
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}

iframe {
  width: 1075px;
  height: 600px;
  max-width: 100%;
  max-height: calc((100vw - 40px) / (16/9));

  padding: 25px;
}

.image-gallery-item {
  height: 900px;
  width: 100%;
  box-sizing: border-box;
  display: flex;
  top: 50px;
}

.covid p {
  padding: 25px 25px;
  color: white;
}

.jumbotron {
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.jumbotron h2 {
  font-size: 60px;
}

.jumbotron p {
  margin: 40px 0px;
  padding: 0px;
  font-size: 26px;
  font-weight: normal;
  color: white;
}

.jumbotron ul {
  font-size: 26px;
  color: white;
}

.jumbotron .row.text {
  margin-top: 50px;
}

.jumbotron.website-cover{
  background-image: url('img/wren-pink-flowers.jpg');
  margin-bottom: 0px;
  background-position-x: center;

  /* Vertically aligns the element in reference to parent (this class)*/
  display: flex;
  flex-wrap: wrap;
  align-items: center;

  height: calc(100vh - 60px); /*60px less than screen height*/
  width: 100%;
  box-sizing: border-box;
}

.jumbotron.page-header-banner{
  margin-bottom: 0px;
  background-position-x: center;

  height: calc(100vh - 60px - 156px); /*60px + title & quotes less than screen height*/
  width: 100%;
  box-sizing: border-box;
  top: 60px;

  /* Vertically aligns the element in reference to parent (this class)*/
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}

.jumbotron.robotics {
  background-image: url('img/detroit-bus-team-photo-large-resized.jpg');
}

.jumbotron.music {
  background-image: url('img/clarinet-purple-jacket-smile-resized.jpg');
}

.jumbotron.projects {
  background-image: url('img/blue-prints-resized.jpg')
}

.jumbotron.new-visions {
  background-image: url('img/under-construction.jpg')
}


.jumbotron.firstinspires{
  background-image: linear-gradient( rgba(72, 72, 72, 0.4), rgba(72, 72, 72, 0.4)), url('img/eletrical-wires.jpg');
  height: 750px;
  margin-bottom: 0px;
  background-position-x: center;

  /* Vertically aligns the element in reference to parent (this class)*/
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}

.jumbotron.my-team {
  background-image: linear-gradient( rgba(72, 72, 72, 0.7), rgba(72, 72, 72, 0.7)), url('img/detroit-bus-david-hulle-large.jpg');
  height: 750px;
  margin-bottom: 0px;
  background-position-x: center;
  
  /* Vertically aligns the element in reference to parent (this class)*/
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}

.jumbotron.ensembles{
  background-image: linear-gradient( rgba(49, 49, 49, 0.7), rgba(49, 49, 49, 0.7)), url('img/all-state-resized.JPG');
  height: 750px;
  margin-bottom: 0px;
  background-position-x: center;

  /* Vertically aligns the element in reference to parent (this class)*/
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}

a, a:visited, a:hover {
  color: turquoise;
}

a {
  font-weight: lighter;
  text-decoration: none;
  font-weight: normal;
}

a:hover {
  text-decoration: underline;
}

p.link {
  border-left: 2px dashed turquoise;
  padding: 0px 10px;
}

.instruments p.link {
  padding: 0px 10px;
  margin: 10px 0px;
}

.jumbotron.firstinspires p.link {
  margin: 0px 15px;
}

.instruments .col-sm-6 {
  padding: 10px 30px;
}

.instruments h4 {
  margin: 0px;
  padding: 10px 0px;
}

.instruments p {
  margin: 0px;
  padding: 10px 0px;
}

#list-title {
  margin-bottom: 0px;
  font-weight: bold;
}

@media screen and (max-width: 1200px) {
  .jumbotron p {
    margin: 30px 0px;
  }
}

@media screen and (max-width: 1000px) {
  .skills-item {
    width: 100%;
  }

  .skills-item p {
    margin: 10px 0px 0px;
  }
}

@media screen and (max-width: 992px) {
  .jumbotron p, .jumbotron ul {
    font-size: 22px;
  }

  .jumbotron .row {
    width: 100%;
  }

  .col-sm-6.link {
    padding: 0px;
  }
}

@media screen and (max-width: 767px) {
  img.wren-pic {
    width: 50%;
    margin-bottom: 0px;

    /*aligns image horizontally*/
    display: block;
    margin-left: auto;
    margin-right: auto;
  }
   
  .jumbotron .row.text {
    margin-top: 0px;
  }

  .jumbotron.jumbotron.my-team {
    /*makes My Team jumbotron bigger so text doesn't overflow*/
    height: 800px;
  }
 
  .jumbotron p {
    margin: 10px 0px;
  }

  p {
    line-height: 1.75;
  }

  .jumbotron.firstinspires img {
    margin: 40px 0px;
  }
}

@media screen and (max-width: 650px) {
  .jumbotron p, .jumbotron ul {
    font-size: 24px;
  }
}

@media screen and (max-width: 601px) {
  .jumbotron p, .jumbotron ul {
    font-size: 20px;
  }
}

@media screen and (max-width: 450px) {
  .website-cover h1 {
    font-size: 100px;
  }

  h2 {
    font-size: 30px;
  }

  h3, h4 {
    font-size: 25px;
  }

  p {
    font-size: 18px;
  }

  .jumbotron p, .jumbotron ul {
    font-size: 18px;
  }

  .jumbotron.firstinspires h2 {
    font-size: 30px;
    text-align: left;
  }

  .jumbotron.firstinspires div {
    width: 100%;
  }

  .project-icon {
    height: 300px;
  }

  .projects-item {
    padding: 0px;
  }
}