/* general */

:root {
  --color-light-brown: #b07d59;
  --color-dark-brown: #5e292b;
  --color-black: #000;
  --color-white: #fff;
  --navbar-height: 44px;
}

/* smooth scrolling anchor links */
html {
  scroll-behavior: smooth;
}

body {
  font-family: sans-serif;
}

img {
  display: block;
  max-width: 100%;
}

.container {
  margin: 0 auto;
  max-width: 1200px;
}
.container-full {

}

.section {
  position: relative;
}
  .section-content {
    padding-left: 20px;
    padding-right: 20px;
  }
@media (min-width: 768px) {
  .section-content {
    padding-left: 60px;
    padding-right: 60px;
  }
}


h2 {
  margin: 0;
  padding: 0;
  text-transform: uppercase;
  font-family: condor, sans-serif;
  font-weight: 400;
  font-style: normal;
  line-height: 1;
  /**/
  font-size: 26px;
}
@media (min-width: 768px) {
  h2 {
    font-size: 58px;
  }
}

/* sections */

header {
  padding: 8px 10px;
  background-color: var(--color-light-brown);
  color: #fff;
}
  header nav {
  }
    header nav ul {
      text-align: right;
      margin-top: 0;
      margin-bottom: 0;
      list-style: none;
      line-height: 1.7;
    }
      header nav ul li {
        display: inline-block;
        margin-left: 8px;
        margin-right: 8px;
      }
        header nav ul li a {
          display: inline-block;
          text-transform: uppercase;
          color: #fff;
          font-size: 14px;
          text-decoration: none;
          /**/
          font-family: museo-sans, sans-serif;
          font-weight: 500;
          font-style: normal;
        }

@media (min-width: 768px) {
  header {
    padding: 0;
    height: var(--navbar-height);
    line-height: var(--navbar-height);
  }
    header nav {
      height: var(--navbar-height);
    }
      header nav ul {
        overflow: hidden;
        height: var(--navbar-height);
        line-height: normal;
      }
        header nav ul li {
          height: var(--navbar-height);
          line-height: var(--navbar-height);
          margin-left: 15px;
          margin-right: 15px;
        }
          header nav ul li a {
            font-size: 14px;
          }
}


#hero {
  background-image: url(images/hero-background.png);
  background-color: #000;
  /*
  background-position: center center;
  background-size: cover;
  */
  background-position: bottom right;
  background-size: 80%;
  background-repeat: no-repeat;
  height: calc(100vh - 44px);


}
  #hero > div {
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
  }
    #hero .hero-logo {
      /*width: 500px;*/
      width: 35vw;
      margin-left: -40vw;
    }

#hero-mobile {

}

#building-features {
  background-image: url(images/building-features.jpg);
  background-color: #e5e5e5;
  background-position: right bottom;
  background-size: contain;
  background-repeat: no-repeat;
  height: 64vh;
}
  #building-features .section-content {
    padding-top: 30px;
  }
  
    #building-features .section-content h2 {
    }
      #building-features .section-content h2 span {
      }
    #building-features .section-content ul {
      margin-left: -15px;
      font-size: 16px;
      line-height: 1.4;
    }
@media (min-width: 768px) {
  #building-features {
    height: 744px;
  }
  #building-features .section-content {
    padding-top: 68px;
    width: 360px;
  }
    #building-features .section-content ul {
      font-size: 26px;
    }
}



#availability {
  background-color: var(--color-black);
  padding-bottom: 20px;
}
  #availability h2 {
    color: var(--color-white);
    padding-top: 30px;
    padding-bottom: 10px;
    padding-left: 20px;
  }
  #availability .availability-image-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px 20px;
  }
    #availability .availability-image-wrapper img {
      max-width: 85%;
      /* nudge it over to the right due to the "outdoor space" text which throws off the true center */
      margin-left: 50px;
    }
    @media (min-width: 1024px) {
      #availability .availability-image-wrapper img {
        max-width: 800px;
      }
    }
  #availability .section-content {

  }
    #availability .section-content h3 {
      text-transform: uppercase;
      color: var(--color-light-brown);
      font-size: 30px;
      margin-top: 50px;
      text-align: center;
    }
    /* mobile */
    #availability .section-content .unit {
      color: var(--color-white);
      border-bottom: 1px solid #444;
      padding-bottom: 10px;
      line-height: 1.3;
    }
      #availability .section-content .unit a {
        color: var(--color-light-brown);
      }
    
    /* desktop */
    #availability .section-content table {
      color: var(--color-white);
      border-bottom: 1px solid #444;
    }
      #availability .section-content table tr {
        margin: 0;
        padding: 0;
      }
        #availability .section-content table tr td {
          border-top: 1px solid #444;
          padding: 10px 0;
        }
      #availability .section-content table .highlight,
      #availability .section-content p .highlight {
        color: var(--color-light-brown);
      }
      #availability .section-content table a {
        color: var(--color-light-brown);
        text-decoration: underline;
      }
.download-buttons {
  margin-top: 30px;
}
.download-button {
  display: block;
  border: 4px solid var(--color-light-brown);
  color: var(--color-light-brown);
  text-align: center;
  text-transform: uppercase;
  text-decoration: none;
  font-weight: bold;
  padding: 10px;
  font-size: 22px;
}
@media (min-width: 768px) {
  .download-button {
    font-size: 26px;
  }
}

@media (min-width: 768px) {
  #availability h2 {
    padding-top: 50px;
    padding-bottom: 30px;
    padding-left: 60px;
  }
}


#space-features {
  background-color: var(--color-light-brown);
  padding-top: 20px;
  padding-bottom: 20px;
}
  #space-features h2 {
    color: var(--color-dark-brown);
    
    padding-top: 20px;
    padding-bottom: 10px;
    /*padding-left: 60px;*/
    padding-left: 50px;
    
  }
  #space-features .section-content {

  }
    #space-features .section-content ul {
      font-size: 16px;
      color: #fff;
      line-height: 1.4;
    }
@media (min-width: 768px) {
  #space-features {
    padding-top: 50px;
    padding-bottom: 50px;
  }
  #space-features h2 {
    padding-top: 50px;
    padding-bottom: 30px;
    /*padding-left: 60px;*/
    padding-left: 100px;
  }
  #space-features .section-content ul {
    font-size: 26px;
  }
}



#transportation-map {
  background-color: var(--color-white);
}
  #transportation-map h2 {
    color: var(--color-dark-brown);
    padding-top: 20px;
    padding-bottom: 15px;
    padding-left: 20px;
  }
  #transportation-map img {
    display: block;
    width: 100%;
    height: auto;
  }
@media (min-width: 768px) {
  #transportation-map h2 {
    padding-top: 50px;
    padding-bottom: 30px;
    padding-left: 60px;
  }
}



#gallery {
  background-color: var(--color-white);
  padding: 10px 0;
}
  #gallery img {
    display: block;
    width: 100%;
    height: auto;
  }
@media (min-width: 768px) {

}

.gallery-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 10px 10px;
  grid-auto-flow: row;
  grid-template-areas:
    "big big img1 img2"
    "big big img3 img4";
}

.big { grid-area: big; }
.img1 { grid-area: img1; }
.img2 { grid-area: img2; }
.img3 { grid-area: img3; }
.img4 { grid-area: img4; }




footer {
  background-color: var(--color-light-brown);
  color: var(--color-white);
}
  footer .section-content {
    padding-top: 20px;
    padding-bottom: 20px;
  }
  footer .people {
    list-style: none;
    margin-left: 0;
    margin-block-start: 0;
    padding-inline-start: 0;
    line-height: 1.3;
    font-size: 18px;
  }
  footer .copyright {
    font-size: 12px;
    line-height: 1.3;
  }
  footer .logos {
    text-align: center;
    margin-bottom: 20px;
  }
  footer .logo {
    display: block;
    margin: 0 auto;
  }
    footer .logo.logo-somerset {
      width: 300px;
      margin-bottom: 10px;
    }
    footer .logo.logo-kaufman {
      width: 200px;
    }
    footer a {
      text-decoration: underline;
      color: #fff;
    }
@media (min-width: 768px) {
  footer .people {
    font-size: 20px;
  }
  footer .logos {
    text-align: right;
  }
  footer .logo {
    display: block;
    margin: 0 0 0 auto;
  }
}

.visible-mobile {
  display: block;
}
@media (min-width: 768px) {
  .visible-mobile {
    display: none;
  }
}
.visible-desktop {
  display: none;
}
@media (min-width: 768px) {
  .visible-desktop {
    display: block;
  }
}

@media (min-width: 768px) {
  .row {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    width: 100%;
  }

  .column {
    display: flex;
    flex-direction: column;
    flex-basis: 100%;
    flex: 1;
  }

  .column-2 {
    display: flex;
    flex-direction: column;
    flex-basis: 100%;
    flex: 2;
  }
  .row.gutter > .column:first-child {
    margin-right: 20px;
  }
  .row.gutter > .column:last-child {
    margin-left: 20px;
  }
}

