:root {
	--arcane-yellow: #feba17;
	--arcane-primary: var(--arcane-yellow);
}

/*
Bellfort Regular
Web Font License provided by FontSpring
License assignee: Arcane Mead & Winery
*/
@font-face {
  font-family: "Bellfort";
  src: url('assets/fonts/bellfort_regular/bellfortregular-webfont.woff2');
  src: url('assets/fonts/bellfort_regular/bellfortregular-webfont.woff2') format('woff2'),
       url('assets/fonts/bellfort_regular/bellfortregular-webfont.woff') format('woff');
}

.bellfort {
	font-family: "Bellfort";
}


/*
PIXEL Pattern Square Bold
Web Font License provided by FontSpring
License assignee: Arcane Mead & Winery
*/
@font-face {
  font-family: "Pixel";
  src: url('assets/fonts/pixelpattern_squarebold/pixelpattern-squarebold-webfont.woff2');
  src: url('assets/fonts/pixelpattern_squarebold/pixelpattern-squarebold-webfont.woff2') format('woff2'),
       url('assets/fonts/pixelpattern_squarebold/pixelpattern-squarebold-webfont.woff') format('woff');
}

.pixel {
	font-family: "Pixel";
	font-weight: normal;
}

body {
	background: #88f;
	font-family: "Bellfort";
	color: #fff;
	background-image: linear-gradient(45deg, #66f 25%, transparent 25%, transparent 50%, #66f 50%, #66f 75%, transparent 75%, transparent);
  background-size: 0.5em 0.5em;
}
a, h1, h2, h3, h4, h5, h6 {
	color: var(--arcane-primary);
}
#page-container {
	background: #000;
	color: #fff;
	width: 70%;
	margin: 0 auto;
	border: 1em ridge #999;
 	overflow: auto;
	white-space: nowrap; 
	padding: 2em;
	display: grid;
	grid-template-columns: 1fr 2fr 1fr;
	grid-template-areas:
    'header header header'
    'left main right'
    'footer footer footer';
} 
.full-row {
	grid-column: 1 / -1;
}

.fluid-grid {
	  display: grid;
  gap: 20px;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  grid-auto-rows: 1fr;
}

.vertical-center {
  display: block;
  position: relative;
  border: 1px solid #f00;
}

.fluid-grid a {
	display: block;
	color: var(--arcane-primary);
	text-decoration: none;
	text-align: center;
	border: 1px solid #fff;
	text-wrap: pretty;
	font-size: 2em;
	height: 100%;
	text-align: center;
}
.fluid-grid a:link {

}
.fluid-grid a:visited {

}
.fluid-grid a:hover {

}
.fluid-grid a:focus {

}
.fluid-grid a:active {

}



#page-container > .column {
	display: block;
	margin: 0;
	padding: 0;
	text-align: center;
}

#header-container {
	grid-area: header;
	display: grid;
	grid-template-columns: repeat(8,1fr);
}



#footer-container {
	grid-area: footer;
}

#left_column {
	grid-area: left;
}

#center_column {
	grid-area: main;
}

#right_column {
	grid-area: right;
} 

.column .window {
	float: left;

}

#right_column .window {
	float: right;
}

.window {
	border: 6px ridge #fff;
	background: #f3f3f3;
	color: #000;
	margin-bottom: 2em;
}

.window:hover {
	cursor: pointer;
}

.window .button {
	border: 2px ridge #fff;
	display: inline-block;
	width: 1em;
	height: 1em;
	padding: 2px;
	float: right;
	background: #666;
	font-fanily: "Pixel";
}

.window .titlebar {
	display: block;
	background: #999;
	color: #000;
	height: 1.8em;
	font-family: "Pixel";
	border-bottom: 2px solid #000;
}
.window .titlebar .title {
	display: block;
	font-size: 1.5em;
}

.window p {
	text-wrap: pretty;
}

.noselect {
  -webkit-touch-callout: none; /* iOS Safari */
    -webkit-user-select: none; /* Safari */
     -khtml-user-select: none; /* Konqueror HTML */
       -moz-user-select: none; /* Old versions of Firefox */
        -ms-user-select: none; /* Internet Explorer/Edge */
            user-select: none; /* Non-prefixed version, currently
                                  supported by Chrome, Edge, Opera and Firefox */
}

address {
	margin: 16px;
}

#header-container {
	text-align: center;
	margin-bottom: 1em;
}

#footer-container {
	display: block;
	text-align: center;
}

#footer-container address {
	font-family: "Bellfort";
	font-size: 1.5em;
	font-style: normal;
}

.splash-logo {
margin-bottom: 16px;
}

.center {
  margin-left: auto;
  margin-right: auto;
}

.social-link {
	/* a sprite sheet of our social media icons in a grid of 128x128 pixel icons */
	background:url('assets/images/social-icons.png');
	/* clip-path uses radius, but width and height use diameter */ 
	clip-path: circle(64px);
	width: 128px;
	height: 128px;
	display: inline-block;
	/* Icon sprites are 128px, so scale down 50% to get 64px */
	scale: 0.5; 
	margin: -32px -16px -32px -32px;
	
}

.social-link:hover {
	filter: grayscale(100%);
}

.social-link-facebook {
	/* Column 0, Row 0 of sprite sheet */
	background-position: 0px 0px;
}

.social-link-bluesky {
	/* Column 1, Row 0 of sprite sheet */
	background-position: -128px 0px;
}

.social-link-instagram {
	/* Column 2, Row 0 of sprite sheet */
	background-position: -256px 0px;
}

#hours-operation .closed {
	color:red;
}
#hours-operation table {
	padding: 1em;
	font-family: "Pixel";
	font-size: 1em;
}
#hours-operation th {
	font-weight: normal;
}

#hours-operation tr:hover {
	color: var(--arcane-primary);
}

.icon a {
	color: var(--arcane-primary);
	text-decoration: none;
	text-align: center;
}

.icon a:link {

}

.icon a:visited {

}

.icon a:hover {
	filter: grayscale(100%);
}

.icon a:focus {
	filter: grayscale(100%);
}

.icon a:active {
	filter: grayscale(100%);
}