/* CSS is how you can add style to your website, such as colors, fonts, and positioning of your
   HTML content. To learn how to do something, just try searching Google for questions like
   "how to change link color." */

html {
  scroll-behavior: smooth;
}

.body-light {
  background-color: white;
  color: black;
  font-family: Garamond, serif;
}

.body-dark {
  background-color: black;
  color: white;
  font-family: Garamond, serif;
}


/* DIV CONTAINERS */
.centered-column {
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  /* Shorthand: margin: 0 auto; */
}

.head-navigation-container {
  max-width: 700px;
  min-height: 50px;
  margin-left: auto;
  margin-right: auto;
  /* Shorthand: margin: 0 auto; */
}

.foot-navigation-container {
  max-width: 700px;
  min-height: 200px;
  margin-left: auto;
  margin-right: auto;
  /* Shorthand: margin: 0 auto; */
}

.footnote-container {
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  /* Shorthand: margin: 0 auto; */
}

.hr-body-divider {
  border: none;          /* Remove default border */
  height: 1px;           /* Set thickness */
  background-color: #808080; /* Set color */
  margin: 20px 0;        /* Space above and below */
}


/* PARAGRAPH CLASSES */
.heading-1 {
  text-align: center;
  font-size: 52px;
  line-height: 1.38;
  font-weight: bold;
}

.heading-2 {
  text-align: center;
  font-size: 36px;
  line-height: 1.38;
  font-weight: bold;
}

.heading-3 {
  text-align: center;
  font-size: 28px;
  line-height: 1.38;
  font-weight: bold;
}

.heading-byline {
  text-align: center;
  font-size: 22px;
  line-height: 1.38;
  font-style: italic;
}

.heading-separator {
  text-align: center;
  font-size: 12px;
  line-height: 1.0;
}

.footer-dateline {
  text-align: center;
  font-size: 22px;
  line-height: 1.38;
  font-style: normal;
  color: #a09a92;
}

.body-para-centered {
  text-align: center;
  font-size: 22px;
  line-height: 1.38;
  color: #f0eae2;
  /* margin-bottom: -5px; */
}

.body-para-1 {
  text-align: left;
  font-size: 22px;
  line-height: 1.38;
  font-style: normal;
  color: #f0eae2;
  /* margin-bottom: -5px; */
}

.body-para-2 {
  text-align: left;
  font-size: 22px;
  line-height: 1.38;
  font-style: normal;
  text-indent: 40px;
  color: #f0eae2;
  /* margin-bottom: -5px; */
}

.body-para-1 + .body-para-2 {
  margin-top: -4px;
}

.body-para-2 + .body-para-2 {
  margin-top: -4px;
}

.body-footnote-1 {
  text-align: left;
  font-size: 18px;
  font-style: normal;
  color: #f0eae2;
  /* margin-bottom: -5px; */
}


/* LIST ITEMS */
.body-list-item-1  {
  text-align: left;
  font-size: 22px;
  font-style: normal;
  color: #f0eae2;
}


/* NAVIGATION STUFF */
.p-head-navigation {
  text-align: center;
  font-size: 22px;
  line-height: 1.38;
  font-style: normal;
}

.p-foot-navigation-center {
  text-align: center;
  font-size: 22px;
  line-height: 1.38;
  font-style: normal;
}

.p-foot-navigation-left {
  text-align: left;
  font-size: 22px;
  line-height: 1.38;
  font-style: normal;
}

.p-foot-navigation-right {
  text-align: right;
  font-size: 22px;
  line-height: 1.38;
  font-style: normal;
}


/* DROP CAPS */
.drop-cap {
  color: #f0eae2;
  font-family: Garamond, serif;
  float: left;
  font-size: 75px;
  line-height: 60px;
  padding-top: 4px;
  padding-right: 8px;
  padding-left: 3px;
}


/* GRID STUFF */
.grid-container {
  display: grid;
  /* Option A: Create 3 equal columns using fractional units (fr) */
  grid-template-columns: 1fr 1fr 1fr;
  
  /* Option B: Use the repeat() function for cleaner code */
  /* grid-template-columns: repeat(3, 1fr); */

  gap: 10px; /* Optional: Adds spacing between cells */
  /* padding: 10px; */
}

.grid-item {
  /* background-color: #f0f0f0; */
  /* border: 1px solid #ccc; */
  padding: 10px;
  text-align: center;
}



/* LINKS */
/* Unvisited link */
a:link {
  color: #ff0000;
  text-decoration: underline;
}

/* Visited link */
a:visited {
  color: #cc0040;
  text-decoration: underline;
}

/* Mouse over link */
a:hover {
  color: #ff4040;
  text-decoration: underline;
}

/* Selected/Clicked link */
a:active {
  color: #ffa040;
  text-decoration: underline;
}

