/*
COLORS:

#eef8f5 (bg)
#8ec1ba (header)
#593c8f (nav)
#332249 (text)

PADDING/MARGIN:
0.2rem 0.4rem 0.8rem 1.2rem 1.6rem 2.4rem 3.6rem 4.8rem

FONT SIZE: 
1.6rem 2rem 3.6rem 4.8rem

border-radius: 1.6rem;
box-shadow: 0px 1.2rem 1.2rem #33224994;
*/

/* REGULAR CSS */

html {
  font-size: 100%;
}

* {
  font-size: 1.6rem;
  line-height: 2.4rem;
  box-sizing: border-box;
}

header {
  padding: 1.2rem;
  margin: 1.2rem;
  background-color: #8ec1ba;
  display: flex;
  /* align-items: center; */
  justify-content: space-between;
  border-radius: 1.6rem;
}

body {
  font-family: "Varela Round", sans-serif;
  background-color: #eef8f5;
  color: #332249;
  margin: 0;
  display: grid;
  grid-template: 12rem 1fr auto / 100%;
  min-height: 100vh;
}

main {
  margin: 0 8px;
}

.slideshow_main {
  width: calc(100% - 16px);
}

h1 {
  font-family: "Great Vibes", cursive;
  font-size: 4.8rem;
  text-align: center;
  text-shadow: 0px 1.2rem 1.2rem #8ec1ba94;
  margin-bottom: 3.6rem;
}

h2 {
  font-family: "Great Vibes", cursive;
  font-size: 3.6rem;
  text-align: center;
  color: #8ec1ba;
  padding: 1.2rem;
  margin: auto;
  width: 60%;
  border-radius: 1.6rem;
  line-height: 4.8rem;
}

h3,
h3 *,
.verse-reflection ul li {
  font-size: 2rem;
  font-weight: normal;
  line-height: 3.6rem;
}

a {
  color: #332249;
}

nav {
  background-color: #593c8f;
  color: #eef8f5;
  text-decoration: none;
  margin: 0.4rem;
  border-radius: 1.6rem;
  transition: none 0.5s;

  display: flex;
  flex-direction: column;
  z-index: 99;
}

.menu_icon {
  z-index: 5;
  padding: 1.2rem;
  background-origin: content-box;
  box-sizing: content-box;
  width: 4rem;
  min-height: 4rem;
  height: auto;
  border-radius: 1.6rem;
  background-color: #593c8f;
  background-image: url(images/menu_icon_white.png);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  transition: all 0.5s;
}

nav:hover {
  background-color: #eef8f5;
}

.menu_icon:hover {
  background-color: #eef8f5;
  background-image: url(images/menu_icon.png);
  cursor: pointer;
}

.hidden,
.hidden * {
  /* display: none; */
  opacity: 0;
  z-index: 0;
  pointer-events: none;
}

.nav_links {
  position: absolute;
  right: 2.4rem;
  top: 9rem;
  padding: 0.4rem;
  margin: 0;
  display: flex;
  flex-direction: column;
  border-radius: 1.6rem;
  background-color: #593c8f;
  z-index: 10;
}

nav a {
  /* display: none; */
  /* float: right; */
  background-color: #593c8f;
  color: #eef8f5;
  text-decoration: none;
  padding: 0.4rem;
  margin: 0;
  border-radius: 0;
  transition: all 0.5s;
}

nav a:first-child {
  border-radius: 1.2rem 1.2rem 0 0;
}

nav a:last-child {
  border-radius: 0 0 1.2rem 1.2rem;
}

nav a:hover {
  background-color: #eef8f5;
  color: #332249;
  transition: all 0.5s;
}

/*  */

dt,
summary {
  text-align: center;
  margin-top: 3.6rem;
  font-weight: bold;
  margin-bottom: 1.2rem;
}

dd,
details p {
  /* margin: 1.2rem 7.2rem; */
  width: 60%;
  margin: auto;
}

summary::marker {
  content: "→ ";
}

details[open] summary::marker {
  content: "↓ ";
}

footer {
  background-color: #8ec1ba;
  text-align: center;
  padding: 1.2rem;
  border-top: solid 0.2rem #332249;
  margin-top: 0;
  position: relative;
}

.shadow-box {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  max-width: 90%;
  margin: 0 auto;
}

.vertical_nav {
  list-style-type: none;
  text-align: center;
  padding: 4.8rem 0;
  margin: 0;
  display: static;
  border-bottom: solid #332249 0.2rem;
}

.vertical_nav li {
  margin-bottom: 0.2rem;
}

.vertical_nav a {
  font-size: 2.4rem;
  text-decoration: none;
  border-radius: 1.6rem;
  padding: 0.4rem 2.4rem;
  transition: all 0.5s;
  line-height: 3.6rem;
}

.vertical_nav a:hover {
  background-color: #eef8f5;
  border-radius: 1.6rem;
  transition: all 0.5s;
}

.dedication {
  margin-top: 4.8rem;
}

.gradient-bg {
  background-color: #eef8f5;
  margin: 0;
  padding-bottom: 2.4rem;
}

.topTitle {
  background-color: #8ec1ba;
  text-shadow: 0px 1.2rem 1.2rem #eef8f594;
  align-self: flex-start;
}

blockquote {
  padding: 2.4rem;
  padding-bottom: 0;
  border-radius: 1.6rem;
}

.quoteAuthor {
  font-weight: 600;
  font-style: italic;
  text-align: right;
  border-radius: 1.6rem 1.6rem 0 0;
  padding-right: 2.4rem;
}

.category {
  background-size: cover;
  border-radius: 1.6rem;
  max-height: 24rem;
  overflow-y: scroll;
  background-position: center;
  margin: 4.8rem 2.4rem;
}

.category h2 {
  text-align: center;
  color: #332249;
}

.category * {
  background-color: #eef8f5b4;
}

.img-19 {
  background-image: url(images/slideshow-images/19.jpg);
}

.img-45 {
  background-image: url(images/slideshow-images/45.jpg);
}

.img-78 {
  background-image: url(images/slideshow-images/78.jpg);
}

.img-90 {
  background-image: url(images/slideshow-images/90.jpg);
}

.img-92 {
  background-image: url(images/slideshow-images/92.jpg);
}

.spotify {
  background-color: #8ec1ba;
}

.play-music-h2 {
  margin-bottom: 3.6rem;
  max-width: 100%;
  min-width: 80%;
}

.flex {
  flex-direction: column;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 2.4rem;
  width: 100%;
}

.bg-audios {
  margin: 0;
  min-width: 20%;
  padding: 0;
}

.bg-audios li {
  /* font-size: 3rem; */
  font-style: italic;
  text-transform: lowercase;
  list-style: none;
  cursor: pointer;
  /* line-height: 4.8rem; */
  text-align: center;
}

.bg-audios li:hover {
  color: #593c8f;
  text-decoration: underline;
  text-decoration-thickness: 0.2rem;
}

audio {
  /* display: block; */
  padding: 1.6rem;
  border-radius: 1.6rem;
  background-color: #8ec1ba;
  transform: translateY(40%);
}

#dailyVersesWrapper {
  background-color: #8ec1ba;
  padding: 3.6rem;
  border-radius: 1.6rem;
  box-shadow: 0px 1.2rem 1.2rem #33224994;
  margin: 3.6rem;
}

.dailyVerses {
  font-size: 2.4rem;
}

.dailyVerses.bibleVerse a {
  font-size: 2.4rem;
  font-weight: bold;
}

.verse-reflection {
  margin: 3.6rem;
}

/* IMAGE */

.slideshow-image {
  width: 100%;
  height: 100vh;
  margin-bottom: 2.4rem;
  overflow-x: hidden;
  background-size: cover;
  cursor: none;
  border-radius: 1.6rem;
  box-shadow: 0px 1.2rem 1.2rem #33224994;
  background-image:
    url(images/slideshow-images/1.jpg),
    linear-gradient(to bottom, #eef8f5, #8ec1ba);
  background-position: center;
  background-color: #8ec1ba;
  z-index: 1;
}

.next_image {
  display: block;
  width: inherit;
  height: 100vh;
  overflow-x: hidden;
  background-size: cover;
  cursor: none;
  border-radius: 1.6rem;
  box-shadow: none;
  margin-bottom: 2.4rem;
  background-image: url(images/slideshow-images/1.jpg);
  background-position: center;
  transition: all 1s;
  transform: translateY(calc(-100% - 2.4rem + 1px));
  position: absolute;
}

/* about */

.about_img {
  background-image: url(images/about_pfp.jpg);
  background-size: contain;
  background-repeat: no-repeat;
  min-height: 16rem;
  min-width: 16rem;
  float: left;
  margin: 1.2rem 1.2rem 0 0;
  border-radius: 1.6rem;
}

.transcript {
  text-align: left;
  align-self: flex-start;
  margin-left: 20%;
}

table {
  border-radius: 1.6rem;
  background-color: #8ec1ba;
  background-image: linear-gradient(to right, #8ec1ba, #332249);
  border-collapse: seperate;
  border-spacing: 0.6rem;
}

table * {
  border-radius: 1.6rem;
  font-size: 1.2rem;
  text-align: left;
}

caption {
  text-align: center;
  font-weight: bold;
  caption-side: top;
}

th,
td {
  transition: 0.1s all ease-in;
  padding: 4px;
  background-color: #eef8f5;
  box-shadow: 0px 0.2rem 0.6rem #33224957;
}

th:hover,
td:hover {
  transform: translateY(-0.2rem);
  box-shadow: 0px 0.2rem 0.6rem #33224994;
}

form {
  width: 100%;
}

#prayerRequestBox,
#requestersName {
  border-radius: 1.6rem;
  box-shadow: 0px 1.2rem 1.2rem #3322492c;
  width: 100%;
  margin: 0.8rem auto;
  padding: 0.6rem;
  display: block;
  font-family: "Varela Round", sans-serif;
  border: solid #332249 0.2rem;
}

#requestersName {
  margin: 0.8rem auto 1.6rem auto;
  width: 60%;
}

#prayerRequestSubmit {
  background-color: #593c8f;
  color: #eef8f5;
  border: none;
  border-radius: 1.6rem;
  box-shadow: 0px 1.2rem 1.2rem #33224994;
  padding: 0.6rem;
  width: 60%;
  margin-top: 1.2rem;
  transform: translateY(-0.4rem);
  transition: all 0.5s;
}

#prayerRequestSubmit:hover {
  box-shadow: 0px 0.6rem 1.2rem #33224994;
  transform: translateY(0);
  background-color: #eef8f5;
  color: #332249;
}
