@charset "UTF-8";
/* ———————— Reset ————————— */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

@font-face {
  font-family: "Barlow";
  src: url("/assets/fonts/Barlow-Regular.ttf");
  font-weight: 400;
}
@font-face {
  font-family: "Barlow";
  src: url("/assets/fonts/Barlow-Italic.ttf");
  font-weight: 400;
  font-style: italic;
}
@font-face {
  font-family: "Barlow";
  src: url("/assets/fonts/Barlow-SemiBold.ttf");
  font-weight: 600;
}
@font-face {
  font-family: "Barlow";
  src: url("/assets/fonts/Barlow-SemiBoldItalic.ttf");
  font-weight: 600;
  font-style: italic;
}
body {
  -webkit-font-smoothing: antialiased;
  font-smoothing: antialiased;
  -webkit-font-smoothing: antialiased;
  font-family: "Barlow", Helvetica, sans-serif;
  font-weight: 400;
  font-size: 1rem;
}

p {
  margin-top: 0px;
  line-height: 1.5rem;
  font-weight: 400;
  font-size: 1.1rem;
}
p + p {
  margin: 3px 0px;
}

a {
  text-decoration: none;
  border-bottom: 1px solid #00f;
  color: #00f;
  transition: border-bottom 0.1s, color 0.1s;
}

a:hover {
  border-bottom: 3.5px double #00f;
}

div.entry:first-of-type > h3 {
  margin-top: 15px;
}

h2 {
  font-size: 1.2em;
  font-weight: 600;
  text-transform: uppercase;
  margin-top: 20px;
  padding-top: 7px;
  margin-bottom: 10px;
  top: 10px;
  color: #3d3d3d;
  display: inline;
}

h3 {
  font-size: 1em;
  font-weight: 400;
  margin: 5px 0px;
  display: inline-block;
  cursor: pointer;
  color: #3d3d3d;
  top: 40px;
  transition: transform 0.4s;
}
h3 p {
  font-size: 1.1rem;
}

.press a {
  border-bottom: none;
}

h3:hover {
  transform: rotate(8deg);
}

@media all and (max-width: 700px) {
  h3 {
    width: 50%;
  }
}
/* ———————— Navigation ————————— */
.fadeWrapper {
  display: none;
}

.nav {
  position: fixed;
  width: 240px;
  height: 100vh;
  z-index: 100;
  display: flex;
  align-items: center;
  background: rgba(42, 28, 85, 0);
}

.nav:hover {
  background: #2a1c55;
}

#past-imperfect {
  float: left;
  text-align: left;
  margin-left: -165px;
  transition: background 0.4s, margin-left 0.4s, color 0.4s;
}
#past-imperfect ul {
  position: absolute;
  bottom: 20px;
}
#past-imperfect li {
  padding: 10px 10px 10px 20px;
  font-size: 1rem;
  color: #fff;
}
#past-imperfect .show_hide {
  right: 0;
}
#past-imperfect .show_hide p {
  letter-spacing: 5px;
  transform: rotate(90deg) translateY(-60px);
  text-align: center;
  white-space: nowrap;
}
#past-imperfect a {
  border-bottom: 1px solid #fff;
  color: inherit;
}
#past-imperfect a:hover {
  border-bottom: 3.5px double #fff;
}

#present-continuous {
  float: right;
  right: 0;
  text-align: left;
  margin-right: -160px;
  transition: background 0.4s, margin 0.4s, color 0.4s;
}
#present-continuous ul {
  position: absolute;
  top: 20px;
  right: 0;
  list-style: none;
}
#present-continuous li {
  text-align: right;
  padding: 10px 20px 10px 10px;
  font-size: 1rem;
  color: #fff;
}
#present-continuous .show_hide {
  left: 0;
}
#present-continuous .show_hide p {
  letter-spacing: 5px;
  transform: rotate(-90deg) translateY(-90px);
  white-space: nowrap;
}
#present-continuous a {
  border-bottom: 1px solid #fff;
  color: inherit;
}
#present-continuous a:hover {
  border-bottom: 3.5px double #fff;
}

#past-imperfect:hover, #present-continuous:hover {
  margin: 0px;
}

#past-imperfect:hover > .show_hide p, #present-continuous:hover > .show_hide p {
  color: #fff;
}

.show_hide {
  position: absolute;
  cursor: pointer;
}

@media all and (max-width: 700px) {
  #past-imperfect {
    margin-left: -175px;
  }

  #past-imperfect:hover {
    margin-left: -175px;
  }

  #present-continuous {
    margin-right: -175px;
  }

  #present-continuous:hover {
    margin-right: -175px;
  }

  .click {
    margin: 0 !important;
    width: 82.5vw !important;
    background: #2a1c55 !important;
    position: fixed;
  }
  .click p {
    color: #fff !important;
  }
}
body {
  box-sizing: border-box;
  margin: 0;
  background: linear-gradient(to bottom, white 0%, #e1f4f5 50%, #f5ebf5 100%);
}

label {
  display: inline-block;
}

.ui-tooltip {
  box-shadow: none;
  font-family: "Barlow", Helvetica, sans-serif;
  border-radius: 0px;
  border: 0 !important;
  font-style: italic;
  font-size: 0.8rem;
  background: #fff;
}

/* ———————— Splash ————————— */
#splash {
  width: 100%;
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
}
#splash p {
  align-self: center;
}
#splash img {
  cursor: s-resize;
  width: calc(100px + 56vw);
}
#splash img:hover ~ .asterisk {
  opacity: 1;
}
#splash .asterisk {
  transform: translateY(-3vw);
  opacity: 0;
  z-index: 100;
  transition: opacity 1s;
}
#splash .asterisk:hover {
  opacity: 1;
}
#splash .asterisk a {
  border-bottom: none;
  cursor: pointer;
  font-size: 2rem;
}

/* ———————— Highlights ————————— */
#highlights-container {
  width: 100%;
  padding: 20px 10px;
  justify-content: center;
  text-align: center;
}

.highlight {
  margin-bottom: 40px;
}

.pop-down {
  display: none;
  width: 90vw;
  margin: 0 auto;
  line-height: 1.5em;
}
.pop-down p {
  font-size: 0.9rem;
  margin-bottom: 0.5rem;
}

.image-slider {
  width: 100%;
  display: inline-block;
  overflow-x: scroll;
  overflow-y: hidden;
  white-space: nowrap;
  margin-bottom: 5px;
  cursor: e-resize;
}
.image-slider .gesture {
  width: 50px;
  height: 100%;
  background: red;
}

.image-slider:active {
  cursor: e-resize;
}

.image-slider::-webkit-scrollbar {
  display: none;
}

img.thumb {
  height: 60vh;
  margin-right: 10px;
  box-shadow: 0px 0px 8px rgba(0, 0, 0, 0.3);
}

/* ———————— Footer ————————— */
footer {
  color: #fff;
  background: #fa5364;
  position: fixed;
  bottom: 0;
  height: 55px;
  white-space: nowrap;
  display: none;
  font-size: 0.9em;
  text-transform: uppercase;
  font-weight: 500;
}

@media all and (max-width: 700px) {
  .image-slider {
    width: 70%;
  }

  img.thumb {
    height: 40vh;
  }

  .entry p {
    margin: 0 auto;
    width: 80%;
  }

  .asterisk {
    display: none;
  }
}

/*# sourceMappingURL=index.css.map */
