:root
{
	--text-color: #FFFFFF;
	--choco-light-color: #462B18;
	--choco-dark-color: #381602;
	--debug-color: pink;
}

html, body
{
	margin: 0;
	padding: 0;
	height: 100%;

	background-color: var(--choco-dark-color);
	color: var(--text-color);
}



html
{
  -webkit-text-size-adjust: 100%;
}

body
{
  display: flex;
  flex-direction: column;

  	font-family: "Red Hat Display", sans-serif;
	font-weight: 100;
	font-size: 1.1em;
}
@media (min-width: 600px) 
{
  body {
    font-size: 1.0em;
  }
}
@media (min-width: 1024px) 
{
  body {
    font-size: 1.0em;
  }
}




div
{
	border: 0;
	margin: 0;
	padding: 0;
}

.segment
{
  	min-height: 100vh;
  	width: 100%;
  	display: flex;
  	flex-direction: column;
  	align-items: center;
	justify-content: center;
	flex: 1 0 auto;
	gap: 5rem;
	
  	padding: 0;
  	margin: 0;

	background-color: var(--debug-color);
}

.img-segment
{
	width: 100%;
	height: auto;
	padding: 0 0 5vh 0;
	background-color: var(--choco-dark-color);
}

.main-logo-div
{
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	margin: 0;
	padding: 0;
}

.main-logo-text
{
	font-family: "Red Hat Display", sans-serif;
	font-weight: 400;
	font-size: 15vh;
	line-height: 0.75;
	letter-spacing: -0.09em;
}
.main-logo-subtext
{
	font-family: "Red Hat Display", sans-serif;
	font-weight: 400;
	line-height: 2;
	font-size: 3vh;
	font-variant: small-caps;
}


.dripping
{
	background-image: url("media/dripping.png");
	background-clip: border-box;
	background-repeat:repeat-x;
	background-position: left top;

	background-color: var(--choco-light-color);
}
.dripping-light
{
	background-image: url("media/dripping-light.png");
	background-clip: border-box;
	background-repeat:repeat-x;
	background-position: left top;

	background-color: var(--choco-dark-color);
}

.footer-segment
{
  height: auto;
  flex: 0 0 auto;
  padding: 1em;


  	background-image: url("media/dripping-light.png");
	background-clip: border-box;
	background-repeat:repeat-x;
	background-position: left top;

	background-color: var(--choco-dark-color);
}

.alt-footer-segment
{
  height: auto;
  flex: 0 0 auto;
  padding: 1em;


  	background-image: url("media/dripping.png");
	background-clip: border-box;
	background-repeat:repeat-x;
	background-position: left top;

	background-color: var(--choco-light-color);
}


.centered-content-div
{
  display: flex;
  flex-direction: column;
  justify-content: center; 
  align-items: center;     
  text-align: center;      
  padding: 1em;
}

.svg-img
{
  height: 1.7em;
  width: auto;       
  vertical-align: middle; 
  display: inline-block;
  border: 3px solid transparent;
  filter: invert(100%);
}


a
{
  color: inherit;      		
  text-decoration: none; 	
}


.fancy-img
{
	border: 1px solid white;
  	width: 20vh;            
  	height: auto;
  	border-radius: 32px;     
  	
  	display: block;
}




.photo-showcase {
  column-count: 2;
  column-gap: 1.5rem;
  width: 95%;

  padding-bottom: 4rem;
}
@media (min-width: 600px) 
{
  .photo-showcase {
    column-count: 4;
  }
}



.photo-showcase img
{
  width: 100%;
  height: auto;
  display: block;
  margin-bottom: 1em;
  border-radius: 1em;
  box-shadow: 0 0.5em 1.4em rgba(0, 0, 0, 0.5);
  break-inside: avoid;

  transition: 
  	transform 0.25s ease, 
  	box-shadow 0.25s ease;
}

.photo-showcase img:hover
{
  transform: scale(1.05);
  box-shadow:
    0 0.5em 1.8em rgba(0, 0, 0, 0.5);
}



table td
{
  padding: 0.1em 3em 0.1em 0;
}



.corner-banner
{
  position: fixed;
  top: 0;
  left: 0;
  width: 10rem;
  height: 10rem;
  z-index: 1000;
  text-decoration: none;
  pointer-events: auto;
}

.corner-banner span
{
  position: absolute;
  top: 2rem;
  left: -3.0rem;

  display: block;
  width: 12rem;
  text-align: center;

  background: #d4230b;
  color: #fff;
  font-weight: 600;
  letter-spacing: 0.08em;
  font-size: 0.75rem;
  line-height: 2rem;

  transform: rotate(-45deg);
  box-shadow: 0 0.4em 1em rgba(0, 0, 0, 0.25);
}