/* @import url("https://fonts.cdnfonts.com/css/helvetica-neue-55"); */

body,
html {
  margin: 0;
  /* font-family: "Helvetica Neue", "Public Sans", sans-serif; */
  font-family: "Public Sans", "Helvetica Neue", sans-serif;
}

a {
  color: #9710ff;
}
a:hover {
  text-decoration: none;
}

body {
  color: #000000;
  background-color: #000000;
  line-height: 1.5;
}
.homepageBG {
  background-image: url("images/forestbridge.jpg");
  background-size: cover;
  background-position: center;
  background-size: cover;
}

.contentContainer {
  width: 100%;
  height: 100vh;
  position: relative;
}

.logo {
  padding: 40px 0 0 40px;
}

.logo img {
  height: 60px;
}

.footer {
  display: flex;
  height: 60px;
  color: #ffffff;
  justify-content: center;
  justify-items: center;
  align-items: center;
  bottom: 0;
  margin-top: auto;
  font-size: 14px;
  text-align: center;
  width: 100%;
  border-top: 1px solid rgba(255, 255, 255, 0.5);
}

.content {
  margin: 0 auto;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  color: #ffffff;
  height: calc(100vh - 206px);
  width: calc(80% - 80px);
}

.breadcrumb {
  height: 30px;
  display: flex;
  align-items: center;
  background-color: #111111;
  padding: 0 40px;
  margin: 20px 0;
}

.breadcrumb a {
  color: #ffffff;
  margin-left: 10px;
  font-size: 14px;
  text-decoration: none;
}

.footerLinks {
  display: flex;
  justify-content: flex-end;
  height: 40px;
  align-items: center;
  padding-right: 40px;
  background-color: rgba(0, 0, 0, 0.7);
  margin-top: auto;
}

.footerLinks a {
  margin-left: 10px;
  font-size: 14px;
}

.content-subpage {
  padding: 50px 40px 20px 40px;
  color: #ffffff;
  max-width: var(--maxw);
  margin: 0 auto;
  min-height: calc(100% - 280px);
}

.content-subpage h2 {
  margin-bottom: auto;
  padding-top: 20px;
}

.topBar {
  display: flex;
}
.topMenu {
  margin-left: auto;
  margin-top: 50px;
  margin-right: 40px;
}

.topMenu a {
  font-size: 18px;
  font-weight: bold;
}

.topMenu a,
.topMenu a:visited {
  font-size: 20px;
  font-weight: bold;
  padding: 10px 15px;
  margin: 0 5px;
  color: #cccccc;
  text-decoration: none;
}

.topMenu a:hover {
  /* border-bottom: 4px solid #9710ff; */
  color: #ffffff;
}
.topMenu a.current {
  color: #ffffff;
  border-bottom: 4px solid #9710ff;
}

.content p {
  font-size: 32px;
  font-weight: 200;
  margin: 0 0 40px 0;
}

@media screen and (max-width: 1080px) {
  .contentContainer {
    height: calc(100vh - 40px);
    position: relative;
    width: 100%;
  }

  .footer {
    font-size: 12px;
  }

  .logo {
    width: 174px;
    height: 48px;
    padding: 0;
    margin: 40px auto 0 auto;
  }

  .logo img {
    width: 174px;
    height: 48px;
  }

  .content {
    height: calc(100vh - 150px);
    width: calc(100% - 80px);
  }

  .content p {
    font-size: 24px;
  }
}

@media screen and (max-width: 640px) {
  .contentContainer {
    height: calc(100vh - 40px);
    position: relative;
    width: 100%;
  }

  .footer {
    font-size: 12px;
  }

  .logo {
    width: 174px;
    height: 48px;
    padding: 0;
    margin: 40px auto 0 auto;
  }

  .logo img {
    width: 174px;
    height: 48px;
  }

  .content {
    height: calc(100vh - 150px);
    width: calc(100% - 80px);
    overflow-y: auto;
  }

  .content p {
    font-size: 18px;
  }
}

@media screen and (max-height: 430px) {
  .contentContainer {
    height: calc(100vh - 20px);
  }

  .footer {
    height: 30px;
  }

  .logo {
    width: 174px;
    height: 36px;
    padding: 0;
    margin: 20px auto 0 auto;
  }

  .logo img {
    width: 174px;
    height: 36px;
  }

  .content {
    height: calc(100vh - 120px);
  }

  .content p {
    font-size: 16px;
    margin-bottom: 10px;
  }
}

@media screen and (max-height: 320px) {
  .contentContainer {
    height: calc(100vh - 20px);
  }

  .footer {
    height: 30px;
  }

  .logo {
    width: 174px;
    height: 36px;
    padding: 0;
    margin: 20px auto 0 auto;
  }

  .logo img {
    width: 174px;
    height: 36px;
  }

  .content {
    height: calc(100vh - 120px);
  }

  .content p {
    font-size: 14px;
    margin-bottom: 10px;
  }
}
/* Minimal styling to make structure readable */
:root {
  --accent: #0b63d6;
  --muted: #ffffff;
  --maxw: 1100px;
  --pad: 20px;
}
.container {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: var(--pad);
}

.hero {
  padding: 48px 0;
  display: grid;
  gap: 18px;
}
.hero h1 {
  font-size: 30px;
  margin: 0 0 6px;
}
.hero p.lead {
  font-size: 16px;
  color: var(--muted);
  margin: 0;
  max-width: 760px;
}

.grid {
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(2, 1fr);
}
.card {
  border: 1px solid #f0f0f0;
  padding: 16px;
  border-radius: 10px;
}

.muted {
  color: var(--muted);
}
