/* ---------------------------- Fonts --------------------------- */

/* Import site-wide font */
@import url('https://fonts.googleapis.com/css?family=Raleway');

/* Import post-it font */
@import url('https://fonts.googleapis.com/css?family=Reenie+Beanie');

/* ---------------------------- Body ---------------------------- */

body {
  /* Site-wide font */
  font-family: Raleway;

  /* Gray background */
  background: #CDDEE3;

  /* Add spacer on top so content isn't covered by the navbar */
  padding-top: 5.125rem;

  /* Start the body as hidden so it can be faded in after it's prepared */
  display: none;
}

/* --------------------------- Post-it -------------------------- */

/* The post-it container */
.postit {
  /* Text styling */
  text-align: center;
  font-family: 'Reenie Beanie';
  font-size: 1.375rem;

  /* Sizing and margins */
  display: inline-block;
  width: 17.1875rem;
  height: 15.625rem;
  margin-top: 0.9375rem;
  padding-left: 0.625rem;
  padding-right: 0.625rem;
  padding-top: 2.1875rem;

  /* Positioning */
  position: relative;

  /* Edge/border */
  border: 1px solid #E8E8E8;
  border-bottom-right-radius: 3.75rem 0.3125rem;

  /* Background */
  background: #ffff88;
  /* Old browsers */
  background: -moz-linear-gradient(-45deg, #ffff88 81%, #ffff88 82%, #ffff88 82%, #ffffc6 100%);
  /* FF3.6+ */
  background: -webkit-gradient(linear, left top, right bottom, color-stop(81%, #ffff88), color-stop(82%, #ffff88), color-stop(82%, #ffff88), color-stop(100%, #ffffc6));
  /* Chrome,Safari4+ */
  background: -webkit-linear-gradient(-45deg, #ffff88 81%, #ffff88 82%, #ffff88 82%, #ffffc6 100%);
  /* Chrome10+,Safari5.1+ */
  background: -o-linear-gradient(-45deg, #ffff88 81%, #ffff88 82%, #ffff88 82%, #ffffc6 100%);
  /* Opera 11.10+ */
  background: -ms-linear-gradient(-45deg, #ffff88 81%, #ffff88 82%, #ffff88 82%, #ffffc6 100%);
  /* IE10+ */
  background: linear-gradient(135deg, #ffff88 81%, #ffff88 82%, #ffff88 82%, #ffffc6 100%);
  /* W3C */
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffff88', endColorstr='#ffffc6', GradientType=1);
  /* IE6-9 fallback on horizontal gradient */
}

/* Bottom-right shadow */
.postit:after {
  content: "";

  /* Positioning */
  position: absolute;
  z-index: -1;
  right: 0;
  bottom: 1.25rem;
  -moz-transform: matrix(-1, -0.1, 0, 1, 0, 0);
  -webkit-transform: matrix(-1, -0.1, 0, 1, 0, 0);
  -o-transform: matrix(-1, -0.1, 0, 1, 0, 0);
  -ms-transform: matrix(-1, -0.1, 0, 1, 0, 0);
  transform: matrix(-1, -0.1, 0, 1, 0, 0);

  /* Sizing */
  width: 12.5rem;
  height: 1.5625rem;

  /* Styling */
  background: rgba(0, 0, 0, 0.2);
  box-shadow: 0.125rem 0.9375rem 0.3125rem rgba(0, 0, 0, 0.40);
}

/* Smaller-postit */
.postit-small {
  height: 12.5rem;
  padding-left: 0.3125rem;
  padding-right: 0.3125rem;
  padding-top: 1.25rem;
  margin-top: 0.5rem;
}

/* ------------ Professional Profile (Piece of Paper) ----------- */

.piece-of-paper {
  /* Sizing and positioning */
  position: relative;
  width: 100%;
  padding: 3.125rem;
  margin-top: 0.625rem;
  margin-bottom: 1.25rem;

  /* Styling */
  background-color: #fff;
  -webkit-box-shadow: 0 0 0.25rem rgba(0, 0, 0, 0.2), inset 0 0 3.125rem rgba(0, 0, 0, 0.1);
  -moz-box-shadow: 0 0 0.25rem rgba(0, 0, 0, 0.2), inset 0 0 3.125rem rgba(0, 0, 0, 0.1);
  box-shadow: 0 0 0.3125rem rgba(0, 0, 0, 0.2), inset 0 0 3.125rem rgba(0, 0, 0, 0.1);
}

/* Smaller padding for small screens */
@media (max-width: 43.75rem) {
  .piece-of-paper {
    padding: 1.25rem;
  }
}

/* ------------------------ Layout Styles ----------------------- */

.container {
  max-width: 62.5rem;
}

.navbar-brand {
  font-size: 200%;
  cursor: default;
  user-select: none;
}

.mt-10 {
  margin-top: 5rem !important;
}

.education-subheader {
  font-size: 1em;
  color: #444;
  margin-bottom: 0.3125rem;
}

/* ----------------------- Profile Styles ----------------------- */

/* Fixed-width icon in list */
.listicon {
  display: inline-block;
  width: 1.2em;
  text-align: center;
  margin-right: 0.3125rem;
}

/* Spacing above h3 titles */
h3 {
  margin-top: 1.5625rem;
}

/* Smaller h4 titles */
h4 {
  font-size: 105%;
  font-weight: bold;
}

.text-purple {
  color: #C25CCA !important;
}

/* Pronouns */
.pronouns {
  font-weight: lighter !important;
  color: rgba(255, 255, 255, 0.7);
}

/* ------------------------ Overridden Styles ---------------------- */

ul {
  padding-left: 1.2rem !important;
}

/* Separator */
ul em::before {
  content: ', ';
}
