@import url('https://fonts.googleapis.com/css2?family=Fira+Sans:ital,wght@0,400;0,700;1,400&display=swap');

body {
  font-family: 'Fira Sans', sans-serif;
}

h1,
h2 {
  font-weight: 700;
}

:root {
  --main-area-bg: #f2f2f2;
  --main-area-font-color: #000000;
  --bg-color: #ffffff;
  --font-color: #000000;
  --header-bg: #bf6c43;
  --header-color: #e5b18a;
  --footer-bg: #000000;
  --footer-color: #808080;
  --comment-color: #808080cc;
  --brand-color: #e5b18a;
  --link-color: #0a2fa1;
  --highlighted-bg-color: #e5cfc3;
  --highlighted-font-color: #000000;
  --positive-color: #327300;
  --negative-color: #730000;
  --positive-light-color: #d2e5c3;
  --negative-light-color: #e5c3c3;
}

header div.header-content {
  flex-direction: column;
  gap: 0.75rem;
  padding: 2rem 0 1rem 0;
}

header div.content-width {
  max-width: none;
}

header div.header-content h1 a#logo {
  display: block;
  width: 28rem;
  height: auto;
  aspect-ratio: 7 / 1;
}

header div.header-content>nav {
  padding-top: 0.75rem;
  width: 100%;
  border-top: 2px solid var(--brand-color);
}

header div.header-content>nav>ul {
  flex-wrap: wrap;
  row-gap: 0.75rem;
  justify-content: center;
  text-align: center;
}

header div.header-content>nav>ul a {
  font-weight: bold;
}

h5.section-title {
  color: var(--brand-color);
  padding-bottom: 0;
  text-transform: uppercase;
}

h5.section-title.title-highlighted {
  background: var(--font-color);
  text-align: center;
  padding: 1rem 1rem 0 1rem;
  margin-bottom: -1rem;
}

h5.section-title a {
  text-decoration: none;
  color: var(--brand-color);
}

.project-logo {
  background: url('logo.png') 50% 50% no-repeat;
  background-size: contain;
  overflow: hidden;
  text-indent: -10000px;
  min-width: 6rem;
}

.main-area {
  overflow: hidden;
  padding: 3rem 0;
}

article {
  font-size: 110%;
}

article.with-media picture {
  overflow: hidden;
  position: relative;
}

article.with-media picture > img {
  display: block;
  width: 100%;
  height: auto;
  transition: transform 0.5s ease;
}

article.with-media:hover picture > img {
  transform: scale(1.05);
}

section.articles-section:not(.promo):not(.highlighted) {
  border-top: 4px solid var(--brand-color);
  padding-top: 1rem;
}

section.highlighted:not(.promo) {
  background: var(--link-color) url('./bluebonnet.jpg') 0 50%;
  background-size: cover;
}

section.highlighted:not(.promo) article.highlighted {
  background-color: transparent;
  color: var(--bg-color);
}

section.highlighted:not(.promo) article {
  text-shadow: 0 0 1rem rgba(0, 0, 0, 0.5);
}

section.highlighted:not(.promo) article picture {
  box-shadow: 0 0 1rem rgba(0, 0, 0, 0.5);
}

@media only screen and (max-width: 1279px) {

}

@media only screen and (max-width: 1023px) {
  header div.header-content>nav>ul {
    gap: 0.5rem;
    font-size: 0.8rem;
  }
  .main-area {
    padding: 2rem 0;
  }
}

@media only screen and (max-width: 799px) {
  header div.header-content {
    padding: 1rem 0 !important;
    gap: 1rem;
    flex-direction: column;
  }
  .main-area {
    padding: 1rem 0;
  }
}

@media only screen and (max-width: 599px) {
  header div.header-content h1 a#logo {
    width: 80vw;
  }
}

@media only screen and (max-width: 359px) {

}