﻿@font-face {
  font-family: griffinize;
  src: url("/_includes/fonts/Griffinize-oxOV.ttf");
}

@font-face {
  font-family: instant-zen;
  src: url("/_includes/fonts/InstantZenRegular-r6Ex.otf");
}

/* latin */
@font-face {
  font-family: 'DroidSans';
  font-style: normal;
  font-weight: 400;
  src: url("/_includes/fonts/DroidSans.otf") format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

:root {
	--color-headline: Indigo;
	--color-accent: BlueViolet;
	--color-buttontext: PowderBlue;
	--color-pale-background: rgba(255, 240, 245, 0.90);
	--color-mid-background: Lavender;
	--color-dark-background: MediumPurple;

	--color-accent10: color-mix(in srgb, var(--color-accent) 10%, transparent);
	--color-accent20: color-mix(in srgb, var(--color-accent) 20%, transparent);
	--color-accent50: color-mix(in srgb, var(--color-accent) 50%, transparent);
	--color-background90: color-mix(in srgb, var(--color-pale-background) 90%, transparent);
	--color-black20: color-mix(in srgb, Black 20%, transparent);
	--color-black80: color-mix(in srgb, Black 80%, transparent);
	--color-black90: color-mix(in srgb, Black 90%, transparent);
	--color-headline80: color-mix(in srgb, var(--color-headline) 80%, transparent);
	--color-headline90: color-mix(in srgb, var(--color-headline) 90%, transparent);

	--font-headline: Cambria, Times;
	--font-body: Calibri, Geneva, Tahoma;


}

* {
  box-sizing: border-box;
}

html {
	margin: 0;
	padding: 0;
}

body {
	font-family: var(--font-body);
	text-align: center;
	color: black;
	background-color: var(--color-headline); 
	margin: 0;
	padding: 0;
	font-size: 1em;
	background-image: url('/images/tiles/istockphoto-1154113074-612x612.jpg'), linear-gradient(to right, SlateBlue, DarkRed, DodgerBlue);
	background-image: url('/images/tiles/istockphoto-1154113074-612x612.jpg'), repeating-radial-gradient(SlateBlue, DarkRed, DodgerBlue, SlateBlue, DarkRed, DodgerBlue, SlateBlue, DarkRed, DodgerBlue);
	background-blend-mode: screen;
}

h1, h2, h3, h4, h5, h6 {
	font-family: var(--font-headline);
	color: var(--color-headline);
	margin: 0;
}

/* ---------------------------------------------------------------------- */ 
/* Scratch this ugly default! */
p {
	margin: 0;
}


/* ---------------------------------------------------------------------- */ 
/* Layout Elements */
div.corral {
	text-align: left;
	width: 800px;
	margin: 0 auto;
	padding-top: 0;
	padding-bottom: 8px;
	padding-left: 8px;
	padding-right: 8px;
	background-color: var(--color-background90);
}

div.header {
	display: grid;
	grid-template-columns: 20% 80%;
	padding-top: 12px;
}

div.content {
	/* Contains the data dump */
	width: 100%;
}

div.centerOverlay {
	display: block;
	width: 800px;
	height: 100%;
	margin: 0 auto;
	position: relative;
}

div.linkage {
	background-color: var(--color-headline); 
	/* https://developer.mozilla.org/en-US/docs/Web/CSS/color_value/color-mix */
	background-color: color-mix(in srgb, var(--color-headline) 90%, transparent);
	background-color: var(--color-headline90); 
	
	color: var(--color-buttontext);
	display: block; /* Hidden by default */
	height: 100%; /* Full height */
	overflow: auto; /* Enable scroll if needed */
	position: fixed; /* Stay in place */
	top: -2000px;
	transition-property: top;
	transition-duration: 0.5s;
	width: 800px; /* Full width */
	z-index: 9; /* Sit on top */
}

div.show {
	width: 100%;
	padding: 0px;
	border-top: thin var(--color-headline) ridge;
	border-bottom: thin var(--color-headline) ridge;
	margin-top: 2px;
	margin-bottom: 2px;
	background-color: var(--color-accent10);
}

div.show~div.show {
	margin-top: 5px;
}

.grid-container2col, .grid-container3col, .grid-players {
	display: grid;
}

.grid-header {
	display: grid;
	grid-template-columns: 20% 80%;
	padding-top: 12px;
}

.grid-container2col {
	grid-template-columns: 25% 75%;
}

.grid-container3col {
	grid-template-columns: 12% 65% 23%;
}

.grid-players {
	column-gap: 8px;
	grid-template-columns: 50% 50%;
	margin-top: 4px;
	margin-left: -8px; 
	width: 70%;
}

.grid-container-thumb {
	background-color: white;
	border-radius: 4px;
	padding: 4px;
	margin: 4px;
	line-height: 0; /* Missing this, an extra 4px is added to bottom of image! */
}

.grid-container-thumb img {
	width: 100%;
}

.grid-container-split {
	align-items: flex-start;
	display: flex;
	flex-wrap: nowrap;
	flex-direction: column;
	justify-content: space-between;
}

.grid-container-Year {
	align-items: center;
	display: flex;
	flex-direction: column;
	flex-wrap: wrap;
	justify-content: flex-start;
	padding: 4px;
	width: 100%;
}

div.content-Description {
	padding: 4px;
	width: 100%;
}

div.content-SearchLinkage, div.content-Footnote, div.content-Research {
	padding-top: 4px;
	padding-right: 8px;
	padding-bottom: 4px;
	padding-left: 4px;
	text-align: right;
	width: 100%;
}

div.content-Footnote {
	color: var(--color-headline);
	font-size: large;
	font-style: italic;
}

div.content-Research {
	padding-bottom: 8px;
}

div.content-SearchLinkage {
	color: var(--color-accent);
	font-size: small;
}

div.header-Buttons {
	float: right;
	margin-top: 4px;
	text-align: right;
	position: relative;
	top: 0px;
	right: 0px;
	z-index: 1;
}

div.content-RightFloater {
	float: right;
	width: 15%;
	text-align: right;
}

div.content-Year {
	color: var(--color-buttontext);
	border-radius: 6px;
	border-style: hidden;
	background-color: var(--color-headline80); 
	display: inline;
	font-family: var(--font-body);
	font-size: xx-large;
	font-style: italic;
	font-weight: bolder;
	margin-right: 0; /* 4px; */ 
	padding-left: 8px;
	padding-right: 8px;
}

div.content-SkullCandy {
	line-height: 0;
	margin-top: 4px;
	padding: 0;
	width: 80%;	
}

div.content-TapersSection {
	line-height: 0;
	margin: auto;
	padding: 0;
	text-align: center;
}

div.content-TapersSection1 {
	text-align: center;
	line-height: 0;
	margin: auto;
	padding: 0;
	padding-top: 4px;
	width: 100%;	
}

div.footer {
	width: 100%;
	line-height: 0;
	margin-top: 10px;
}

/* ---------------------------------------------------------------------- */ 
/* Ordinary Link Styles */
a {
	color: Blue;
	text-decoration: none;
}
a:hover, a:focus {
	color: var(--color-accent);
	text-decoration: underline;
}

/* ---------------------------------------------------------------------- */ 
/* Thumbnail image as link */ 
.hotimagelink:hover {
	box-shadow: 0 0 2px 1px var(--color-accent50); 
	cursor: pointer;
}

.showPartial {
	transition-property: background-image;
	transition-duration: 2s;
}

.showPartial:hover {
	/* LightPink #FFB6C1 (255,182,193) */
	/* background-image: radial-gradient(red, indigo 60%, rgba(255, 182, 193, 0.1) 75%); */ 
	background-image: radial-gradient(hotpink 10%, lightpink 20%, hotpink 30%, lightpink 40%, hotpink 50%, rgba(255, 182, 193, 0.01) 60%); 
	background-image: radial-gradient(#b366ff 10%, #ffe6e9 20%, #b366ff 30%, #ffe6e9 40%, #b366ff 50%, rgba(255, 182, 193, 0.01) 60%); 
}

.showSkull:hover {
	/* LightPink #FFB6C1 (255,182,193) */
	background-image: radial-gradient(white, gold 45%, rgba(255, 182, 193, 0.1) 75%); 
}

/* ---------------------------------------------------------------------- */ 
/* Page Header Formatting */ 
.headTheDate {
	color: var(--color-headline);
  	font-family: instant-zen;
	font-size: 96px;
	font-weight: bolder;
	letter-spacing: 4px;
	line-height: 96px;
	padding-left: 4px;
	padding-top: 24px;
	text-align: left;
}

.menuHeader {
	color: var(--color-buttontext);
  	font-family: instant-zen;
	font-size: 48px;
	font-weight: bolder;
	letter-spacing: 2px;
	line-height: 48px;
	text-align: center;
}

.headButtonCol {
	display: inline-block;
	float: right;
	margin-top: 4px;
	text-align: right;
	position: relative;
	top: 0px;
	right: 2px;
	z-index: 1;
	width: 15%;
}

.headButtonCol > button {
	margin-top: 8px;
}

.headButtonRow {
	display: grid;
	grid-auto-columns: 18%;
	grid-auto-flow: column;
	grid-column-gap: 8px;
}

.headLogo {
	float: right;
	float: left;
	margin-left: 8px;
	margin-right: 12px;	
}

.headLogo img {
	width: 100%;
}

.twirl {
	animation-delay: 0.5s;
	animation-direction: alternate;
	animation-duration: 1.5s;
	animation-iteration-count: 2;
	animation-name: fullcircle;
	transform: rotate(0deg);
	animation-timing-function: ease-in;
}

@keyframes fullcircle {
	0%		{transform: rotate(0deg);}
	30%	{scale:0.60;}
	100%	{transform: rotate(360deg); scale: 0.9;} 
}

.spin {
	animation: spinner 3s linear infinite;
	animation-name: spinner;
	animation-duration: 10s;
	animation-timing-function: linear;
	animation-iteration-count: 2;
}

@keyframes spinner {
	from		{transform: rotate(0deg);}
	to			{transform: rotate(360deg);} 
}

.headTitle {
	margin-left: 12px;
}

.subheadShows {
	color: var(--color-headline);
	font-family: var(--font-headline);
	font-size: 42px;
	font-style: italic;
	font-weight: bolder;
	padding-left: 4px;
}

.footnoteShows {
	color:var(--color-accent);
	margin-bottom: 24px;
}


/* ---------------------------------------------------------------------
 Button Formatting: Next/Prev
---------------------------------------------------------------------- */
.button {
	background-color: var(--color-accent);
	border: none;
	border-radius: 4px;
	cursor: pointer;
	display: inline-block;
	font-family: var(--font-headline);
	font-weight: bold;
	font-size: large;
	margin-bottom: 0px;
	margin-left: 2px;
	margin-right: 2px;
	/*margin-top: 8px;  (Only used in a column!) */
	padding-bottom: 4px;
	padding-left: 8px;
	padding-right: 8px;
	padding-top: 2px;
	text-align: center;
	text-decoration: none;
	transition-duration: 0.4s;
}


.button a {
	color: inherit;
	text-decoration: none;
}

.buttonNextPrev {
	background-color: var(--color-accent20); 
	color: var(--color-accent); 
	border: 1px solid var(--color-accent);
	letter-spacing: 1px;
	margin-bottom: 4px;
	width: 100%;
}

.buttonNextPrev:hover {
	background-color: var(--color-headline);
	color: var(--color-buttontext);
}

/* ---------------------------------------------------------------------
 Description Formatting: Venue, Linkage 
---------------------------------------------------------------------- */ 
.venueName {
	display: block;
	color: var(--color-headline);
	font-family: var(--font-body);
	font-size: xx-large;
	font-weight: bolder;
	line-height: 1em;
}

.venueCity {
	display: block;
	color: var(--color-headline);
	font-family: var(--font-body);
	font-size: x-large;
	font-weight: bold;
}

.archivePage {
	display: block;
	font-size: large;
	padding-top: 10px;
}

/* ---------------------------------------------------------------------
 Tooltips: https://www.w3schools.com/css/css_tooltip.asp
---------------------------------------------------------------------- */
.tooltip {
  position: relative;
  display: inline-block;
  border-bottom: 1px dotted black;
}

.tooltiptext {
	font-size: medium;
}

.tooltip .tooltiptext {
  visibility: hidden;
  width: auto;
  background-color: var(--color-headline);
  color: powderblue;
  text-align: center;
  border-radius: 6px;
  padding: 5px 0;
  position: absolute;
  z-index: 1;
  top: 110%;
  left: 50%;
  margin-left: -60px;
}

.tooltip .tooltiptext::after {
  content: "";
  position: absolute;
  bottom: 100%;
  left: 50%;
  margin-left: -5px;
  border-width: 5px;
  border-style: solid;
  border-color: transparent transparent black transparent;
}

.tooltip:hover .tooltiptext {
  visibility: visible;
}

/* ---------------------------------------------------------------------
  Transitions
---------------------------------------------------------------------- */
.fadeaway {
	transition-property: opacity;
	transition-duration: 5s;
}
.fadeaway:hover {
	opacity: 0.05;
}

/* ---------------------------------------------------------------------
  Meter Widget
---------------------------------------------------------------------- */
.meter-corral {
	border-radius: 2px;
	margin-top: 4px;
	overflow: hidden;
	height: 8px;
	width: 80%;
}

.meter-container{ /* uses this to display value, by sliding contained div to right 
						revealing colorful background */
	background-image: linear-gradient(270deg, var(--color-headline) 15%,  var(--color-pale-background) 100%);
	background-image: linear-gradient(  0deg, var(--color-mid-background), var(--color-headline), var(--color-mid-background));
	background-image: linear-gradient(  0deg, var(--color-mid-background), var(--color-dark-background), var(--color-mid-background));
	height: 100%;
	width: 100%; 
}
.gdMeter { /* slid to the right to indicate value using container's colorbar */
	background: var(--color-pale-background); /* Lavender or #DDD2F3 ? */
	height: 100%;
	width: 100%;
}


/* ---------------------------------------------------------------------
  Modal Popup Widget
---------------------------------------------------------------------- */
/* The Modal (background) */
.modal-dialog {
  display: none; /* Hidden by default */
  position: fixed; /* Stay in place */
  z-index: 9; /* Sit on top */
  padding-top: 100px; /* Location of the box */
  left: 0;
  top: 0;
  width: 100%; /* Full width */
  height: 100%; /* Full height */
  overflow: auto; /* Enable scroll if needed */
  background-color: Black; /* Fallback color */
  background-color: var(--color-black80); /* Black w/ opacity */
}

/* Modal Content (Image) */
.modal-content {
	max-height: 90%;
}

/* Caption of Modal Image (Image Text) - Same Width as the Image */
.modal-caption {
	text-align: center;
	padding: 10px 0;
	height: 150px;
	color: var(--color-buttontext);
}

/* Add Animation - Zoom in the Modal */
.modal-content, .modal-caption {
	animation-name: zoom;
	animation-duration: 0.6s;
	display: block;
	margin: auto;
}

@keyframes zoom {
	from {transform:scale(0)}
	to {transform:scale(1)}
}

/* The Close Button */
.modal-close {
	position: absolute;
	top: 15px;
	right: 35px;
	color: #f1f1f1;
	font-size: 40px;
	font-weight: bold;
	transition: 0.3s;
}

.modal-close:hover, .modal-close:focus {
	color: #bbb;
	text-decoration: none;
	cursor: pointer;
}

/* 100% Image Width on Smaller Screens */
@media only screen and (max-width: 700px){
	.modal-content {
		width: 100%;
	}
}


/* ---------------------------------------------------------------------
 Horizontal menubar with dropdowns
---------------------------------------------------------------------- */
.hMenu {
	display: inline-block;
}

.hMenu ul {
	list-style-type: none;
	margin: 0;
	padding: 0;
	overflow: hidden;
	/* background-color: white; */
}

.hMenu li {
	background-color: var(--color-accent20); 
	color: var(--color-accent);
	float: left;
	text-align:center;
	/* Following are used to separate buttons */
	border-color: var(--color-accent);
	border-radius: 6px;	
	border-style: solid; 
	border-width: 1px;
}

.solidbar {
	background-color: var(--color-accent20); 
}

.solidbar li {
	background-color: transparent;
	border: none;
	border-radius: 0;
	margin-right: 0;
}

.hMenu li + li { /* Add left margin to all but first element */
	margin-left: 12px;
}

.buttonFixedWidth {
	min-width: 25%;
}

.hMenu li a, .dropbtn {
	color: var(--color-accent);
	display: inline-block;
	font-family: var(--font-body);
	font-weight: bold;
	font-size: large;
	padding: 4px 8px;
	text-align: center;
	text-decoration: none;
	transition-duration: 0.3s;
	width: 100%;
}

.hMenu li a:hover, .dropdown:hover  {
	background-color: var(--color-headline);
	color: var(--color-buttontext);
}

.hMenu li.dropdown {
	display: inline-block;
}

.hMenu .dropdown-content {
	display: none;
	position: absolute;
	background-color: var(--color-pale-background);
	min-width: 160px;
	box-shadow: 0px 8px 16px 0px var(--color-black20);
	z-index: 1;
}

.hMenu .dropdown-content a {
	color: var(--color-accent);
	display: block;
	font-weight: normal;
	padding: 6px 12px;
	text-decoration: none;
	text-align: left;
}

.hMenu .dropdown-content a:hover {
	background-color: var(--color-dark-background);
	color: white;
}

.hMenu .dropdown:hover .dropdown-content {
	display: block;
}

.search {
	display: inline-block;
	float: right;
	position: relative;
}

.search button a {
	color: var(--color-accent);
}

.search button a:hover {
	background-color: var(--color-headline);
	color: var(--color-buttontext);
}

.search:hover .searchContent {
	max-height: 200px;
}

.searchButton {
	background-color: var(--color-accent20);
	color: var(--color-accent);
	border-color: var(--color-accent);
	border-radius: 6px;	
	border-style: solid; 
	border-width: 1px;
	cursor: pointer;
	display: inline-block;
	font-size: large;
	padding: 4px 8px;
	text-align:center;
}

.searchButton:hover {
	background-color: var(--color-headline);
	color: var(--color-buttontext);
}

.searchContent {
	background-color: var(--color-pale-background);
	box-shadow: 0px 8px 16px 0px var(--color-black20);
	color: var(--color-accent);
	position: absolute;
	right: 0;
	margin-top: 2px;
	margin-right: 4px;
	/* min-width: 160px; */
	max-height: 0;
	overflow: hidden;
	transition: all 0.3s ease-in-out;
	z-index: 1;
}

.searchContent a {
	background-color: var(--color-pale-background);
	color: var(--color-accent);
	display: block;
	padding: 6px 12px;
	text-decoration: none;
}

.searchContent a:hover {
	background-color: var(--color-dark-background);
	color: white;
}


/* ---------------------------------------------------------------------
---------------------------------------------------------------------- */

