@charset "UTF-8";
/* CSS Document */

html,
body {
  height: 100%;
}

body {
  font-family: "Palatino Linotype", Palatino, "Times New Roman", serif;
  margin: 0;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  position: relative;
  background: white;
}

body::before {
  content: "";
  position: fixed;
  top: 0;
  left: max(0px, calc((100vw - 1200px) / 2));
  width: 200px;
  height: 100vh;

  background:
    repeating-linear-gradient(
      45deg,
      rgba(255,255,255,0.06),
      rgba(255,255,255,0.06) 8px,
      rgba(0,0,0,0.06) 8px,
      rgba(0,0,0,0.06) 16px
    ),
    linear-gradient(
      180deg,
      #2b2a66,
      #800080
    );

  border-radius: 0 20px 20px 0;
  box-shadow: inset -2px 0 6px rgba(255,255,255,0.15);
  z-index: -1;
}
/* Section dividers */

.gold-line {
  width: 100%;
  height: 1px;
  background: #EFC373;
  margin: 25px 0;
}

hr {
   width: 100%;
  height: 1px;
  background: #EFC373;
  margin: 25px 0;
	border: none;      /* Removes the default inset border/shadow */

}

/* Header */

.site-header {
  max-width: 1200px;
  margin: auto;
  padding: 0;
  border-bottom: 3px solid #EFC373;
}

.site-banner {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

.hero-banner {
  background-image: url("https://www.spiritunfold.com/BrightPurpleMasthead.jpg");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  height: 120px;
}

/* Page Layout */

.page-layout {
  display: flex;
  max-width: 1200px;
  margin: auto;
  flex: 1;
  align-items: stretch;
}

.page-heading {
  background-color: #f2e6f7;
  font-size: clamp(22px, 2.8vw, 28px);
  font-weight: normal;
  letter-spacing: .3px;
  padding: 20px 25px;
  margin: 20px 0;
  border-radius: 4px;
  display: inline-block;
}

/* Sidebar Navigation */

.side-nav {
  width: 200px;
  font-family: Arial, Helvetica, sans-serif;
  padding: 20px 10px;
  box-sizing: border-box;
}

.side-nav ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.side-nav li {
  margin-bottom: 6px;
}

.side-nav a {
  display: block;
  padding: 8px 10px;
  background: #f2e6f7;
  color: #6b2ca1;
  text-decoration: none;
  font-weight: bold;
  border-radius: 4px;
}

.side-nav a.active {
  background: #7a3fa0;
  color: white;
}

.side-nav a:hover {
  background: #e2baea;
}

/* Content Area */

.content {
  flex: 1;
  padding: 30px;
  background: white;
}

/* small image left section */

.smallimage-intro {
  display: flex;
  gap: 20px;
  align-items: center;
}

.smallimage-intro img {
  width: 140px;
}

/* Footer */

.site-footer {
  text-align: center;
  padding: 30px;
  background: #eee;
  margin-top: 40px;
}

/* Accessibility */

.visually-hidden {
  position: absolute;
  left: -9999px;
}

/* Tablet and down */
@media (max-width: 1200px) {
  .page-layout {
    max-width: 100%;
    margin: 0;
  }

  .site-header {
    max-width: 100%;
  }

  body::before {
    left: 0;
    width: 200px;
    border-radius: 0 20px 20px 0;
  }
}

@media (max-width: 768px) {

  /* Remove the global stripe */
  body::before {
    display: none;
  }

  .page-layout {
    flex-direction: column;
  }

  /* Turn nav into full-width colored band */
  .side-nav {
    width: 100%;
    padding: 20px;
    background: linear-gradient(
      180deg,
      #2b2a66,
      #800080,
      #d64fd6
    );
  }

  /* Make links readable on dark background */
  .side-nav {
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}
	.side-nav a {
    background: rgba(255,255,255,0.9);
    color: #6b2ca1;
  }

  .side-nav a.active {
    background: #ffffff;
    color: #2b2a66;
  }

  .side-nav a:hover {
    background: #f2e6f7;
  }

  .content {
    padding: 20px;
  }
}