@charset "utf-8";
:root {
	--link-color-main: rgba(141,71,0,1);
	--link-color-highlight: rgba(175,88,0,1);
	--social-link-color: rgb(255,255,255);
	--nav-link-color: rgb(0 0 0);
	--nav-mobile-bg-color: rgba(255,255,255,1);
	--button-text-color: rgb(255 255 255);
	--button-background: rgba(159,90,19,0.92);
	/*--button-background: linear-gradient(52deg, rgba(3,119,114,1) 0%, rgba(117,117,117,1) 100%);*/
	/*--button-background: rgb(100 100 100);*/
	--button-background-highlight: rgba(141,71,0,1);
	--main-text-color: rgb(0 0 0);
	--red-highlight: rgb(233 32 0);
}


/************************************************************************************************************************/
/* menu.css contents (For mobile menu) */
/*************************************************************************************************************************/
.nav a{
    text-decoration: none;
}
.nav ul{
    list-style: none;
}

/* Nav menu */
.nav{
    width: 100%;
    height: 100%;
    position: fixed;
	top: 0;
    /*background-color: var(--main-text-color);*/
    overflow: hidden;

}
.menu a{
    display: block;
    padding: 1rem;
    color: var(--nav-link-color);
	font-family: nitti-typewriter-cameo, sans-serif;
	font-weight: 700;
	font-style: normal;
	
	/*font-family: metallophile-sp8, sans-serif;
	font-style: normal;
	font-weight: 300;*/
}
.menu a:hover, .menu a:active{
    background-color:transparent;
	font-family: nitti-typewriter-underlined, sans-serif;
	font-weight: 500;
	font-style: normal;
	border: 0;
	color: var(--nav-link-color);
	
}
.nav{
    max-height: 0;
    transition: max-height .5s ease-out;
}

/* Menu Icon */
.hamb{
    cursor: pointer;
    float: right;
    padding: 30px 20px;
	position: fixed;
    top: 0;
    right: 7.5%;
    z-index: 300;
	/*border-radius: 5px;*/
	background-color: rgba(255,255,255,0.4);
}

.hamb-line {
    background: var(--nav-link-color);
    display: block;
    height: 2px;
    position: relative;
    width: 24px;

} /* Style span tag */

.hamb-line::before,
.hamb-line::after{
    background: var(--nav-link-color);
    content: '';
    display: block;
    height: 100%;
    position: absolute;
    transition: all .2s ease-out;
    width: 100%;
}
.hamb-line::before{
    top: 5px;
}
.hamb-line::after{
    top: -5px;
}

.side-menu {
    display: none !important;
} /* Hide checkbox */

/* Toggle menu icon */
.side-menu:checked ~ nav{
    max-height: 100%;
	background-color: var(--nav-mobile-bg-color);
	z-index: 200;
}
.side-menu:checked ~ .hamb .hamb-line {
    background: transparent;
}
.side-menu:checked ~ .hamb .hamb-line::before {
    transform: rotate(-45deg);
    top:0;
}
.side-menu:checked ~ .hamb .hamb-line::after {
    transform: rotate(45deg);
    top:0;
}

/* Responsiveness */

@media (min-width: 550px) {
	.hamb {
		right: 10%;
	}
}

@media (min-width: 768px) {
    .nav{
        max-height: none;
        top: -9rem;
        position: relative;
        float: right;
        width: fit-content;
    }
    .menu li{
        float: left;
    }
    .menu a:hover, .menu a:active{
        background-color: transparent;
        color: var(--nav-link-color);
		border: 0;
    }
	
	.side-menu:checked ~ .nav > ul > li > a {
		padding: 30px;
	}

    .hamb{
        display: none;
    }
}

@media (min-width: 868px) {
    .nav{
        top: -10rem;
    }
}

@media (min-width: 968px) {
    .nav{
        top: -11.25rem;
    }
}

@media (min-width: 1068px) {
    .nav{
        top: -13rem;
    }
}

@media (min-width: 1168px) {
    .nav{
        top: -14rem;
    }
}

/************************************************************************************************************************************/
/* End menu.css */
/************************************************************************************************************************************/

/*************************************************************************************************************************************/
/* Begin modal.css
/*************************************************************************************************************************************/

*, *:before, *:after { box-sizing: border-box; }

body {
  height: 100vh;
  /* background: linear-gradient(white, #999); */
}

.modal-container {
  margin: 0 auto;
  padding-top: 60px;
  position: relative;
  width: 160px;
}

/* .modal-container button {
  display: block;
  margin: 0 auto;
  color: #fff;
  width: 160px;
  height: 50px;
  line-height: 50px;
  background: #446CB3;
  font-size: 22px;
  border: 0;
  border-radius: 3px;
  box-shadow: 0 5px 5px -5px #333;
  transition: background 0.3s ease-in;
} */

.modal-container .modal-backdrop {
  height: 0;
  width: 0;
  opacity: 0;
  overflow: hidden;
  transition: opacity 0.2s ease-in;
}

.modal-container .modal-toggle {
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  margin: 0;
  opacity: 0;
  cursor: pointer;
}

/* .modal-container .modal-toggle:hover ~ button { background: #1E824C; } */

.modal-container .modal-toggle:checked {
  width: 100vw;
  height: 100vh;
  position: fixed;
  left: 0;
  top: 0;
  z-index: 9;
  opacity: 0;
}

.modal-container .modal-toggle:checked ~ .modal-backdrop {
  background-color: rgba(0, 0, 0, 0.6);
  width: 100vw;
  height: 100vh;
  position: fixed;
  left: 0;
  top: 0;
  z-index: 9;
  pointer-events: none;
  opacity: 1;
}

.modal-container .modal-toggle:checked ~ .modal-backdrop .modal-content {
  background-color: #fff;
  max-width: 400px;
  width: 100%;
  height: 280px;
  padding: 10px 30px;
  position: absolute;
  left: calc(50% - 200px);
  top: 12%;
  border-radius: 4px;
  z-index: 999;
  pointer-events: auto;
  cursor: auto;
  box-shadow: 0 3px 7px rgba(0, 0, 0, 0.6);
}
@media (max-width: 400px) {

.modal-container .modal-toggle:checked ~ .modal-backdrop .modal-content { left: 0; }
}

.modal-container .modal-toggle:checked ~ .modal-backdrop .modal-content .modal-close {
  color: #666;
  position: absolute;
  right: 2px;
  top: 0;
  padding-top: 7px;
  background: transparent;
  font-size: 16px;
  width: 25px;
  height: 28px;
  font-weight: bold;
  text-align: center;
  cursor: pointer;
}

/* .modal-container .modal-toggle:checked ~ .modal-backdrop .modal-content .modal-close.button {
  top: initial;
  bottom: 20px;
  right: 20px;
  background: #4CAF50;
  color: #fff;
  width: 50px;
  border-radius: 2px;
  font-size: 14px;
  font-weight: normal;
}

.modal-container .modal-toggle:checked ~ .modal-backdrop .modal-content .modal-close.button:hover {
  color: #fff;
  background: #1E824C;
} */

.modal-container .modal-toggle:checked ~ .modal-backdrop .modal-content .modal-close:hover { color: #888; }

/*************************************************************************************************************************************/
/* End modal.css
/*************************************************************************************************************************************/

/************************************************************************************************************************************/
/* Begin collapsible.css */
/*************************************************************************************************************************************/

.wrap-collapsible input[type='checkbox'] {
  display: none;
}

.lbl-toggle {
  display: block;

  /*font-weight: bold;*/
  font-family: felt-tip-roman,sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 2rem;
  text-transform: uppercase;
  text-align: center;

  padding: 1rem;

  color: var(--button-text-color);
  background: var(--button-background);

  cursor: pointer;

  border-radius: 7px;
  transition: all 0.25s ease-out;
}

.lbl-toggle:hover {
  color: var(--button-text-color);
  background-color: var(--button-background-highlight);
}

.lbl-toggle::before {
  content: ' ';
  display: inline-block;

  border-top: 5px solid transparent;
  border-bottom: 5px solid transparent;
  border-left: 5px solid currentColor;

  vertical-align: middle;
  margin-right: .7rem;
  transform: translateY(-2px);

  transition: transform .2s ease-out;
}

.collapsible-content .content-inner {
  background: var(--button-background-color);
  border-bottom: 1px solid rgba(250, 224, 66, .45);

  border-bottom-left-radius: 7px;
  border-bottom-right-radius: 7px;
  padding: .5rem 1rem;
}

.collapsible-content {
  max-height: 0px;
  overflow: hidden;

  transition: max-height .25s ease-in-out;
}

.toggle:checked + .lbl-toggle + .collapsible-content {
  max-height: 100vh;
}

.toggle:checked + .lbl-toggle::before {
  transform: rotate(90deg) translateX(-3px);
}

.toggle:checked + .lbl-toggle {
  border-bottom-right-radius: 0;
  border-bottom-left-radius: 0;
}

/*************************************************************************************************************************************/
/* End collapsible.css
/*************************************************************************************************************************************/




body {
	/*font-family: nitti-typewriter-normal, sans-serif;
	font-weight: 400;*/
	
	/*font-family: roboto,sans-serif;
	font-weight: 300;
	font-style: normal;
	font-size: 1.7rem;*/
	
	/*font-family: forma-djr-micro, sans-serif;
	font-weight: 400;
	font-style: normal;
	letter-spacing: .005rem;*/
	
	font-family: "henri", sans-serif;
	font-weight: 400;
	font-style: normal;
	
}

/* Body Background Video Styles */
#myVideo {
	position: fixed;
	top: 50%;
	left: 50%;
	min-width: 100%;
	min-height: 100%;
	transform: translate(-50%, -50%);
}

h1, h2, h3, h4, h5, h6, h1 > a, h2 > a, h3 > a, h4 > a, h5 > a, h6 > a, h1 > a:hover, h2 > a:hover, h3 > a:hover, h4 > a:hover, h5 > a:hover, h6 > a:hover, h1 > a:active, h2 > a:active, h3 > a:active, h4 > a:active, h5 > a:active, h6 > a:active {
	font-family: felt-tip-roman,sans-serif;
	font-weight: 400;
	font-style: normal;

	/* font-family: fredericka-the-greatest, serif;
	font-style: normal;
	font-weight: 400; *//*This one is a great option too*/
}

body > .container {
	background-color: rgb(255 255 255 / 85%);
    padding: 2rem 10rem;
	max-width: calc(960px + 20rem);
}

header img {
	width: 100%;
}

a {
	text-decoration: none;
	color: var(--link-color-main);
	font-family: nitti-typewriter-underlined;
}

a:hover, a:active {
	color: var(--link-color-highlight);
	/*border-bottom: 1px dashed var(--link-color-highlight);*/
	font-family: nitti-typewriter-open;
}

hr {
	margin: 2rem;
	border-bottom: 1.5px solid var(--main-text-color);
    border-top: none;
}

strong, b {
	font-family: "henri", sans-serif;
	font-weight: 700;
	font-style: normal;
}

p {
	font-size: 1.1em;
}

/* Utilities */
.error {
	color: var(--red-highlight);
}

.no-border:hover, .no-border:active {
	border: 0px;
}

/* Button Styles */
.button, button, input[type="submit"], input[type="reset"], input[type="button"] {
	font-family: chandler-42-regular, sans-serif;
	font-weight: 400;
	font-style: normal;
}

.button:hover, button:hover, input[type="submit"]:hover, input[type="reset"]:hover, input[type="button"]:hover, .button:focus, button:focus, input[type="submit"]:focus, input[type="reset"]:focus, input[type="button"]:focus {
	font-family: chandler-42-regular, sans-serif;
	font-weight: 800;
	font-style: normal;
}

.button.button-primary, button.button-primary, input[type="submit"].button-primary, input[type="reset"].button-primary, input[type="button"].button-primary {
	font-family: chandler-42-regular, sans-serif;
	font-weight: 400;
	font-style: normal;
	color: var(--button-text-color);
	background-color: var(--button-background);
	border: 0;
}

.button.button-primary:hover, button.button-primary:hover, input[type="submit"].button-primary:hover, input[type="reset"].button-primary:hover, input[type="button"].button-primary:hover, .button.button-primary:focus, button.button-primary:focus, input[type="submit"].button-primary:focus, input[type="reset"].button-primary:focus, input[type="button"].button-primary:focus {
	font-family: chandler-42-regular, sans-serif;
	font-weight: 800;
	font-style: normal;
	color: var(--button-text-color);
	background-color: var(--button-background-highlight);
	border: 0;
}


/* Social Buttons */
.social_links a {
	display: inline-block;
	margin-right: 1rem;
	font-size: 2.5rem;
	/*color: var(--nav-link-color);*/
}

.social_links a:last-of-type {
	margin-right: 0;
}

/* Image styles */

.cropped-image {
	object-fit: cover;
    height: 300px;
    width: 100%;
    object-position: center;
}

.gallery-image {
	height: 300px;
    max-width: 100%;
    /* object-fit: contain; */
    object-fit: contain;
    object-position: bottom center;
    width: 100%;
}

.gallery-large-image {
	max-width: 700px;
    max-height: 700px;
    width: 100%;
    height: 100%;
    display: block;
    margin: 0 auto;
    /* height: auto; */
    object-fit: contain;
	object-position: center;
}

@media screen and (min-width: 551px) and (max-width: 1000px){

  .gallery-piece-name, .gallery-piece-desc {
	  text-align: center;
  }
  
  .gallery-image {
	height: fit-content;
	max-height: 400px;
  }
}

/* Iframe Styles */
iframe {
	min-width: 1px !important;
}

.toggle ~ .collapsible-content > .content-inner > iframe {
	width: 100%;
	height: 75vh;
}

.toggle:checked ~ .collapsible-content > .content-inner > iframe {
	width: 100%;
	height: 75vh;
}

.modal-container iframe {
	width: 100% !important;
	height: 83vh !important;
}

/* Youtube embed on news pages */
div[data-oembed-provider='youtube'] > iframe {
	width: 100% !important;
	height: 375px;
}

/* Modal Styles */ /*more styles in modal.css*/
.modal-container .modal-toggle:checked ~ .modal-backdrop .modal-content .modal-close.button {
  /*top: initial;
  bottom: 20px;
  right: 20px;
  background: #4CAF50;
  color: #fff;
  width: 50px;
  border-radius: 2px;
  font-size: 14px;
  font-weight: normal;*/
}

.modal-container .modal-toggle:checked ~ .modal-backdrop .modal-content .modal-close.button:hover {
  /*color: #fff;
  background: #1E824C;*/
}

.modal-container .modal-toggle:checked ~ .modal-backdrop .modal-content {
    background-color: rgba(0,0,0,0.9);
    max-width: 90%;
    width: 90%;
    height: 90vh;
    padding: 3rem;
    position: absolute;
    left: calc(50% - 45%);
    top: 5%;
    border-radius: 4px;
    z-index: 999;
    pointer-events: auto;
    cursor: auto;
    box-shadow: 0 3px 7px rgb(0 0 0 / 60%);
}

@media (max-width: 1000px) {

	.modal-container .modal-toggle:checked ~ .modal-backdrop .modal-content {
		max-width: 100%;
		width: 100%;
		height: 100vh;
		padding: 3rem;
		position: absolute;
		left: 0;
		top: 0;
		border-radius: 0;
		z-index: 999;
	}
	
	.modal-container .modal-toggle:checked ~ .modal-backdrop {
		z-index: 999;
	}
	
}

.modal-container {
	padding: 0.5rem 0;
	width: 100%;
}

.modal-container .button-primary {
	margin: 0 auto;
    display: block;
	background-color: var(--button-background);
}

 .gallery-button {
	margin: 0 auto 1rem auto;
    display: block;
	width: fit-content;
}

.gallery-button:last-of-type {
	margin: 0 auto;
}

.gallery-div {
	margin-bottom: 2rem;
}

.modal-container:hover .button-primary {
	background-color: var(--button-background-highlight);
	font-weight: 800;
}

.modal-container ~ .button {
	margin: 0 auto 1rem auto;
    display: block;
	width: fit-content;
}

/* News styles */

#news_section img {
	max-width: 100%;
}

#news_section img.u-pull-left {
	width: 250px;
	margin: 0 1.5rem 1.5rem 0;
}

#news_section hr {
	clear: left;
}

#news_article_column hr:last-of-type {
	display: none;
}

#news_sidebar_column {
	border-right: 1.5px solid black;
}

#older_posts {
	text-align: right;
}

.pagination a {
	display: block;
    padding: 1rem;
    color: var(--nav-link-color);
	font-family: nitti-typewriter-cameo, sans-serif;
	font-weight: 700;
	font-style: normal;
}

.pagination a:hover, .pagination a:active {
	background-color: var(--link-color-main);
	font-family: nitti-typewriter-underlined, sans-serif;
	font-weight: 500;
	font-style: normal;
}

/* Gallery Styles */

.gallery_nav {
	display: block;
	clear: both;
	/* width: 80%; */
	/* text-align: center; */
}

.gallery_nav a {
	color: var(--nav-link-color);
	font-family: chandler-42-regular, sans-serif;
	font-weight: 400;
}

.gallery_nav a:hover, .gallery_nav a:active {
	font-family: chandler-42-regular, sans-serif;
	font-weight: 800;
	font-style: normal;
	border: 1px solid currentColor;
}

#nav_selected {
	color: var(--button-text-color);
	font-family: chandler-42-regular, sans-serif;
	font-weight: 400;
}

.gallery_nav .button-primary {
	background-color: var(--nav-link-color);
	border-color: var(--nav-link-color);
}

.gallery_nav .button-primary:hover, .gallery_nav .button-primary:active {
	background-color: var(--nav-link-color);
	border-color: var(--nav-link-color);
	border: 1px solid currentColor;
	font-family: chandler-42-regular, sans-serif;
	font-weight: 800;
	font-style: normal;
}

.gallery_cat_title {
	text-align: center;
}

.gallery-piece-name h2 {
	font-size: 3.5rem;
    /* text-align: center; */
    margin-bottom: 1rem;
}

.gallery-piece-desc {
	font-style: italic;
}

/* Footer */

footer {
	text-align: center;
}

#footer_nav li {
	list-style: none;
	display: inline-block;
	margin: 0 0.5rem;
}

@media (min-width: 768px) {
	section{
		position: relative;
		top: -5rem;
	}
	
	.gallery_nav {
		/* width: 80%; */
	}
}

@media (max-width: 900px) {
	body > .container {
		padding: 2rem;
	}
	
	#news_sidebar_column {
		display: none;
	}
	
	#news_article_column {
		width: 100%;
		margin-left: 0;
	}

}

@media (max-width: 600px) {
	
	#news_section img.u-pull-left {
		width: 100%;
		margin: 0 0 1.5rem 0;
		float: none;
	}
}




