@font-face{
  font-family: 'Routed Gothic';
  src:url(../fonts/RoutedGothicWide.woff2) format('woff2');
  font-weight: regular;
}

@font-face{
  font-family: 'Arial Narrow';
  src:url(../fonts/ArialNarrow.woff2) format('woff2');
  font-weight: regular;
}

body {
  font-family: 'Routed Gothic', monospace;
  font-weight: regular;
  font-size: 16pt;
  line-height: 1.2;
  background-color: WhiteSmoke;
  padding: 0 6px;
  display: flex;
  flex-direction: column;
}

header, .about {
    width: calc(100% - 12px);
}

header {
    position: fixed;
    z-index: 1001;
    top: 0;
    padding-top: 6px;
    background-color: WhiteSmoke;
}

.lynx {
    color: blue;
}


.name, .pathfinder {
    color: black;
    text-decoration: none;
}

.name:hover, .pathfinder:hover {
    color: darkgrey;
}

.selected {
    /* font-weight: bold; */
    /* font-style: italic; */
}

.selected::after {
    content: '📍'; 
    position: relative;
    display: inline-block; 
    width: 0;
    /* width: 24px;
    height: 24px;
    background-image: url("../images/pushpin.png");
    background-size: contain;
    background-repeat: no-repeat;  */
    left: -56%;
    transform: rotate(45deg) translateY(-11pt);
    filter: drop-shadow(1px 5px 2px rgba(0, 0, 0, 0.5));
}

.grid, .about {
    border-bottom: 1px solid black;
}

.about {
    visibility: hidden;
    margin-top: 2rem;
    padding-top: 1rem;
    padding-bottom: 1rem;
    z-index: 999;
    background-color: WhiteSmoke;
    position: fixed;
    top: 0;
}

@media screen and (max-width: 780px) {
    .about {
        margin-top: calc(6rem - 2px);
    }
}

.grid {
    display: flex;
    justify-content: space-between;
    padding-bottom: 0.33rem;
}

@media screen and (max-width: 780px) {
    .grid {
        flex-direction: column;
    }
}

.left, .right {
    display: flex;
    justify-content: space-between;
}

.left {
    width: 30%;
}

.right {
    width: 40%;
}

@media screen and (max-width: 780px) {
    .left, .right {
        width: 100%;
        margin-bottom: 1rem;
    }
}

button {
    font-family: 'Routed Gothic';
    background-image: linear-gradient(to top, #e3e3e3, #f5f5f5);
    border: 1px solid #999999;
    border-radius: 4px;
    padding: 3px 7px 4px;
    color: black;
    text-decoration: none;
    text-align: left;
    /* text-justify: inter-character; */
    font-size: 14pt;
    line-height: 1;
    margin-left: 0;
}



button:hover {
  background-image: linear-gradient(to top, #d9d9d9, #ebebeb);
  cursor: pointer;
}

.clicked {
    /* font-weight: bold; */
    box-shadow: 0px 0px 10px 0px orange;
}

.copyright {
    margin: 6rem 0 6px 0;
    z-index: 1002;
}

.homeWrapper, .contentWrapper {
    width: calc(100vw - 12px);
}

.homeWrapper {
    height: 100lvh;
    cursor: crosshair;
    position: fixed;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;

    overflow: hidden;
    overscroll-behavior-y: none
}

.mobileArrow {
    display: none;
    font-family: 'Arial Narrow', sans-serif;
    font-size: 11pt;
    padding: 6px 12px;
    border-radius: 24px;
    border: 1px solid black;
}

@media (hover: none) {
    .mobileArrow {
        display: block;
    }
}

@media screen and (max-width: 780px) {
    .mobileArrow {
        display: block;
    }
}

.projectWrapper {
    margin-top: 8rem;
}

.projectStack {
    display: flex;
    flex-direction: column;
    width: 100%;
    border-bottom: 1px solid black;
    margin-bottom: 1rem;
}

/* GENERAL HEADER */
.projectHeader {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    border-bottom: 1px solid black;
    padding-top: 2rem;
    margin-bottom: 1rem;
    border-bottom: 1px solid black;
}

/* STICKY HEADER */
.sticky {
    position: sticky;
    top: 2rem;
    z-index: 1;
    background-color: whitesmoke;
}




@media screen and (max-width: 780px) {
    .sticky {
        top: 5rem;
    }
}

.projectInfo {
    flex-direction: column;
}

.projectSubcategory {
    display: flex;
    flex-direction: row;
}

.subcategoryTitle {
    
}

.subcategoryLeft {
    padding: 2rem 0;
    width: calc(30% - 16pt);
}

.subcategoryRight {
    width: calc(70% + 16pt);
}

@media screen and (max-width: 780px) {

    .projectSubcategory {
        flex-direction: column;
    }

    .subcategoryLeft {
        width: 100%;
    }

    .subcategoryRight {
        width: 100%;
    }

}

.title {
    margin-bottom: 1rem;
    
}

.date {
    text-align: right;
}

.caption {
    font-family: 'Arial Narrow', sans-serif;
    margin: 1rem 0;
    padding-bottom: 1rem;
}

.bottomgradient {
    height: 5vh;
    width: 100%;
    position: fixed;
    bottom: 0;
    z-index: 1001;
    background: #F5F5F5;
    background: linear-gradient(0deg, rgba(245, 245, 245, 1) 5%, rgba(245, 245, 245, 0) 100%);
}

.la1, .la2, .sf, .nyc, .t4t, .portland {
    display: none;
}

.rodeo, .magicDyke, .pole, .tmt, .prom {
    display: none;
}

.spacer {
    margin-top: 3rem;
}

.imageScroll {
    display: flex;
    flex-direction: row;
    overflow-x: scroll;
    margin-bottom: 1rem;
    width: 100%;
    border-left: 1px solid black;
    border-right: 1px solid black;
}

.imageGrid {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    margin: 0 0 1rem;
    border: 1px solid black;
    padding: 6px;
    max-width: 100%;
}

.center {
    padding: 5rem 3rem;
    align-items: center;
    justify-content: center;
}

.imageGrid img, .imageGrid iframe {
    margin-right: 6px;
    margin-bottom: 6px;
    border: 1px dotted black;
    padding: 6px;
    background-color: white;
}

.imageScroll img, .imageScroll video {
    border-top: 1px dotted black;
    border-bottom: 1px dotted black;
    max-height: 55vh;
}

.side::after {
    content:" →";
}

.down::after {
    content:" ↓";
}

.embed {
    position: relative;
    padding-top: 56.25%;
}

.iframeResponsive {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    width: 90%;
    height: 90%;
    margin: 3.5% 0 0 5%;
}

.xl img, .xl video {
    max-height: 60vh;
}

.large img, .large video, .subLarge {
    max-height: 55vh;
}

.medium img, .medium video, .subMedium {
    max-height: 35vh;
}

.small img, .subSmall {
    max-height: 28vh;
}

@media screen and (max-width: 880px) {

    .large img, .subLarge {
        width: 100%;
        max-height: 100%;
    }

    .medium img, .subMedium {
        width: 70%;
        max-height: 100%;
    }

    .small img, .subSmall {
        width: calc(50% - 18px);
        max-height: 100%;
    }

}

.subQuarter {
    width: calc(25% - 1.5rem);
}

@media screen and (max-width: 880px) {

    .subQuarter {
        width: calc(50% - 12px);
    }

}

.subTriple {
    width: calc(33% - 1.5rem);
}

@media screen and (max-width: 880px) {

    .subTriple {
        width: calc(50% - 12px);
    }

}

.subHalf {
    width: calc(50% - 1.5rem);
}

.subFull {
    width: 90%;
}

@media screen and (max-width: 880px) {

    .subFull {
        width: calc(100% - 1.5rem);
    }

}


.rot1{
    transform: rotate(-2deg);
}
.rot2{
    transform: rotate(-1deg);
}
.rot3{
    transform: rotate(1deg);
}
.rot4{
    transform: rotate(3deg);
}
.rot5{
    transform: rotate(3deg);
}


img.homeSmall {
    width: 200px;
}

img.homeMedium {
    width: 500px;
}

img.homeLarge {
    width: 600px;
}

.pin img::before {
    position: absolute;
    height: 128px;
    top: -11px;
    left: -11px;
    z-index: 1011;
    content: url("../images/pin.png");
}

.lightbox_trigger {
    cursor: zoom-in;
}

#lightbox {
  position: fixed;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 1002;
  backdrop-filter: blur(3px);
  margin-left: -6px;
}

#lightbox img {
  border: 1px dotted black;
  /* border-radius: 24px; */
  max-height: calc(100vh - 24px);
  max-width: calc(100vw - 24px);
  margin-top: 50vh;
  margin-left: 50%;
  transform: translate(-50%, -50%);
}


.trail-img {
  position: absolute;
  object-fit: cover;
  transform-origin: center;
  pointer-events: none;
  will-change: transform;
  z-index: 12;

  border: 1px dotted black;
  background-color: white;
  padding: 5px;
}

.trail-image {
  position: absolute;
  overflow: hidden;
  will-change: transform;
  transform-origin: center;
  backface-visibility: hidden;
  z-index: 12;
}


.construction {
    position: fixed;
    width: 100%;
    bottom: 6px;
    display: flex;
    justify-content: center;
}

h3 {
    border-radius: 20pt;
    padding: 3px 12pt 5px;
    background-color: orange;
    font-style: italic;
}