@charset "utf-8";
/* CSS Document for Ancillary Sites */

/* ============================================================
   CUSTOM PROPERTIES
   Change colors/fonts for a page by overriding these in :root
   or by applying a theme class to <body>.
   ============================================================ */
:root {
  /* Typography */
  --font-serif: 'Palatino Linotype', 'Book Antiqua', Palatino, serif;
  --font-sans:  "HCo Gotham", "Helvetica", Arial, "Helvetica Neue",
                -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
                "Noto Sans", sans-serif;

  /* Brand colors — defaults; override per-theme below */
  --color-primary:     #222222;   /* h1, header-intro */
  --color-text:        #222222;   /* headings, body */
  --color-link:        #333399;
  --color-link-hover:  #000099;
  --color-bg:          #ffffff;

  /* Button chrome */
  --color-btn-text:    #757575;
  --color-btn-bg:      #ffffff;
  --color-btn-bg-hover:#F3F3F3;
  --color-btn-border-light: #dfdede;
  --color-btn-border-dark:  #bbbbbb;

  /* Drop shadow */
  --shadow-img: -10px 10px 8px 0 rgba(0, 0, 0, 0.15);
}

/* ============================================================
   THEME CLASSES
   Add one of these to <body class="theme-blue"> (etc.) to
   recolor a page without touching any other markup.
   ============================================================ */
.theme-blue  { --color-primary: #3f4f7a; }
.theme-green { --color-primary: #2e6b4f; }
.theme-red   { --color-primary: #d11212; }
/* Add more themes here as needed */


/* ============================================================
   BASE
   ============================================================ */
body {
  background-color: var(--color-bg);
  font-family: var(--font-serif);
  margin: 0;
}

a              { color: var(--color-link); text-decoration: none; }
a:hover        { color: var(--color-link-hover); text-decoration: underline; }
img            { pointer-events: none; }

hr {
  width: 80%;
  margin-top: 2em;
  margin-bottom: 2em;
  border: none;
  border-top: 1px solid #cccccc;
}


/* ============================================================
   LAYOUT
   ============================================================ */
div.large-container {
  margin: 35px;
}
div.large-container::after {
  content: "";
  display: table;
  clear: both;
}

/* Sidebar (left column) */
div.sidebar {
  background-color: var(--color-bg);
  float: left;
  width: 20%;
  font-size: .75em;
  text-align: center;
  padding-top: 20px;
}
div.sidebar img {
  width: 100%;
  display: block;
  margin: 0 auto 20px;
}
div.sidebar p {
  line-height: 100%;
  padding: 3px;
  text-align: center;
}

/* Main content (right column) */
main {
  float: left;
  width: 75%;
  padding-top: 10px;
  margin-left: 5%;
}


/* ============================================================
   IMAGES
   ============================================================ */
.img-dropshadow {
  -webkit-box-shadow: var(--shadow-img);
          box-shadow: var(--shadow-img);
}


/* ============================================================
   BUTTONS (sidebar nav)
   ============================================================ */
div.buttons {
  width: 80%;
  text-align: center;
  font-family: var(--font-sans);
  font-weight: 300;
  padding: 5px;
  background-color: var(--color-btn-bg);
  border-left:   2px solid var(--color-btn-border-light);
  border-top:    2px solid var(--color-btn-border-light);
  border-bottom: 2px solid var(--color-btn-border-dark);
  border-right:  2px solid var(--color-btn-border-dark);
  margin: auto;
  color: var(--color-btn-text);
}
div.buttons:hover   { background-color: var(--color-btn-bg-hover); }
div.buttons a       { text-decoration: none; }


/* ============================================================
   HEADINGS & PAGE HEADER
   ============================================================ */
h1, h2, h3, h4, h5, h6,
.header-intro,
.header-close {
  font-family: var(--font-serif);
  color: var(--color-text);
}

span.header-intro {
  font-size: 20px;
  letter-spacing: .05em;
  font-weight: 500;
  color: var(--color-primary);   /* picks up theme color automatically */
  margin-bottom: .25em;
  display: block;
}
h1 {
  font-size: 30px;
  letter-spacing: .1em;
  font-weight: 500;
  color: var(--color-primary);   /* picks up theme color automatically */
  margin-top: .25em;
  margin-bottom: 0;
}

h2 {
  font-size: 20px;
  letter-spacing: .05em;
  font-weight: 500;
  color: var(--color-primary);
  margin-top: 0;
}

span.header-close {
  font-size: 18px;
  letter-spacing: .05em;
  font-weight: 500;
  margin-top: .125em;
  margin-bottom: .25em;
  display: block;
}

h3 {
  font-size: 18px;
  letter-spacing: .05em;
  font-weight: 500;
  margin-top: -15px;
}
h4 {
  font-size: 14px;
  font-weight: 300;
  margin-top: -10px;
}
h6.chapter {
  font-size: 14px;
  letter-spacing: .1em;
  line-height: 100%;
  font-weight: 700;
}


/* ============================================================
   CONTENT AREAS
   ============================================================ */

/* Intro block (top of main) */
div.intro {
  background-color: var(--color-bg);
  width: 100%;
  margin-bottom: 50px;
}
div.intro p {
  font-size: 95%;
  padding-right: 20px;
}

/* Text / body-copy block */
div.text {
  background-color: var(--color-bg);
  width: 95%;
  margin-left: 5%;
}
div.text p  { font-size: 95%; padding-left: 20px; padding-right: 20px; }
div.text li { font-size: 95%; padding-right: 20px; padding-bottom: 10px; }

/* Standalone paragraphs that carry class="text" directly on <p> */
p.text { font-size: 95%; padding-left: 20px; padding-right: 20px; }

/* ============================================================
   Collapsable Menus
   ============================================================ */

summary {
  font-size: 20px; 
  letter-spacing: .05em; 
  font-weight: 500; 
  color: var(--color-primary);   /* picks up theme color automatically */
  padding-top: 10px; 
  padding-bottom: 10px;
  cursor: pointer;}
	
		
details {
  margin-left:20%;
  margin-right:20%; 
  text-align: left; 
  padding-bottom: 5px;
  padding-left: 1em; 
  border-radius: 6px; 
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}
	
	details/*:first-of-type*/ summary::marker,
	:is(::-webkit-details-marker) {
  	content: " + ";
  	font-weight: bold;
}

	detailsopen/*:first-of-type*/ summary::marker {
  	content: "− ";
	}

/* ============================================================
   AUDIO PLAYER
   ============================================================ */
.audiosamples {
  margin: 4em 20px 0;
  width: 100%;
}
.audio-container {
  margin: 1.5em 2em;
  text-align: center;
  width: 75%;
}
.audioPlayer {
  border-radius: 20px;
  margin: 0;
  width: 80%;
}


/* ============================================================
   FOOTER
   ============================================================ */
footer {
  text-align: center;
  padding-top: 60px;
  margin-left: 20%;
  margin-right: 20%;
}


/* ============================================================
   RESPONSIVE — small screens (≤ 992 px)
   ============================================================ */
@media screen and (max-width: 992px) {
  div.large-container { text-align: center; margin: 5px; }

  div.sidebar {
    width: 80%;
    text-align: center;
    margin-right: 10%;
    margin-left: 10%;
    float: none;
  }
  main {
    width: 80%;
    text-align: center;
    margin-right: 10%;
    margin-left: 10%;
    float: none;
  }

  .audiosamples .audio-container { text-align: center; }
  div.audio-container            { text-align: center; min-height: 3em; }

  div.buttons    { min-height: 1.75em; font-size: 3em; text-align: center; }

  div.intro p    { padding-left: 0; padding-right: 0; font-size: 1.5rem; }

  span.header-intro { font-size: 5rem; }
  h1                { font-size: 3rem; }
  span.header-close { font-size: 2rem; }
}
