/* Import Work Sans font */
@import url('https://fonts.googleapis.com/css2?family=Work+Sans:wght@100;400;500;700&display=swap');

/* Global font and base styles */
body {
  font-family: 'Work Sans', sans-serif;
  font-size: 1rem;       /* ~16px */
  font-weight: 500;      /* Regular */
  line-height: 1.6;
  background: #fdfdfd;
  margin: 0;
  padding: 0;
  color: #333;
  line-height: 1.6;
}

h1, h2, h3, h4, h5, h6 {
  font-size: 1rem;       /* same as body */
  font-weight: 500;      /* Medium weight */
  margin-top: 1.5em;
  margin-bottom: 0.5em;
}

/* Optional: a slightly stronger heading weight if needed */
h2 {
  font-weight: 500;      /* Semi-bold */
  letter-spacing: 0.02em;
}

/* Paragraphs and lists stay at regular weight */
p, li {
  font-weight: 400;
  font-size: 1rem;
}

/* Buttons / links: use medium for clarity */
.button, button, a {
  font-weight: 400;
  font-size: 0.95rem;
}

* {
  box-sizing: border-box;
}

/* Header Navigation */
.site-header {
  background: #fff;
  padding: 10px 20px;
  border-bottom: 1px solid #3a3a3a;
}

.main-nav {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 15px;
}

.main-nav a {
  text-decoration: none;
  color: #00FF00;
  font-weight: 500;
  font-size: 1rem;
}

/* Page Layout */
.layout {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
  padding: 24px; /* adds edge space */
  
}

.page-wrapper {
  padding: 24px;
}

  /* Base style for all content modules */
.module {
  background-color: #e0f7fa; /* light cyan */
  padding: 15px;
  font-family: 'Work Sans', sans-serif;
  border-radius: 6px;
  margin-bottom: 20px;
}


h2 {
  margin-top: 0;
  font-size: 1.25rem;
  font-weight: 500;
}

p, li {
  font-weight: 500;
  font-size: 1rem;
}

/* Images in Fragments Section */
.image-set {
  display: flex;
  gap: 10px;
  margin-bottom: 10px;
}

.image-box {
  background: #eee;
  padding: 20px;
  flex: 1;
  text-align: center;
  font-weight: 500;
}

/* Buttons and Links */
.button, button {
  display: inline-block;
  background: none;
  border: .3px solid #000;
  padding: 6px 12px;
  font-family: 'Work Sans', sans-serif;
  font-size: 0.95rem;
  font-weight: 400;
  text-decoration: none;
  cursor: pointer;
  margin: 5px 0;
  color: #111;
}

.button:hover, button:hover {
  background-color: #f0f0f0;
}

/* Footnote reveal */
.footnote {
  margin-top: 10px;
  padding: 10px;
  background: #f0f0f0;
  border: 1px dotted #888;
  font-size: 0.9rem;
  font-weight: 500;
}

.hidden {
  display: none;
}

/* List styling */
ul {
  padding-left: 1.2rem;
}

ul li {
  margin-bottom: 5px;
}

/* Responsive tweaks */
@media (max-width: 600px) {
  .main-nav {
    flex-direction: column;
    align-items: flex-start;
  }

  .image-set {
    flex-direction: column;
  }
}


