:root {
  --color-bg: #fafaf9;
  --color-text: #1c1c1e;
  --color-muted: #6b6b6f;
  --color-surface: rgba(0, 0, 0, 0.04);
  --color-border: rgba(0, 0, 0, 0.1);
}

@media (prefers-color-scheme: dark) {
  :root {
    --color-bg: #17171a;
    --color-text: #eceae8;
    --color-muted: #a3a3a8;
    --color-surface: rgba(255, 255, 255, 0.06);
    --color-border: rgba(255, 255, 255, 0.1);
  }
}
:root[data-theme=light] {
  --color-bg: #fafaf9;
  --color-text: #1c1c1e;
  --color-muted: #6b6b6f;
  --color-surface: rgba(0, 0, 0, 0.04);
  --color-border: rgba(0, 0, 0, 0.1);
}

:root[data-theme=dark] {
  --color-bg: #17171a;
  --color-text: #eceae8;
  --color-muted: #a3a3a8;
  --color-surface: rgba(255, 255, 255, 0.06);
  --color-border: rgba(255, 255, 255, 0.1);
}

html {
  box-sizing: border-box;
  height: 100%;
}

*,
*::before,
*::after {
  box-sizing: inherit;
}

body {
  display: flex;
  flex-direction: column;
  min-height: 100%;
  margin: 0;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  padding-top: 68px;
  background-color: var(--color-bg);
  color: var(--color-text);
  transition: background-color 0.2s ease, color 0.2s ease;
}
@media (max-width: 768px) {
  body {
    padding-top: 60px;
  }
}

.site-main {
  flex: 1 0 auto;
  padding-bottom: 3rem;
}

a {
  text-decoration: none;
}

.page-content {
  max-width: 90ch;
  margin: 0 auto;
  padding: 0 1.5rem;
}

article {
  max-width: 90ch;
  margin: 0 auto;
  padding: 0 1.5rem;
}

article img {
  display: block;
  max-width: 100%;
  height: auto;
  margin: 1.5rem auto;
  border-radius: 8px;
}

article p {
  font-family: Garamond;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(14, 14, 16, 0.78);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(16px) saturate(150%);
  -webkit-backdrop-filter: blur(16px) saturate(150%);
}

.site-header__bar {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  column-gap: 1.5rem;
  height: 68px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}
@media (max-width: 768px) {
  .site-header__bar {
    grid-template-columns: 1fr auto;
    height: 60px;
  }
}

.site-title {
  font-family: "Arial Black", "Arial Bold", "Helvetica Neue", Impact, sans-serif;
  font-weight: 900;
  font-size: 1.4rem;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  white-space: nowrap;
  display: inline-flex;
  gap: 0.4em;
}

.site-title__real {
  color: #b3242b;
}

.site-title__atheism {
  color: #eceae8;
}

.site-nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  grid-column: 2/4;
  gap: 2rem;
}

.site-nav__list {
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  margin: 0;
  padding: 0;
  flex: 1;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

.site-nav__list a {
  color: #eceae8;
  font-size: 0.95rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  transition: color 0.15s ease;
}
.site-nav__list a:hover {
  color: #fff;
}
.site-nav__list a.current {
  color: #f0a860;
  border-bottom: 2px solid #f0a860;
  padding-bottom: 0.2rem;
}

.donate-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: #f0a860;
  color: #fff;
  font-weight: 700;
  font-size: 0.95rem;
  padding: 0.5rem 1.1rem;
  border-radius: 999px;
  white-space: nowrap;
  transition: background 0.15s ease, transform 0.15s ease;
}
.donate-btn:hover {
  background: #e7973f;
  transform: translateY(-1px);
}

.donate-btn__icon {
  color: #fff;
  font-weight: 700;
  text-shadow: 0 1px 1px rgba(0, 0, 0, 0.35), 0 -1px 0 rgba(255, 255, 255, 0.45);
}

.nav-toggle-input {
  display: none;
}

.nav-toggle-btn {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 32px;
  height: 32px;
  cursor: pointer;
}
@media (max-width: 768px) {
  .nav-toggle-btn {
    display: flex;
  }
}

.nav-toggle-btn__bar {
  width: 22px;
  height: 2px;
  background: #eceae8;
  border-radius: 2px;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.nav-toggle-input:checked ~ .nav-toggle-btn .nav-toggle-btn__bar:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav-toggle-input:checked ~ .nav-toggle-btn .nav-toggle-btn__bar:nth-child(2) {
  opacity: 0;
}

.nav-toggle-input:checked ~ .nav-toggle-btn .nav-toggle-btn__bar:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

@media (max-width: 768px) {
  .site-nav {
    position: absolute;
    top: 60px;
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: rgba(14, 14, 16, 0.78);
    backdrop-filter: blur(16px) saturate(150%);
    -webkit-backdrop-filter: blur(16px) saturate(150%);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.25s ease;
  }
  .nav-toggle-input:checked ~ .site-nav {
    max-height: 400px;
  }
  .site-nav__list {
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 0.5rem 1.5rem;
  }
  .site-nav__list a {
    display: block;
    padding: 0.75rem 0;
  }
  .site-nav__list a.current {
    border-bottom: none;
    border-left: 2px solid #f0a860;
    padding-left: 0.75rem;
  }
  .donate-btn {
    margin: 0 1.5rem 1.5rem;
    justify-content: center;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 10px;
    padding-top: 1rem;
  }
}
.site-footer {
  flex-shrink: 0;
  border-top: 1px solid var(--color-border);
}

.site-footer__bar {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.75rem 2rem;
  max-width: 1200px;
  margin: 0 auto;
  padding: 1.5rem;
  font-size: 0.85rem;
  color: var(--color-muted);
}
@media (max-width: 768px) {
  .site-footer__bar {
    justify-content: center;
    text-align: center;
  }
}

.site-footer__copyright {
  margin: 0;
  white-space: nowrap;
}

.site-footer__legal,
.site-footer__social {
  list-style: none;
  display: flex;
  gap: 1.25rem;
  margin: 0;
  padding: 0;
}
.site-footer__legal a,
.site-footer__social a {
  color: var(--color-muted);
  transition: color 0.15s ease;
}
.site-footer__legal a:hover,
.site-footer__social a:hover {
  color: #f0a860;
}

.theme-toggle {
  display: inline-flex;
  align-items: center;
  gap: 0.15rem;
  border: 1px solid var(--color-border);
  border-radius: 999px;
  padding: 0.2rem;
}

.theme-toggle__option {
  appearance: none;
  border: none;
  background: transparent;
  color: var(--color-muted);
  font-size: 0.9rem;
  line-height: 1;
  width: 1.8rem;
  height: 1.8rem;
  border-radius: 50%;
  cursor: pointer;
  transition: background 0.15s ease, color 0.15s ease;
}
.theme-toggle__option:hover {
  color: var(--color-text);
}
.theme-toggle__option.is-active {
  background: #f0a860;
  color: #fff;
}

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