:root {
  
  --blue-drk: #072832;
  --teal-transp: #36717187;
  --lt-purple: #b05c7b;
  --mid-purple: #813572;
  --red-purple: #773D55;
  --paper: #fcedc9;
  --parchment: #dbbb97;
  --lt-teal: #367171;
  --drk-teal: #14544D;

  
}

body {
  background-color: var(--blue-drk);
  color: var(--lt-teal);
  font-family: 'Alegreya Sans', sans-serif;
  width: 100%;
  margin: 0px;
  box-sizing: border-box;
  overflow-x: hidden;
  position: relative;
  height: 100%;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  align-items: stretch;

}



/***** TEXT DEFAULTS *****/

h1, h2, h3 {
  font-family: 'Almendra SC', 'Alegreya SC', 'Alegreya', serif;
  font-weight: 700;
  color: var(--drk-teal);
  margin: 5px;
  word-spacing: 4px;
}

p {
  margin: 8px 5px;
  font-size: 17px;
}

ul {
  margin: 0px 5px;
}

em {
  color: var(--drk-teal);
}


a {
  font-weight: bolder;
}

a:link {
  color: var(--mid-purple);
}

a:visited {
  color: var(--red-purple);
}

a:hover {
  color: var(--lt-purple);
}



/***** PAGE TOP + FOOTER *****/

.title {
  color: var(--paper);
  background-color: var(--drk-teal);
  text-align: center;
  padding: 10px;
  width: 100%;
  height: fit-content;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-around;
}

.title h1{
  margin: 0px;
  color: var(--paper);
}

.title p{
  margin: 0px;
  color: var(--parchment);
}

.title em{
  color: var(--paper);
}

.titlea:link {
  color: var(--paper);
  text-decoration: none;
  transition-duration: 0.3s;
}

.titlea:visited {
  color: var(--paper);
  text-decoration: none;
}

.titlea:hover {
  color: white;
  text-decoration: none;
}


.navbar {
  position: sticky;
  text-align: center;
  display: flex;
  flex-wrap: wrap;
  box-sizing: border-box;
  justify-content: center;
  align-items: center;
  background-color: var(--mid-purple);
  top: 0;
  z-index: 50;
  padding-top: 8px;
  padding-bottom: 8px;
  margin: 0;
  color: var(--paper);
}

.navbar a{
  padding: 5px 20px;
  text-decoration: none;
  text-align: center;
  font-family: 'Alegreya Sans', sans-serif;
  letter-spacing: 0.5px;
  transition-duration: 0.3s;
}

.navbar a:link{
  color: var(--paper);
}

.navbar a:visited{
  color: var(--paper);
}

.navbar a:hover{
  color: white;
}


/* to add: responsive stuff in here */
@media (max-width: 600px){
  .title{
    height: auto; 
  }
  
}

.footer {
  text-align: center;
  display: flex;
  box-sizing: border-box;
  justify-content: center;
  align-items: center;
  background-color: var(--mid-purple);
  padding-top: 4px;
  padding-bottom: 4px;
  width: 100%;
  color: var(--paper);
  height: 45px;
  margin-top: auto;
}





/***** PAGE ARRANGEMENT *****/

.content-shell{
  display: flex;
  width: 100vw;
  overflow-x: hidden;
  position: relative;
  flex: 1;
  flex-direction: column;
  align-content: center;
}

.content-meat {
  display: flex;
  flex-direction: column;
  width: 1200px;
  max-width: 100vw;
  padding-top: 20px;
  padding-bottom: 20px;
  align-self: center;
  flex-grow: 1;
  background-color: var(--teal-transp);
  align-items: center;
}

.box-shell{
  display: flex;
  flex-direction: column;
  box-sizing: border-box;
  width: 100%;
  position: relative;
}

.box-header{
  padding: 5px;
  background-color: var(--parchment);
  text-align: center;
  color: var(--drk-teal);
  width: 100%;
  border: solid 3px var(--lt-teal);
  display: flex;
  justify-content: center;
  align-items: center;
  box-sizing: border-box;
  outline: solid var(--parchment);
}

.box-header p {
  margin: 8px 5px;
  font-size: 17px;
  text-align: left;
  font-weight: 500;
}


.headera:link {
  color: var(--drk-teal);
}

.headera:hover {
  color: var(--lt-teal);
}

.headera:visited {
  color: var(--drk-teal);
}

.box-body{
  padding: 10px;
  padding-top: 5px;
  background-color: var(--paper);
  height: 100%;
  width: calc(100% - 16px);
  display: flex;
  flex-direction: column;
  align-self: center;
  margin-top: 3px;
  box-sizing: border-box;
}

.buffer{
  height: 15px;
  width: 15px;
  min-height: 15px;
  min-width: 15px;
}

.buffer-2{
  height: 30px;
  width: 30px;
  min-height: 30px;
  min-width: 30px;
}

.main {
  flex: 50%;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  padding: 10px;
}

.rows {
  display: flex;
  box-sizing: border-box;
  justify-content: center;
  flex-direction: row;
  align-items: flex-start;
}

@media (max-width: 900px){
  
  .content-meat{
    width: 100%;
  }
  
  .main {
    width: 100%;
  }
  
  .rows{
    flex-direction: column;
    height: auto;
  }
  
  .floating-img {
    max-width: 50%;
    align-self: center;
  }
  
}




/***** PAGE WIDGETS *****/

.button {
  align-self: center;
  background-color: var(--red-purple);
  color: var(--paper);
  max-width: 400px;
  min-width: 50%;
  cursor: pointer;
  margin: 4px 2px;
  padding: 8px 10px;
  display: inline-block;
  text-align: center;
  border: none;
  font-family: 'Alegreya Sans SC', 'Alegreya Sans', sans-serif;
  font-weight: 500;
  font-size: 20px;
  text-decoration: none;
  letter-spacing: 0.5px;
  word-spacing: 4px;
  transition: all 300ms ease-in-out;
}

.button:link{
  color: var(--paper);
}

.button:visited{
  color: var(--paper);
}

.button:hover {
  background-color: var(--lt-teal);
  color: var(--paper);
}

.button:disabled {
  background-color: var(--red-purple);
  opacity: 0.5;
}

.inline-img {
  display: block;
  margin: 5px;
  max-width: 100%;
  height: auto;
  box-sizing: border-box;
}

.floating-img {
  display: block;
  height: auto;
  box-sizing: border-box;
  filter: drop-shadow(5px 5px 8px black);
}

.icon-img {
  height: 64px;
  width: 64px;
  padding: 10px;
}

.inner-box {
  display: flex;
  justify-content: center;
  padding: 15px;
}

.wide-banner-shell {
  width: 100%;
  height: 200px;
  background-color: #53264A;
  background-image: url(/graphics/sisj_banner.png);
  background-position: center center;
  background-repeat: no-repeat;
  display: flex;
  align-content: center;
  justify-content: center;
  box-shadow: inset 0 5px 15px #00000073;
}


.quote {
  background-image: url(/graphics/scribbly.png);
  background-repeat: no-repeat;
  padding: 20px;
  text-align: center;
  background-size: 100% 100%;
  display: flex;
  align-content: center;
  justify-content: center;
  flex-direction: column;
  flex-shrink: 0;
  max-width: 100%;
}

.quote h1 {
  color: var(--paper);
  font-family: 'Almendra', 'Alegreya', serif;
  font-size: 18px;
  font-weight: bolder;
}

.quote p {
  color: var(--paper);
  font-family: 'Almendra', 'Alegreya Sans', sans-serif;
  font-size: 16px;
  font-weight: bolder;
}

.quote a{
  color: var(--parchment);
}

.quote a:hover {
  color: white;
}

.quote b{
  color: white;
}


/***** GALLERY STUFF *****/

.gallery {
  display: flex;
  flex-wrap: wrap;
  padding: 0 4px;
  justify-content: space-between;
}

.gallery-col {
  flex: 25%;
  padding: 0 8px;
  box-sizing: border-box;

}

.gallery img {
  margin-top: 8px;
  vertical-align: middle;
  border: 1px solid var(--red-purple);
  border-radius: 4px;
  box-sizing: border-box;
  filter: drop-shadow(5px 5px 8px black);

}

.gallery img:hover {
  box-shadow: 0 0 4px 3px var(--paper);
  opacity: 0.8;
}


@media (max-width: 800px){
  .gallery-col{
    flex: 50%;
    max-width: 50%;
  }

}
  
  @media (max-width: 600px){
  .gallery-col{
    flex: 100%;
    max-width: 100%;  
  }
  
  .navbar-padding{
    width: 0px;
  }
  
}



/***** GALLERY MODAL *****/

/* The Modal (background) */
.modal {
  display: none;  /*Hidden by default */
  position: fixed; /* Stay in place */
  z-index: 55; /* Sit on top */
  padding-top: 10px;  /*Location of the box */
  left: 0;
  top: 0;
  width: 100%; /* Full width */
  height: 100%; /* Full height */
  overflow: auto; /* Enable scroll if needed */
  background-color: rgb(0,0,0); /* Fallback color */
  background-color: rgba(0,0,0,0.7); /* Black w/ opacity */
}

.modal-content {
  margin: auto;
  display: block;
  max-width: 100%;
  max-height: 1000px;
  aspect-ratio: initial;
  filter: drop-shadow(5px 5px 8px black);
}

#caption {
  margin: auto;
  display: block;
  width: 80%;

  text-align: center;
  color: var(--paper);
  padding: 10px 0;
  height: 50px;
}

.close {
  position: absolute;
  top: 15px;
  right: 35px;
  color: var(--red-purple);
  font-size: 40px;
  font-weight: bold;
  transition: 0.3s;
}

.close:hover,
.close:focus {
  color: var(--lt-purle);
  text-decoration: none;
  cursor: pointer;
}


/****** SLIDESHOW STUFF ********/

.slideshow-controls {
  position: absolute;
  left: 35%;
  bottom: 12%;
  display: flex;
  justify-content: space-between;
  width: 25%;
  color: white;
}

.slideshow-indicator {
  height: 15px;
  width: 15px;
  cursor: pointer;
  border: 1px solid white;
  border-radius: 50%;
  align-self: center;
}

.slideshow-indicator-filled {
  background-color: white;
  
}


/****** FILTER STUFF ********/

.filter-bttn {
  transition: all 300ms ease-in-out;
  filter: drop-shadow(5px 5px 8px black);
  max-height: 100px;
}

.filter-bttn:hover {
  transform: scale(1.15);
}

.filter-bttn.active {
  transform: scale(1.1);
}

.filter-bttn-shell {
  display: flex;
  box-sizing: border-box;
  justify-content: space-around;
  flex-wrap: wrap;
  width: 100%;
  flex-direction: row;
}

.filter-p{
  display: none;
}


/****** MODIFIER CLASSES ********/

.flexcol {
  display: flex;
  flex-direction: column;
}

.width-30 {
  width: 30%;
}

.width-100 {
  width: 100%;
}