:root {
  --primary-font-size: 1.5rem;
  --navbar-font-size: 1.15rem;
  --background-color: #FFFFFE;
  --button-corner-radius: 1rem;
  --border-color: #000000;
  --font-weight-thin: 100;
  --font-weight-extralight: 200;
  --font-weight-light: 300;
  --font-weight-regular: 400;
  --font-weight-medium: 500;
  --font-weight-semibold: 600;
  --font-weight-bold: 700;
  --project-hover-cover-1: #C63236;
  --project-hover-cover-2: #537546;
  --project-hover-cover-3: #C5C6D8;
  --project-hover-cover-4: #3C625D;
  --project-hover-cover-5: #F6C959;
  --project-hover-cover-6: #8CB0C7;
  --container-max: 1200px;
  --page-gutter: 2rem;
  --section-pad: 1.5rem;
}

* {
  font-family: "Inter", sans-serif;
}

@font-face {
  font-family: "Material Design Icons";
  src: url("https://cdn.jsdelivr.net/npm/@mdi/font@7.4.47/fonts/materialdesignicons-webfont.woff2?v=7.4.47") format("woff2");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

body {
  background-color: var(--background-color);
  margin: 0;
}

.nav {
  max-width: var(--container-max);
  margin: 0.5rem auto;
  padding: var(--section-pad) var(--page-gutter);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.nav-left ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-left li a {
  all: unset;
  cursor: pointer;
  font-weight: var(--font-weight-light);
  font-size: var(--navbar-font-size);
}

.nav-left li a:hover {
  text-decoration: underline;
}

.navbar-title {
  font-style: italic;
}

.nav-right {
  display: flex;
  align-items: center;
  gap: 6rem;
}

.contact-info {
  display: flex;
  flex-direction: column;
}

.contact-info a {
  text-decoration: none;
  color: inherit;
  padding-bottom: 0.25rem;
  font-weight: var(--font-weight-light);
  font-size: var(--navbar-font-size);
}

.contact-info a:hover {
  text-decoration: underline;
}

.nav-buttons {
  display: flex;
  gap: 0.5rem;
}

.hero-section {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--page-gutter);
  display: flex;
  align-items: top;
  justify-content: space-between;
  gap: 3rem;
  flex-wrap: wrap;
}

.hero-content {
  flex: 1 1 50%;
  min-width: 320px;
}

.hero-title {
  font-size: var(--primary-font-size);
  font-weight: var(--font-weight-light);
  line-height: 1.4;
  color: #111;
  margin-bottom: 2rem;
}

.hero-title-bold {
  font-weight: var(--font-weight-regular);
}

.button-display {
  all: unset;
  background-color: #111;
  padding: 0.5rem 1.25rem;
  border-radius: 0.75rem;
  border: 1px solid var(--border-color);
  font-size: 1rem;
  text-transform: uppercase;
  cursor: pointer;
  transition: background-color 0.3s ease, color 0.3s ease;
  text-decoration: none;
  color: #fff;
  display: inline-block;
  line-height: 1;
}

.button-display:hover,
.button-display[aria-current="page"]:hover {
  background-color: #fff;
  color: #111;
}

.button-display.is-active {
  background-color: #fff;
  color: #111;
}

.button-display:focus-visible {
  outline: 2px solid #fff;
  outline-offset: 2px;
}

.hero-image {
  flex: 1 1 40%;
  overflow: hidden;
}

.hero-image img {
  height: 35vw;
  display: block;
}

@media (max-width: 900px) {
  .hero-section {
    flex-direction: column;
    gap: 2rem;
    margin: 3rem 1rem;
  }

  .hero-content,
  .hero-image {
    flex: 1 1 100%;
    max-width: 100%;
  }

  .hero-title {
    font-size: 1.75rem;
  }
}

@media (max-width: 700px) {
  .contact-info {
    display: none;
  }
}

.gallery-item:hover .overlay,
.gallery-item:focus-within .overlay {
  opacity: 1;
}

.gallery-section {
  max-width: var(--container-max);
  margin: 4rem auto;
  padding: 0 var(--page-gutter);
}

.gallery-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 2rem;
}

.gallery-item {
  position: relative;
  width: 48%;
  padding-top: 48%;
  cursor: pointer;
  overflow: hidden;
  transition: transform 0.3s ease;
}

.gallery-item img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}


.overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.4);
  opacity: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.3s ease;
}

.gallery-item:hover .overlay,
.gallery-item:focus-within .overlay {
  opacity: 1;
}

.overlay-title {
  color: white;
  font-size: 3.25rem;
  font-weight: var(--font-weight-regular);
  text-align: center;
  padding: 0 1rem;
  user-select: none;
}


@media (max-width: 768px) {
  .gallery-item {
    width: 100%;
    padding-top: 60%;
  }

  .top-right-buttons {
    position: static;
    justify-content: flex-end;
    margin: 1rem 1.5rem 0 0;
  }
}

.gallery-grid .gallery-item:nth-child(1) .overlay {
  background: rgba(83, 117, 70, 0.4);
}

.gallery-grid .gallery-item:nth-child(2) .overlay {
  background: rgba(198, 50, 54, 0.4);
}

.gallery-grid .gallery-item:nth-child(3) .overlay {
  background: rgba(197, 198, 216, 0.4);
}

.gallery-grid .gallery-item:nth-child(4) .overlay {
  background: rgba(60, 98, 93, 0.4);
}

.gallery-grid .gallery-item:nth-child(5) .overlay {
  background: rgba(246, 201, 89, 0.4);
}

.gallery-grid .gallery-item:nth-child(6) .overlay {
  background: rgba(140, 176, 199, 0.4);
}

.info-section {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--page-gutter);
}

.info-title {
  font-weight: var(--font-weight-light);
}

.info-text {
  font-weight: var(--font-weight-light);
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.info-text a {
  color: #111;
  text-decoration: none;
}

.info-subtitle {
  font-weight: var(--font-weight-light);
}

.info-list {
  font-weight: var(--font-weight-light);
  line-height: 1.6;
  list-style-type: disc;
  padding-left: 1.5rem;
  margin-bottom: 1.5rem;
}

.footer {
  background-color: #595959;
  color: #fff;
  text-align: center;
  padding: 1.25rem 1rem;
  font-size: 0.9rem;
}

.footer a {
  color: #fff;
  text-decoration: none;
}

.footer a:hover {
  text-decoration: underline;
}

.footer-icon path {
  fill: #fff;
}

.pr-1 {
  padding-right: .5rem;
}

.land-acknowledgement-container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--page-gutter);
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 auto;
  padding: 1rem;
}

.land-acknowledgement {
  margin: 3rem auto;
  border: 1px solid #000000;
  padding: 1.75rem 2.5rem;
}

.land-title {
  font-size: var(--primary-font-size);
  font-weight: var(--font-weight-light);
  margin-bottom: 0.5rem;
  text-align: left;
}

.land-acknowledgement p {
  font-size: 1.15rem;
  line-height: 1.4;
  color: #333;
  text-align: left;
  font-weight: var(--font-weight-light);
}