/* style.css */
@import url("https://fonts.googleapis.com/css2?family=Libre+Baskerville:ital,wght@0,400;0,700;1,400&family=Source+Sans+3:wght@400;500;600&display=swap");

:root {
  --text-main: #111;
  --text-muted: #555;
  --border-light: #e5e5e5;
  --accent: #2a2a2a;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Source Sans 3", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  color: var(--text-main);
  background: #ffffff;
  line-height: 1.6;
}

/* Background image treatment */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  background-image: url("https://img.goodfon.com/original/1920x1280/b/d7/philadelphia-schuylkill-river-filadelfiia-reka-neboskreby-zd.jpg");
  background-size: cover;
  background-position: center;
  opacity: 0.06;
  pointer-events: none;
  z-index: -1;
}

header {
  max-width: 800px;
  margin: 0 auto;
  padding: 3rem 1rem 1rem;
  text-align: left;
}

header h1 {
  margin: 0;
  font-family: "Libre Baskerville", Georgia, "Times New Roman", serif;
  font-size: 2.6rem;
  font-weight: 400;
  letter-spacing: 0.5px;
  text-align: center;
}

nav {
  border-top: 1px solid var(--border-light);
  border-bottom: 1px solid var(--border-light);
  margin-top: 1rem;
}

.nav-inner {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  justify-content: flex-start;
  gap: 3rem;
  padding: 0.75rem 1rem;
}

nav a {
  text-decoration: none;
  color: var(--accent);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

nav a:hover {
  text-decoration: underline;
}

main {
  max-width: 800px;
  margin: 0 auto;
  padding: 1rem 1rem 2rem;
    font-size: 1.05rem;
}

/* Index / Section Specifics */
section h2 {
  font-size: 1.15rem;
  font-weight: 150;
  margin-bottom: 0.5rem;
}

section p {
  margin-bottom: 1.25rem;
}

.contact-info {
  margin-top: 1.5rem;
}

/* Meetings List Specifics */
/* Meeting List */

ul.meetings {
  list-style-type: disc; /* Use the default dot */
  padding-left: 1.5rem;
  margin: 0;
}

ul.meetings li {
  margin-bottom: 0;
}

/* People List Specifics */
ul.people {
  list-style: none;
  padding-left: 1.5rem;
  margin: 0;
}

ul.people li {
  margin-bottom: 0;
}

ul.people a {
  color: #1a1a1a;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 2px;
}

ul.people a:hover {
  text-decoration-thickness: 2px;
}

footer {
  max-width: 800px;
  margin: 0 auto;
  
  border-top: 1px solid var(--border-light);
  padding: 1rem 1.5rem;
  text-align: center;
  font-size: 0.85rem;
  color: var(--text-muted);
}