/* Custom css */

/* variables */
:root {
	/* colors */
	--default-blue: #2a98d3;
	--default-orange: #ff9d27;
  	--img-border-color: #80A0BB;
	--img-border-hover: #e9b766;
	
	/* tag/category colors */
	--color-card-games: ##38b76f;
	--color-dice-games: #ceb214;
	--color-coop-games: #9241e2;
	--color-articles: #898989;
	--color-family-games: #dd3333;
	--color-game-reviews: #2f4ea3;
	--color-kid-games: #1eccc6;
	--color-party-games: #e520c1;

	/* transitions */
	--transition: all .3s cubic-bezier(.25,.8,.25,1);
	--transition-short: all .2s cubic-bezier(.25,.8,.25,1);
	--transition-long: all .5s cubic-bezier(.25,.8,.25,1);
	
	/* box shadows */
	--card-shadow-1:  0 1px 3px rgba(0,0,0,0.12), 0 1px 2px rgba(0,0,0,0.24);	
	--card-shadow-2:  0 3px 6px rgba(0,0,0,0.16), 0 3px 6px rgba(0,0,0,0.23);
	--card-shadow-3:  0 10px 20px rgba(0,0,0,0.19), 0 6px 6px rgba(0,0,0,0.23);

}

.main-navigation ul.children {
	width: 100%;
}

/* hovering over links */
#secondary a {
	text-decoration: none !important;
}
a {
	transition: var(--transition-short);
}
a:hover {
	color: var(--default-orange);
}
#secondary a img {
	margin-top: 8px;
	padding: 2px;
	border: 2px solid var(--img-border-color);
	border-radius: 10px;
	transition: var(--transition);
}
#secondary a:hover img{ 
	border-color: var(--img-border-hover);
}

/* keeps category tags from breaking on space & raises on hover */
.cat-links a{
	display: inline-flex;
	-webkit-font-smoothing: antialiased;
	margin-top: 5px;
	transition: var(--transition);
}
.cat-links a:hover{
	transform: scale(1.2);
	box-shadow: var(--card-shadow-1);
}

/* change this color depending on which page we're on */
#site-navigation {
	border-top: 4px solid var(--default-blue);
}
#site-navigation li a:hover {
	background-color: var(--default-blue);
}

/* gives front page card snippets elevated look & rouded corners on bottom */
#content .post {
	border-radius: 0 4px 4px 4px;
  	box-shadow: var(--card-shadow-1);	
	transition: var(--transition-long);
}
#content .post:hover {
	box-shadow: var(--card-shadow-2);
}


/* widget title elements */
#secondary .widget-title {
	cursor: default;
}

/* table */
table.tablepress thead tr th:first-of-type {
	border-radius: 8px 0 0 0;
}
table.tablepress thead tr th:last-of-type {
	border-radius: 0 8px 0 0;
}
table.tablepress thead th {
	background-color: #A1C9DE;
	color: white;
}
table.tablepress tbody {
	transition: var(--transition);
}
table.tablepress tbody tr:hover td{
	background-color: #EDF7FE;
}

/* image captions */
.wp-caption-text {
	font-size: 12px;
	font-weight: bold;
}

/* space between tags & content */
.entry-content.clearfix {
	margin-top: 20px;
}
.entry-header {
	margin-bottom: 12px;
}

/* lightbox caption text styling */
.slb_data_title {
    font-family: sans-serif;
    font-style: italic;
    font-weight: 75;
    margin-top: 12px;
}

hr {
	border-color: #d0d0d0;
	margin: 12px 0;
}

/* header styles */
h1, h2, h3, h4 {
	color: 002c63;
}
h1, h2 {
	font-size: 32px;
	font-weight: bold;
}
h3 {
	font-size: 28px;
}
h4 {
	font-size: 24px;
}

