/* Basic Blocks */
* {
  margin: 0;
  padding: 0;
}

body {
  font-family: "Greycliff CF", sans-serif;
  width: 100vw;
}

/* Generic Text Styling */
.clean-link {
  text-decoration: none;
  color: #414141;
  font-weight: normal;
}
.clean-link:hover {
  color: #9B9B9B;
}

.text-title {
  font-size: 3em;
  font-weight: 300;
  padding-bottom: 5vh;
}

.text-body {
  font-size: 1.5em;
  font-weight: 300;
  white-space: pre-line;
  padding-bottom: 5vh;
}

.subtitle {
  font-size: 1.2em;
  font-style: italic;
  padding-bottom: 3vh;
}

.blurb {
  padding-bottom: 1.5vh;
  font-size: 1.2em;
}

.credits {
  font-size: 1.2em;
  padding-bottom: 0.5vh;
  display: inline;
}

.inline-heading {
  padding-top: 2vh;
  font-weight: 600;
  font-size: 1.2em;
  padding-bottom: 1vh;
  display: inline;
}

.header-link {
  font-size: 2.5em;
  text-decoration: none;
  color: #414141;
  font-weight: 600;
}

#artist-statement {
  grid-row: 1;
  align-self: end;
}
#artist-statement p {
  font-size: 1.5em;
  font-weight: lighter;
}

/* Structure Elements */
@media only screen and (max-width: 530px) {
  #grid-container-home {
    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: 2fr 2fr 2fr 0.5fr;
    grid-row-gap: 2vh;
    width: 95vw;
    height: 90vh;
    padding-left: 2.5vw;
    padding-right: 2.5vw;
  }
}
@media only screen and (min-width: 531px) {
  #grid-container-home {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 2fr 2fr 0.1fr;
    column-gap: 1vw;
    row-gap: 1vw;
    width: 95vw;
    height: 90vh;
    padding-left: 2.5vw;
    padding-right: 2.5vw;
  }
}
@media only screen and (max-width: 530px) {
  #grid-container-main {
    display: grid;
    grid-template-columns: 1fr;
    grid-row-gap: 1.2vw;
    width: 88vw;
    height: 90vh;
    padding-left: 6vw;
    padding-right: 6vw;
  }
  #grid-container-main .nav-main {
    display: none;
  }
  #grid-container-main #artist-statement {
    display: none;
  }
}
@media only screen and (min-width: 531px) {
  #grid-container-main {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 2fr 2fr 0.1fr;
    column-gap: 1vw;
    row-gap: 1vw;
    width: 95vw;
    height: 90vh;
    padding-left: 2.5vw;
    padding-right: 2.5vw;
  }
}
#grid-container-secondary {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr 1fr 1fr 2.5vh;
  column-gap: 1vw;
  row-gap: 1vw;
  width: 95vw;
  height: 90vh;
  padding-left: 2.5vw;
  padding-right: 2.5vw;
}

@media only screen and (max-width: 530px) {
  #grid-container-tertiary {
    display: grid;
    grid-template-columns: 1fr;
    grid-row-gap: 1.2vw;
    width: 88vw;
    height: 90vh;
    padding-left: 6vw;
    padding-right: 6vw;
    overflow-y: scroll;
  }
  #grid-container-tertiary .lh-text {
    width: 100%;
  }
  #grid-container-tertiary .nav-main {
    display: none;
  }
  #grid-container-tertiary #artist-statement {
    display: none;
  }
  #grid-container-tertiary #gallery-page {
    display: block;
    grid-column: 1;
    grid-row: auto;
  }
}
@media only screen and (min-width: 531px) {
  #grid-container-tertiary {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr;
    column-gap: 1vw;
    row-gap: 1vw;
    width: 95vw;
    height: 90vh;
    padding-left: 2.5vw;
    padding-right: 2.5vw;
  }
  #grid-container-tertiary .section {
    overflow-y: scroll;
  }
}
.section {
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: auto;
  overflow-x: clip;
}

@media only screen and (max-width: 530px) {
  #internal-container {
    grid-column: 1;
    padding-top: 5vh;
    overflow-y: scroll;
    overflow-x: clip;
  }
}
@media only screen and (min-width: 531px) {
  #internal-container {
    grid-column: 2;
    grid-row: 1/3;
    padding-top: 5vh;
    overflow-y: scroll;
    overflow-x: clip;
  }
}
/* Acknowledgement */
@media only screen and (max-width: 530px) {
  .overlay {
    height: 100%;
    width: 100%;
    display: grid;
    position: fixed;
    z-index: 1;
    top: 0;
    left: 0;
    background-color: #ffffff;
  }
  .overlay .acknowledge-content {
    align-self: center;
    justify-self: center;
    width: 60%;
    font-size: 1em;
    font-weight: 600;
    text-align: center;
  }
  .overlay .acknowledge-content div {
    cursor: default;
    text-decoration: none;
    font-size: 1em;
    font-weight: 700;
    color: #414141;
    display: block;
    transition: 0.3s;
    text-align: center;
    padding-top: 5vh;
  }
  .overlay .acknowledge-content div:hover {
    color: #9B9B9B;
  }
}
@media only screen and (min-width: 531px) {
  .overlay {
    height: 100%;
    width: 100%;
    display: grid;
    position: fixed;
    z-index: 1;
    top: 0;
    left: 0;
    background-color: #ffffff;
  }
  .overlay .acknowledge-content {
    align-self: center;
    justify-self: center;
    width: 34%;
    font-size: 1em;
    font-weight: 600;
    text-align: center;
  }
  .overlay .acknowledge-content div {
    cursor: default;
    text-decoration: none;
    font-size: 1em;
    font-weight: 700;
    color: #414141;
    display: block;
    transition: 0.3s;
    text-align: center;
    padding-top: 5vh;
  }
  .overlay .acknowledge-content div:hover {
    color: #9B9B9B;
  }
}
/* Headers & Menus */
.main-header {
  width: 97.5vw;
  height: 7.5vh;
  padding-left: 2.5vw;
  display: flex;
  align-items: center;
}
.main-header a {
  text-decoration: none;
  color: #414141;
  font-size: 1em;
  font-weight: 700;
}

.secondary-header {
  width: 97.5vw;
  height: 7.5vh;
  padding-left: 2.5vw;
  display: flex;
  align-items: center;
}
.secondary-header a {
  text-decoration: none;
  color: #414141;
  font-size: 1em;
  font-weight: 700;
}

.secondary-menu-items {
  margin-left: auto;
  margin-right: 2vw;
}
.secondary-menu-items a {
  padding-left: 0.5vw;
  padding-right: 0.5vw;
}

.theatre-link:hover, .theatre-link.current {
  color: #BE3939;
}

.visual-link:hover, .visual-link.current {
  color: #43B27F;
}

.film-link:hover, .film-link.current {
  color: #4B55C7;
}

.writing-link:hover, .writing-link.current {
  color: #D659B9;
}

.other-stuff-link:hover, .other-stuff-link.current {
  color: #FFCA3B;
}

@media only screen and (max-width: 530px) {
  .nav-main {
    align-self: end;
    grid-row: 3;
  }
  .nav-main .nav-main-item a {
    font-size: 3em;
  }
}
@media only screen and (min-width: 531px) {
  .nav-main {
    align-self: end;
    grid-row: 2;
  }
}
.nav-main-item {
  list-style-type: none;
}
.nav-main-item a {
  text-decoration: none;
  color: #414141;
  font-weight: 900;
  font-size: 3.45em;
}

@media only screen and (max-width: 530px) {
  #secondary-nav {
    grid-row: 4;
    justify-content: space-between;
    align-content: center;
  }
  #secondary-nav ul {
    display: grid;
    grid-template-columns: auto auto auto;
  }
  #secondary-nav li {
    list-style-type: none;
  }
  #secondary-nav li a {
    color: #414141;
    font-weight: 700;
    text-decoration: none;
    font-size: 1em;
  }
  #secondary-nav #support {
    grid-column: 1;
    justify-self: start;
  }
  #secondary-nav #whatson {
    grid-column: 2;
    justify-self: center;
  }
  #secondary-nav #contact {
    grid-column: 3;
    justify-self: end;
  }
}
@media only screen and (min-width: 531px) {
  #secondary-nav {
    grid-row: 3;
    justify-content: space-between;
    grid-column: 2;
  }
  #secondary-nav ul {
    display: grid;
    grid-template-columns: auto auto auto;
  }
  #secondary-nav li {
    list-style-type: none;
  }
  #secondary-nav li a {
    color: #414141;
    font-weight: 700;
    text-decoration: none;
    font-size: 1em;
  }
  #secondary-nav #support {
    grid-column: 1;
    justify-self: start;
  }
  #secondary-nav #whatson {
    grid-column: 2;
    justify-self: center;
  }
  #secondary-nav #contact {
    grid-column: 3;
    justify-self: end;
  }
}
/* Galleries */
@media only screen and (max-width: 530px) {
  #gallery-home {
    grid-row: 2;
    height: 100%;
  }
  #gallery-home img {
    width: 0;
    height: 0;
    object-fit: cover;
    min-height: 100%;
    min-width: 100%;
  }
}
@media only screen and (min-width: 531px) {
  #gallery-home {
    grid-row: 1/3;
    grid-column: 2;
    height: 100%;
  }
  #gallery-home img {
    width: 0;
    height: 0;
    object-fit: cover;
    min-height: 100%;
    min-width: 100%;
  }
}
#gallery-page {
  grid-row: 1;
  grid-column: 2;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: repeat(4, 1fr);
  height: 100%;
}
#gallery-page img {
  width: 0;
  height: 0;
  object-fit: cover;
  min-height: 100%;
  min-width: 100%;
}
#gallery-page img:nth-child(1) {
  grid-row: 1/3;
  grid-column: 1/3;
}
#gallery-page img:nth-child(3) {
  grid-row: 1/3;
  grid-column: 3/4;
}
#gallery-page img:nth-child(2) {
  grid-row: 3/5;
  grid-column: 1/4;
}

/* Tile Gallery */
@media only screen and (max-width: 530px) {
  .tile-portfolio {
    display: grid;
    grid-template-columns: 0.992fr;
    grid-gap: 10px;
    padding-top: 20px;
  }
}
@media only screen and (min-width: 531px) {
  .tile-portfolio {
    display: grid;
    grid-template-columns: repeat(2, 0.492fr);
    grid-gap: 10px;
    padding-top: 20px;
  }
}
@media only screen and (min-width: 951px) {
  .tile-portfolio {
    display: grid;
    grid-template-columns: repeat(3, 0.328fr);
    grid-gap: 10px;
    padding-top: 20px;
  }
}
.tile {
  position: relative;
  aspect-ratio: 1/1;
  font-weight: bold;
}
.tile:hover .tile-overlay {
  opacity: 0.8;
}

.tile-overlay {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  height: 100%;
  width: 100%;
  opacity: 0;
  transition: 0.3s ease;
  background-color: #ffffff;
}

.tile-text {
  text-align: center;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  color: #414141;
}
.tile-text .tile-date {
  color: #9B9B9B;
  font-weight: lighter;
  padding-bottom: 10%;
}

.tile-thumb {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Other */
.lh-title {
  grid-column: 1;
  grid-row: 1;
  align-self: end;
  font-weight: 600;
  font-size: 1.5em;
  padding-bottom: 1vh;
}

.lh-text {
  grid-column: 1;
  grid-row: 2;
  align-self: start;
  width: 75%;
  font-weight: lighter;
  font-size: 1.2em;
  padding-bottom: 1.5vh;
}

.lh-socials {
  grid-column: 1;
  grid-row: 3;
  align-self: start;
  display: grid;
  grid-template-columns: repeat(12, 1fr);
}

.socials-icon {
  width: 65%;
  grid-column: auto;
  align-self: center;
}

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