/* http://meyerweb.com/eric/tools/css/reset/ 
   v2.0 | 20110126
   License: none (public domain)
*/
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}

/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
  display: block;
}

body {
  line-height: 1;
}

ol, ul {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

blockquote:before, blockquote:after,
q:before, q:after {
  content: "";
  content: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

/* PLACE website CSS */
body {
  font-family: ff-scala-sans-pro, sans-serif;
}

/* basic grid layout */
.page-wrapper {
  display: grid;
  grid-template-columns: 10em auto;
  grid-template-areas: "navigation-area content-area";
  margin: 0;
  padding: 0;
  height: 100vh;
  cursor: pointer;
}

/* header */
header.page-header {
  margin-left: 1.5em;
  color: #F15625;
  margin-top: 10vh;
}

h1 {
  font-weight: bold;
  font-size: 2rem;
}

h2 {
  padding-top: 0.5em;
  font-variant: small-caps;
  font-size: 1.25em;
}

header.page-header h1,
header.page-header h2 {
  font-size: 1em;
  font-weight: normal;
  float: left;
}

.page-title {
  text-transform: lowercase;
  font-size: 1.25em !important;
  margin-top: 1em;
}

/* page areas */
.navigation-content {
  grid-area: navigation-area;
  transition: 0.4s ease-in-out;
  background-color: white;
  opacity: 0.85;
  z-index: 5;
  position: fixed;
  height: 100vh;
  width: 11em;
  top: 0;
  padding: 0;
  margin: 0;
}

.page-content {
  grid-area: content-area;
  margin-top: 1.5em;
  margin-left: 1.5em;
  margin-right: 1.5em;
  margin-bottom: 0;
  padding: 0;
  overflow-y: auto;
}

.text-content {
  grid-area: content-area;
  margin-top: 5em;
  margin-left: 15%;
  margin-right: 15%;
  overflow-y: auto;
}

/* general text formatting */
p {
  font-style: normal;
  font-weight: normal;
  line-height: 1.5;
  margin: 0.5rem 0rem 2rem 0;
}

.text-content img {
  float: right;
  max-width: 55%;
  max-height: 45vh;
  padding: 1em 1em 2em 1em;
  height: auto;
}

.text-content .callout-left {
  float: left;
}

.text-content blockquote {
  margin-left: 5%;
}

/* navigation components */
.menu {
  padding-top: 1rem;
  padding-bottom: 1rem;
  padding-right: 0em;
  top: 25vh;
  width: 9em;
  position: absolute;
  list-style: none;
  text-align: left;
  float: left;
  color: black;
  line-height: 1.3;
}

.menu ul {
  list-style: none;
}

.menu li {
  display: block;
  margin: 0rem 1.5rem 0rem 1.5rem;
  cursor: pointer;
  list-style: none;
}

.menu li:hover {
  font-weight: bold;
}

.menu ul#filter {
  cursor: auto;
  margin: 0px 0px 0px 1.5rem;
}

.menu ul li.selected, #menu li.selected {
  font-weight: bold;
  color: #F15625;
}

.menu a {
  color: inherit;
  text-decoration: none;
}

.menu a:hover {
  font-weight: bold;
}

.wordmark {
  font-size: 3rem;
  font-family: "filson-pro";
  font-weight: 500;
  color: #F15625;
  position: absolute;
  top: 66vh;
  margin-left: 0.4em;
  padding: 0;
}

.wordmark a {
  text-decoration: none;
  color: inherit;
}

/* swiper global setup */
:root {
  --swiper-navigation-color: #F15625;
  --swiper-theme-color: #F15625 !important;
}

/* swiper components */
#my-swiper-container {
  height: 100%;
}

.swiper-slide {
  -webkit-backface-visibility: hidden;
  -webkit-transform: translateZ(0);
}

.swiper-wrapper {
  align-items: center;
  -webkit-transform: translateZ(0);
  -webkit-transform-style: preserve3d;
}

.imgSwiper {
  height: calc(90% - 5em);
}

.thumbSwiper {
  height: fit-content(10%);
}

.swiper-slide img {
  display: block;
  width: 95%;
  object-fit: contain;
}

.thumbSwiper .swiper-slide {
  opacity: 0.4;
  padding-top: 1em;
}

.thumbSwiper .swiper-slide-thumb-active {
  opacity: 1;
}

/*
	// make the swiper buttons span vertically 

.swiper-button-prev, .swiper-button-next {
	top: 3rem !important;
	height: 100% !important;
	margin: 0 !important;
}
*/
.swiper-button-prev:focus, .swiper-button-next:focus {
  outline: none;
}

/* modal dialog, used for project info */
.modal {
  position: fixed;
  display: none; /* Hidden by default */
  z-index: 100; /* Sit on top */
  left: 0;
  top: 0;
  width: 100%; /* Full width */
  height: 100%; /* Full height */
  background-color: rgb(0, 0, 0); /* Fallback color */
  background-color: rgba(0, 0, 0, 0.4); /* Black w/ opacity */
}

.modal-container {
  position: fixed;
  top: 25%;
  left: 30%;
  width: 50%;
  background-color: #fefefe;
  border: 1px solid #888;
}

.modal-content {
  margin: 3rem 4rem 3rem 4rem;
  max-height: 40vh;
  overflow-y: auto;
}

.modal-content p {
  width: 100%;
}

.modal-close {
  position: fixed;
  color: #aaaaaa;
  font-size: 1.5rem;
  font-weight: bold;
  transform: translate(1em, 1em);
}

.modal-close:hover,
.modal-close:focus {
  color: #F15625;
  text-decoration: none;
  cursor: pointer;
}

/* blur 'content' area of grid when modal appears */
#content {
  filter: none;
}

#content.blur {
  filter: blur(15px);
}

/* social icons */
.social {
  width: 50%;
  margin: 0 auto;
}

.social a {
  color: gray;
  padding: 2em;
}

.social a:hover {
  color: #f15625;
}

/* header buttons and input fields */
.menu-button {
  display: none;
  background-image: url("/assets/icons/hamburger.svg");
  background-repeat: no-repeat;
  background-position: center;
  background-color: white;
  border: #fff;
  padding: 0.5em;
  margin-top: 0.5em;
  width: 2em;
  height: 2em;
  font-size: 1em;
  float: left;
  position: fixed;
  top: 0.5em;
  left: 0.5em;
}

.search-input {
  padding: 0.5em;
  margin-top: 0.5em;
  width: 0.66em;
  height: 0.66em;
  border: #ccc solid 2px;
  border-radius: 50%;
  font-size: 0.66em;
  background-image: url("/assets/icons/search.svg");
  background-size: 0.85em;
  background-repeat: no-repeat;
  background-position: center;
  -webkit-transition: width 0.4s ease-in-out;
  transition: width 0.4s ease-in-out;
}

.search-input:focus {
  width: 7em;
  outline: #ccc solid 2px;
  border-color: white;
  border-radius: 0;
  background: white;
}

.search-input:focus + span {
  display: none;
}

.search-input:hover:focus {
  border-color: white;
}

.info-button {
  padding: 0.5em;
  margin-top: 0.25em;
  width: 1.1em;
  height: 1.1em;
  border: #ccc solid 2px;
  border-radius: 50%;
  font-size: 1.1em;
  background-image: url("/assets/icons/ISOInfoSign.svg");
  background-size: 0.25em;
  background-repeat: no-repeat;
  background-position: center;
  background-color: white;
  float: left;
}

.search-input:hover,
.info-button:hover {
  border-color: #F15625;
  cursor: pointer;
}

.row {
  display: flex;
  flex-wrap: wrap;
  padding: 0;
}

/* Create four equal columns that sits next to each other */
.column {
  flex: 24%;
  max-width: 25%;
  margin-right: 0.5em;
}

.column img {
  margin-top: 0.5em;
  vertical-align: middle;
  width: 100%;
}

.gallery-content {
  padding-left: 0;
  margin-left: 0;
  box-sizing: border-box;
  position: sticky;
  max-height: 90vh;
  overflow: auto; /* Enable scroll if needed */
}

.gallery-content img {
  padding: 0;
}

/* Responsive layout - makes a two column-layout instead of four columns */
@media screen and (max-width: 1024px) {
  .column {
    flex: 47%;
    max-width: 47%;
  }
}
/* Responsive layout - makes the two columns stack on top of each other instead of next to each other */
@media screen and (max-width: 600px) {
  .column {
    flex: 100%;
    max-width: 100%;
  }
}

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