$primary-text-color: #ff5800;
$hover-transition: .3s ease all;
$gallery-margin: 10px;

// Allowing to run foundation.js file
meta.foundation-data-attribute-namespace { font-family: false; }

// Importing basic HTML element stylings. See it like reset + small stylings
@import "general-basic";

html {
	box-sizing: border-box;
	-webkit-font-smoothing: antialiased;
}

*,
*:before,
*:after {
	box-sizing: inherit;
}

::selection {
	background: $primary-text-color;
	color: #FFF;
}

// Add margin-top to body tag when admin-bar is visible.
body.admin-bar {
	padding-top: 32px;
	@media (max-width: 782px) { padding-top: 46px; }
}

body {
	font-family: $font-sans;
	font-size: $global-font-size;
	line-height: 1.7;
	background: white;
}

/**
 * Since this is dashboard layout we need 100% width on all
 * elements, so there is no empty space left.
 */
.row {
	// max-width: 100%;
	// width: 100%;
	max-width: $breakpoint-medium;
}

p:first-child {
	margin-top: 0;
}

p:last-child {
	margin-bottom: 0;
}

a {
	text-decoration: none;
	color: $primary-text-color;
	transition: $hover-transition;
}

h1,
h2,
h3,
h4,
h5 {
	line-height: 1.2;
	font-family: $font-heading;

	// Removes the default margins from the headings.
	// Add this customly for entry content if needed.
	margin: 0;
}

h1 {}
h2 {}
h3 {}
h4 {}
h5 {}

@media (max-width: $breakpoint-small) {
	h1 {
		font-size: 1.6em;
	}
}

blockquote {
	margin: 1.5em;
	padding: 20px;
	font-size: 18px;
	color: #838383;
	font-weight: 100;

	&:before {
		color: #838383;
		content: "\f10d";
		font-family: FontAwesome;
		margin-left: -20px;
		position: absolute;
		font-size: 14px;
	}

	cite {
		color: #999999;
		font-size: 14px;
		display: block;
		margin-top: 5px;

		&:before {
			content: "\2014 \2009";
		}
	}
}

hr {
	height: 1px;
	border: none;
	width: 100%;
	background: #f0f0f0;
}

// Required WordPress stylings
img.alignright {
	margin: 20px 0 20px 20px;
}

img.alignleft {
	margin: 20px 20px 20px 0;
}

img.aligncenter {
	margin: 20px auto;
}

img {
	max-width: 100%;
	height: auto;
	margin-bottom: -8px; // Fixes weird spacing under images
}


legend,
td,
th {
	padding: 10px;
	border: 1px solid #ececec;
}

/**
 * Required classes by WordPress. To pass the theme check
 * stylings to those must be applied, since the SASS watch
 * script is skipping classes that have no properties.
 */
.sticky { display: block; }
.bypostauthor { display: block; }

.alignleft {
	display: inline;
	float: left;
	margin-right: 1.5em;
}

.alignright {
	display: inline;
	float: right;
	margin-left: 1.5em;
}

.aligncenter {
	clear: both;
	display: block;
	margin-left: auto;
	margin-right: auto;
}

ol,
ul {
	margin: 0;
	padding: 0;
	list-style-position: inside;
	list-style-type: none;
}

ol {
	counter-reset: item;
}

.screen-reader-text {
	clip: rect(1px, 1px, 1px, 1px);
	position: absolute !important; // sass-lint:disable-line no-important
	height: 1px;
	width: 1px;
	overflow: hidden;
}

.screen-reader-text:focus {
	background-color: #f1f1f1;
	border-radius: 3px;
	box-shadow: 0 0 2px 2px rgba(0, 0, 0, 0.6);
	clip: auto !important; // sass-lint:disable-line no-important
	color: #21759b;
	display: block;
	font-size: 0.875rem; // 14px
	font-weight: bold;
	height: auto;
	left: 5px;
	line-height: normal;
	padding: 15px 23px 14px;
	text-decoration: none;
	top: 5px;
	width: auto;
	z-index: 100000; /* Above WP toolbar. */
}

// Do not show the outline on the skip link target.
#content[tabindex="-1"]:focus { // sass-lint:disable-line no-ids
	outline: 0;
}

// Media
.page-content .wp-smiley,
.entry-content .wp-smiley,
.comment-content .wp-smiley {
	border: none;
	margin-bottom: 0;
	margin-top: 0;
	padding: 0;
}

// Make sure embeds and iframes fit their containers.
embed,
iframe,
object {
	max-width: 100%;
}


// Captions
.wp-caption {
	margin-bottom: 1.5em;
	max-width: 100%;
}

.wp-caption img[class*="wp-image-"] {
	display: block;
	margin-left: auto;
	margin-right: auto;
}

.wp-caption .wp-caption-text {
	margin: 0.8075em 0;
}

.wp-caption-text {
	text-align: center;
}

// Gallery defaults
.gallery {
	margin-bottom: 1.5em;
}

.gallery-item {
	display: inline-block;
	text-align: center;
	vertical-align: top;
	width: 100%;

	img {
		width: 100%;
	}
}

.gallery-columns-2 .gallery-item {
	max-width: calc(50% - 10px);
}

.gallery-columns-3 .gallery-item {
	max-width: calc(33.33% - 10px);
}

.gallery-columns-4 .gallery-item {
	max-width: calc(25% - 10px);
}

.gallery-columns-5 .gallery-item {
	max-width: calc(20% - 10px);
}

.gallery-columns-6 .gallery-item {
	max-width: calc(16.66% - 10px);
}

.gallery-columns-7 .gallery-item {
	max-width: calc(14.28% - 10px);
}

.gallery-columns-8 .gallery-item {
	max-width: calc(12.5% - 10px);
}

.gallery-columns-9 .gallery-item {
	max-width: calc(11.11% - 10px);
}

.gallery-item {
	position: relative;
	margin: 5px;

	&.has-caption {
		&:before {
			content: "?";
			display: block;
			position: absolute;

			font-size: 12px;
			font-weight: 700;
			line-height: 22px;

			width: 22px;
			height: 22px;
			bottom: 5px;
			left: 5px;

			background: rgba(255, 255, 255, 0.60);
			color: #222;
			box-shadow: 1px 1px 3px -1px #000;
			border-radius: 50%;
			transition: .3s ease;

			visibility: visible;
			opacity: 1;
		}

		&:hover {
			&:before {
				visibility: hidden;
				opacity: 0;
			}

			.gallery-caption {			
				visibility: visible;
				opacity: 1;
			}
		}
	}
}

.gallery-caption {
	display: block;
	position: absolute;
	z-index: 1;

	padding: 8px;
	bottom: 0;
	left: 0;
	width: 100%;
	pointer-events: none;
	transition: .3s ease;

	background: rgba(0, 0, 0, 0.9);
	color: #FFF;

	visibility: hidden;
	opacity: 0;

	font-size: 0.8em;
}
