/* 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." */

/*---------------------------------------------------------------------------------------------------------------------------------------------*/
/*---------------------------------------------------------------------------------------------------------------------------------------------*/
/*---------------------------------------------------------------------------------------------------------------------------------------------*/
/*-------------------------------------------------------------------nav panel-----------------------------------------------------------------*/
/*---------------------------------------------------------------------------------------------------------------------------------------------*/
/*---------------------------------------------------------------------------------------------------------------------------------------------*/
/*---------------------------------------------------------------------------------------------------------------------------------------------*/

#navPanel {
  display: flex;
  position: fixed;
  top: 0px;
  left: 0px;
  justify-content: center;
  align-items: center;
  width: 100%;
  text-align: center;
  background-color: #43281C;
  height:60px;
  z-index: 1000;
  font-family: "Playwrite DE Grund", cursive;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
}

.nav {
  padding: 0px;
  transition-duration: .5s;
  color: white;
  font-family: "Playwrite DE Grund", cursive;
  font-size: 24px;
  font-style: normal;
  text-decoration: none;
  margin: 0px;
}

.navLink {
  opacity: 0.8;
  transition-duration: .5s;
  color: #EDEDED;
  font-family: "Playwrite DE Grund", cursive;
  font-size: 24px;
  font-style: normal;
  text-decoration: none;
  position: relative;
}

.navLink:hover {
  opacity: 1;
  color: white;
}

.navLink::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 0;
  height: 2px;
  background: currentColor;
  transition: width 0.5s;
}

.navLink:hover::after {
  width: 100%;
}

.nav > li {  /*Navigation panel ul*/
  display: inline-block;  
}


/*---------------------------------------------------------------------------------------------------------------------------------------------*/
/*---------------------------------------------------------------------------------------------------------------------------------------------*/
/*---------------------------------------------------------------------------------------------------------------------------------------------*/
/*-------------------------------------------------------------------home page-----------------------------------------------------------------*/
/*---------------------------------------------------------------------------------------------------------------------------------------------*/
/*---------------------------------------------------------------------------------------------------------------------------------------------*/
/*---------------------------------------------------------------------------------------------------------------------------------------------*/
#landing {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.stickyDiv {
  position: sticky;
  top: calc(100vh - 100%);
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border-radius: 15px;
  padding: 30px;
  margin-top: 15px;
  color: black;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.3);
}

#card1 {
  background: linear-gradient(to bottom right, #C06E52, #FBF2C0);
}

#card2 {
  background: linear-gradient(to bottom left, #FBF2C0, #F96F5D);
}

#card3 {
  background: linear-gradient(to bottom right, #F96F5D, #C06E52);
}

#card4 {
  background: linear-gradient(to bottom left, #C06E52, #FBF2C0);
}

#card5 {
  background: linear-gradient(to bottom right, #FBF2C0, #F96F5D);
}

#card6 {
  background: linear-gradient(to bottom left, #F96F5D, #C06E52);
}

#lastImg {
  background-color: #48392A;
  position: sticky;
  top: calc(100vh - 100%);
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border-radius: 15px;
  padding: 30px;
  margin-top: 15px;
  color: black;
  width:120%;
  margin-left: -10%;
}

h1 {
  text-align: center;
}

.photo {
  width: 50%;
  margin: auto; 
  display: block; 
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.3);
}

.photoSection {
  min-height: 100vh;
}

#bodyText {
  margin-left: 20%;
  margin-right: 20%;
}

body {
  background-color: #48392A;
  text-align: left;
  color: white;
  margin: 0px;
  padding: 0px;
  font-family: "Playwrite DE Grund", cursive;
  font-weight: 400;
}

p, ul {
  font-family: "Quicksand", sans-serif;
  font-weight: 400;
  font-style: normal;
}


/*---------------------------------------------------------------------------------------------------------------------------------------------*/
/*---------------------------------------------------------------------------------------------------------------------------------------------*/
/*---------------------------------------------------------------------------------------------------------------------------------------------*/
/*-------------------------------------------------------------------The Teachings-------------------------------------------------------------*/
/*---------------------------------------------------------------------------------------------------------------------------------------------*/
/*---------------------------------------------------------------------------------------------------------------------------------------------*/
/*---------------------------------------------------------------------------------------------------------------------------------------------*/
.card {
  display: flex;
  color: black;
  border-radius: 15px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.3);
  background: linear-gradient(to bottom right, #C06E52, #FBF2C0);
  padding: 15px;
  padding-top: 50px;
  padding-bottom: 50px;
  margin-top: 50px;
  margin-bottom: 50px;
}

.leftCard {
  flex: 1;
}

.rightCard {
  flex: 1;
}

.videoWrapper {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  border-radius: 10px;
  overflow: hidden; /* makes border-radius clip the iframe corners */
}

.videoWrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}


/*---------------------------------------------------------------------------------------------------------------------------------------------*/
/*---------------------------------------------------------------------------------------------------------------------------------------------*/
/*---------------------------------------------------------------------------------------------------------------------------------------------*/
/*-------------------------------------------------------------------The Scrolls---------------------------------------------------------------*/
/*---------------------------------------------------------------------------------------------------------------------------------------------*/
/*---------------------------------------------------------------------------------------------------------------------------------------------*/
/*---------------------------------------------------------------------------------------------------------------------------------------------*/
.thumbnail {
  width: 75%;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.3);
}

.thumbnail:hover {
  filter: brightness(0.5) contrast(1.2);
}

#juggling {
  background: linear-gradient(to bottom right, #C06E52, #FBF2C0);
}

#hermetic {
  background: linear-gradient(to bottom left, #FBF2C0, #F96F5D);
}

#orlando {
  background: linear-gradient(to bottom right, #F96F5D, #C06E52);
}

#sumerian {
  background: linear-gradient(to bottom left, #C06E52, #FBF2C0);
}

#esoteric {
  background: linear-gradient(to bottom right, #FBF2C0, #F96F5D);
}


/*---------------------------------------------------------------------------------------------------------------------------------------------*/
/*---------------------------------------------------------------------------------------------------------------------------------------------*/
/*---------------------------------------------------------------------------------------------------------------------------------------------*/
/*-------------------------------------------------------------------visitor's page------------------------------------------------------------*/
/*---------------------------------------------------------------------------------------------------------------------------------------------*/
/*---------------------------------------------------------------------------------------------------------------------------------------------*/
/*---------------------------------------------------------------------------------------------------------------------------------------------*/
#guestBook {
  width: 100%;
  height: 650px;
  margin-top: 25px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.3);
  border: none;
  border-radius: 15px;
}

#tomeText {
  margin-top: 75px;
  text-align: center;
}


/*---------------------------------------------------------------------------------------------------------------------------------------------*/
/*---------------------------------------------------------------------------------------------------------------------------------------------*/
/*---------------------------------------------------------------------------------------------------------------------------------------------*/
/*-------------------------------------------------------------------mobile -------------------------------------------------------------------*/
/*---------------------------------------------------------------------------------------------------------------------------------------------*/
/*---------------------------------------------------------------------------------------------------------------------------------------------*/
/*---------------------------------------------------------------------------------------------------------------------------------------------*/
#navPanelMobile {
  display: none;
  position: fixed;
  top: 0px;
  left: 0px;
  width: 100%;
  text-align: center;
  background-color: #43281C;
  height:inherit;
  z-index: 1000;
}

.navMobile {
  background-color: #43281C;
  display:none;
  padding-left: 0px;
}
  
.navMobile > li {  /*Navigation panel ul*/
  display: block;  
}

#mobileMenu {
  background-color: transparent;
  color: white;
  padding: 10px;
  margin: 15px;
  border-radius: 7px;
}

@media (max-width: 768px) {
  #navPanel {
    display: none;
  }
  
  #navPanelMobile {
    display: inline;
  }
  
  .stickyDiv {
    position: sticky;
    top: -200px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.3);
  }
  
  #bodyText {
    margin-left: 2%;
    margin-right: 2%;
  }
  
  #lastImg {
    width: 100%;
  }
  
  .card {
    flex-direction: column;
  }
}





