:root {
  --theme-ui-colors-text: #121212;
  --theme-ui-colors-background: #ffffff;
  --theme-ui-colors-text: #121212;
  --theme-ui-colors-primary: #121212;
  --theme-ui-colors-secondary: #e9e9e9;
  --theme-ui-colors-tertiary: #f3f3f3;
  --theme-ui-colors-highlight: #553e37;
  --theme-ui-colors-ppuaba: #402f29;
  --test: #ff0000;
  --font-size-base: 1rem;
  --font-size-sm: 0.875rem;
  --font-size-md: 1rem;
  --font-size-lg: 1.25rem;
  --font-size-xl: 1.5rem;
}

html {
  color: var(--theme-ui-colors-text);
  background-color: var(--theme-ui-colors-background);
}

body {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
  font-size: 100%;
  line-height: 150%;
}

* {
  box-sizing: border-box;
  padding: 0;
  margin: 0;
}

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

a {
  color: inherit;
}

li {
  line-height: 140%;
  margin-bottom: 0.25rem;
}

.navbar {
  background: var(--theme-ui-colors-ppuaba);
  width: 100%;
  padding: 1.5em 0px;
  position: sticky;
  top: 0;
  z-index: 4;
}
.navbar nav {
  width: 100%;
  max-width: 1050px;
  margin: 0px auto;
  padding: 0px 1.5em;
}
.navbar nav ul {
  display: flex;
  justify-content: space-between;
}
.navbar nav ul li {
  display: inline-block;
  margin-left: 1em;
}
.navbar nav ul li a {
  text-decoration: none;
  color: darkgray;
  font-weight: 600;
  transition: all 0.2s ease 0s;
}
.navbar nav ul li a:hover {
  color: white;
  border-bottom: 2px solid white;
}
.navbar nav ul li:first-of-type {
  position: relative;
  margin: 0px;
  flex-basis: 100%;
}
@media (width > 320px) {
  .navbar nav ul li:first-of-type {
    color: red !important;
  }
}
.navbar nav ul li:first-of-type a {
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.2s ease 0s;
}

.home__section {
  margin: 0px auto auto;
  width: 100%;
  max-width: 1050px;
  padding: 1.5em 1.5em 2em;
}
.home__section ul {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}
.home__section ul a {
  display: flex;
  flex-flow: column;
  height: 100%;
  width: 100%;
  color: var(--theme-ui-colors-text);
  text-decoration: none;
  border: 1px solid var(--theme-ui-colors-secondary);
}
.home__section ul a:hover {
  background: var(--theme-ui-colors-tertiary);
}
.home__section ul a h2 {
  font-size: 1.25em;
  font-weight: 600;
  text-transform: capitalize;
  margin: 1rem 1rem 0.5rem;
}
.home__section ul a time.date {
  margin: 0px 1rem 0.5rem;
  color: gray;
  font-size: 0.75rem;
  font-weight: normal;
  display: block;
}
.home__section ul a p {
  margin: 0px 1rem 1rem;
  line-height: 1.6;
}
.home__section ul li {
  flex: 0 0 100%;
}
@media (min-width: 560px) and (max-width: 799px) {
  .home__section ul li {
    flex: 0 0 calc(50% - 0.5rem);
  }
}
@media (min-width: 800px) {
  .home__section ul li {
    flex: 0 0 calc(33.333% - 0.67rem);
  }
}
.home__section ul li:first-child {
  flex: 0 0 100%;
}
.home__section ul li:first-child .image-container {
  height: 300px;
  overflow: hidden;
}
.home__section ul li:first-child .image-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.home__section ul li:not(:first-child) .image-container {
  height: 200px;
  overflow: hidden;
}
.home__section ul li:not(:first-child) .image-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.site-root {
  height: 100vh;
  display: flex;
  flex-direction: column;
}

.site-content {
  display: flex;
  flex-direction: column;
  flex: 1 0 auto;
}

.page__header {
  display: flex;
  width: 100vw;
  height: 500px;
  padding: 0;
  position: relative;
}
.page__header h1 {
  z-index: 2;
  font-weight: 600;
  position: absolute;
  max-width: 650px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  color: white;
}
.page__header .page__header__image {
  width: 100%;
  max-width: 1200px;
  height: 100%;
  margin: 0 auto;
  position: relative;
}
.page__header .page__header__image::before {
  content: "";
  background: rgba(0, 0, 0, 0.25);
  position: absolute;
  inset: 0px;
  height: 100%;
  width: 100%;
  z-index: 1;
}
.page__header .page__header__image img {
  object-fit: cover;
  height: 100%;
  width: 100%;
}
.page__header .caption {
  font-size: 0.875rem;
  padding: 1rem;
  margin: 0px auto 2em;
  max-width: 650px;
  text-align: right;
}

.article-body {
  margin: 0px auto auto;
  width: 100%;
  max-width: 650px;
  padding: 3em 1.5em 2em;
}
.article-body p {
  font-size: 1rem;
  margin-bottom: 1rem;
}
.article-body h2 {
  font-size: 1.5em;
  font-weight: 600;
  margin-bottom: 0.5rem;
}
.article-body time.date {
  margin-bottom: 1rem;
  font-weight: normal;
  display: block;
}
.article-body ul {
  line-height: 1.25;
  margin-bottom: 2rem;
}
.article-body ul a {
  transition: 0.2s;
  color: var(--theme-ui-colors-text);
}
.article-body ul a:hover {
  color: var(--theme-ui-colors-highlight);
}
.article-body ul a h2 {
  font-size: 1.25em;
  font-weight: 600;
  text-transform: capitalize;
  margin: 1rem 1rem 0.5rem;
}
.article-body ul li {
  flex: 0 0 100%;
}
@media (min-width: 560px) and (max-width: 799px) {
  .article-body ul li {
    flex: 0 0 calc(50% - 0.5rem);
  }
}
@media (min-width: 800px) {
  .article-body ul li {
    flex: 0 0 calc(33.333% - 0.67rem);
  }
}
.article-body ul li:first-child {
  flex: 0 0 100%;
}
.article-body ul li:first-child .image-container {
  height: 300px;
  overflow: hidden;
}
.article-body ul li:first-child .image-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.article-body ul li:not(:first-child) .image-container {
  height: 200px;
  overflow: hidden;
}
.article-body ul li:not(:first-child) .image-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.about-body h1 {
  font-size: 1.5rem;
  line-height: 2rem;
  margin-bottom: 1.5rem;
}

.contact {
  max-width: 600px;
  margin: 0 auto;
  padding: 2rem;
}
.contact h1 {
  text-align: center;
  margin-bottom: 2rem;
}
.contact form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  align-items: center;
  width: 100%;
}
.contact input[type=text],
.contact input[type=email],
.contact textarea {
  width: 100%;
  max-width: 400px;
  padding: 1rem;
  border: 2px solid #ddd;
  border-radius: 8px;
  font-size: 1rem;
  font-family: inherit;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}
.contact input[type=text]:focus,
.contact input[type=email]:focus,
.contact textarea:focus {
  outline: none;
  border-color: #007acc;
  box-shadow: 0 0 0 3px rgba(0, 122, 204, 0.1);
}
.contact input[type=text]::placeholder,
.contact input[type=email]::placeholder,
.contact textarea::placeholder {
  color: #666;
  opacity: 1;
}
.contact textarea {
  min-height: 120px;
  resize: vertical;
}
.contact input[type=submit] {
  background-color: #007acc;
  color: white;
  border: none;
  padding: 1rem 2rem;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: background-color 0.3s ease, transform 0.2s ease;
  max-width: 200px;
}
.contact input[type=submit]:hover {
  background-color: #005999;
  transform: translateY(-2px);
}
.contact input[type=submit]:active {
  transform: translateY(0);
}
.contact p[hidden] {
  display: none !important;
}
.contact .popover {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: white;
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  max-width: 400px;
  text-align: center;
  display: none;
  z-index: 1000;
}
.contact .popover.show {
  display: block;
}
.contact .popover p {
  margin: 0 0 1.5rem 0;
  color: #333;
  font-size: 1.1rem;
}
.contact .popover .popover-okay {
  background-color: #28a745;
  color: white;
  padding: 0.8rem 1.5rem;
  border-radius: 6px;
  cursor: pointer;
  display: inline-block;
  transition: background-color 0.3s ease;
}
.contact .popover .popover-okay:hover {
  background-color: #218838;
}
@media (max-width: 768px) {
  .contact {
    padding: 1rem;
  }
  .contact input[type=text],
  .contact input[type=email],
  .contact textarea {
    max-width: 100%;
  }
  .contact input[type=submit] {
    max-width: 100%;
  }
}

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