/* -------------------------------
	GoodFood Template
	v 1.0 (December 2014)
	by FreshPixels.pl
------------------------------------*/
/* -------------------------------
	Foundation
------------------------------------*/
@import url("foundation.css");

/* -------------------------------
	Google Fonts
------------------------------------*/
@import url('https://fonts.googleapis.com/css?family=Montserrat:400,700');

@import url('https://fonts.googleapis.com/css?family=Old+Standard+TT:400,700');

/* -------------------------------
	Awesome Font
------------------------------------*/
@import url("http://maxcdn.bootstrapcdn.com/font-awesome/4.2.0/css/font-awesome.min.css");

/* -------------------------------
	Animate CSS
------------------------------------*/
@import url("animate.css");

/* -------------------------------
	Timeline & Flexslider
------------------------------------*/
@import url("timeline.css");
@import url("flexslider.css");

/* -------------------------------
	Mobile
------------------------------------*/
@import url("mobile.css");

:root {
    --primary-color: #2b2b2b;
		--secondary-color: #000000;
		--text-color: #000000;
		--white-color: #ffffff;
		--primary-font: 'Montserrat', sans-serif;
		--secondary-font: 'Old Standard TT', serif;
}

/* -------------------------------
	Typography
------------------------------------*/
.big {
	text-transform: uppercase;
}

.margin0 {
	margin: 0!important;
}

body {
	font-family: var(--primary-font);
	overflow-x: hidden;
	/* background-image: url(../img/minimal.jpg); */
}

p, li, td, input, label, blockquote p, blockquote {
	font-family: var(--primary-font);
	font-size: 16px;
	font-weight: 300;
	color: var(--text-color);
	list-style-type:square;
	padding-right: 10px;
	padding-left: 10px;
}
ul.my {margin-left: 40px;
}

.blog-text p, .blog-text li, .blog-text td, .blog-text input, .blog-text label {
	font-family: var(--primary-font);
	font-size: 16px;
	font-weight: 300;
}

.carousel {
	margin: 40px 0 20px 0;
}

h1, h2, h3, h4, h5, h6 {
	font-family: var(--secondary-font);
	margin: 0 0 1.25rem 0;
	font-weight: 400;
	line-height: normal;
	padding-left: 10px;
	padding-top: 20px;
}

h1 {
	font-size: 6.9em;
}

h2 {
	font-size: 3.9em;
}

h3 {
	font-size: 3.1em;
}

h4 {
	font-size: 2.5em;
}

h5 {
	font-size: 1.9em;
}

h6 {
	font-size: 0.75em;
}

.fontsans {
	font-family: var(--primary-font);
	font-weight: 400;
}

.button,
button {
	font-family: var(--primary-font);
	font-size: 0.9em;
	text-transform: uppercase;
	background:none;
	border: 1px solid var(--primary-color);
	color: var(--primary-font);
	padding: 18px 30px;
	font-weight: 700;
}

.button:hover,
button:hover {
	background: var(--secondary-color);
	color: var(--white-color);
 	border: 1px solid var(--secondary-color);
}

a {
	-webkit-transition: all 0.3s ease;
	-moz-transition: all 0.3s ease;
	-ms-transition: all 0.3s ease;
	-o-transition: all 0.3s ease;
	transition: all 0.3s ease;
}

	a:hover {
		color: var(--secondary-color);
	}

/* -------------------------------
	Header & Footer Bottom
------------------------------------*/
#header {
	background-image: url(../img/1.jpg);
	background-repeat: no-repeat;
	background-position: center center;
	position: relative;
	-moz-background-size: cover!important;
	-webkit-background-size: cover!important;
	background-size: cover!important;
}

	#header:before,
	#footer:before {
		content: "";
		position: absolute;
		top: 0;
		left: 0;
		right: 0;
		bottom: 0;
		display: block;
		background:rgba(0,0,0,0.3);
	}

	#header nav,
	#footer-bottom {
		background: rgba(0,0,0,0.3);
		position: relative;
		z-index: 20;
	}

		#header nav ul,
		#footer-bottom ul {
			list-style-type: none;
			text-align: right;
			margin: 0;
		}

			#header nav ul li {
				display: inline-block;
				font-size: 14px;
				font-weight: 700;
				text-transform: uppercase;
				padding: 0px 0 0 20px;
				position: relative;
				line-height: 96px;
			}

			#header nav ul li ul {
				position: absolute;
				top: 100%;
				left: 5px;
				width: 230px;
				background: var(--white-color);
				text-align: left;
				z-index: 66;
				display: none;
				-webkit-box-shadow: 0 10px 50px 0 rgba(0,0,0,0.1);
				box-shadow: 0 10px 50px 0 rgba(0,0,0,0.1);
			}

				#header nav ul li:hover ul {
					display: block;
				}

			#header nav ul li ul li {
				display: block;
				padding: 0;
				width: 100%;
				line-height: normal;
			}

			#header nav ul li ul li a {
				color: var(--primary-color);
				display: block;
				width: 100%;
				padding: 25px 15px;
				border-bottom: 1px solid rgba(0,0,0,0.04)!important;
			}

				#header nav ul li ul li a::before {
				 display: none;
				}

				#header nav ul li ul li a:hover {
					color: var(--secondary-color);
				}

			#footer-bottom ul li {
				display: inline-block;
				font-size: 12px;
				font-weight: 700;
				text-transform: uppercase;
				padding: 0px 0 0 20px;
				line-height: 96px;
			}

			#header nav ul li a {
				display: block;
				color: var(--white-color);
				padding: 3px 0;
				-webkit-transition: all 0.3s ease;
				-moz-transition: all 0.3s ease;
				-ms-transition: all 0.3s ease;
				-o-transition: all 0.3s ease;
				transition: all 0.3s ease;
				position: relative;
			}

				#header nav ul li a:before {
					content: "";
					position: absolute;
					bottom: 30px;
					left: 50%;
					width: 0%;
					transform: translateX(-50%);
					height: 2px;
					background: var(--white-color);
					-webkit-transition: all 0.3s ease;
					-moz-transition: all 0.3s ease;
					-ms-transition: all 0.3s ease;
					-o-transition: all 0.3s ease;
					transition: all 0.3s ease;
				}

				#header nav ul li a:hover:before {
					width: 100%;
				}

			#footer-bottom ul li a {
				display: block;
				color: rgba(255,255,255,0.6);
				-webkit-transition: all 0.3s ease;
				-moz-transition: all 0.3s ease;
				-ms-transition: all 0.3s ease;
				-o-transition: all 0.3s ease;
				transition: all 0.3s ease;
			}

				#header nav ul li a:hover {
					color: rgba(255,255,255,0.8);
				}

				#header nav ul li a.active {
					color: rgba(255,255,255,1);
				}

				#footer-bottom ul li a:hover {
					color: rgba(255,255,255,1);
				}

	#header .logo,
	#footer-bottom .logo {
		color: rgba(255,255,255,1);
		font-family: var(--secondary-font);
		font-size: 25px;
		line-height: 6rem;
		display: block;
	}

	#header-content {
		text-align: center;
		padding: 6rem 0;
		color: rgba(255,255,255,1);
		position: relative;
		z-index: 10;
	}

		#header-content h1 {
			color: rgba(255,255,255,1);
			margin: 0;
		}

		#header-content h5 {
			color: rgba(255,255,255,1);
		}

#showmobilemenu {
	display: block;
	width: 100%;
	color: var(--white-color);
	border:1px solid var(--white-color);
	padding: 10px;
	margin-bottom: 1.2rem;
	cursor: pointer;
}

	form#findrecipe {
		margin: 5rem auto 0 auto;
		width: 40%;
		background: rgba(255,255,255,1);
		border-radius: 40px;
		padding: 7px 20px;
	}

		form#findrecipe input[type="text"] {
			margin: 0px;
			border: 0px;
			box-shadow: none;
			font-family: var(--primary-font);
			font-size: 18px;
			font-weight: 700;
		}

			form#findrecipe input[type="text"]:focus {
				background: rgba(255,255,255,1);
			}

		form#findrecipe input[type="submit"] {
			width: 100%;
			background: url(../img/search.png) no-repeat 80% 50%;
			border: none;
			display: block;
			height: 61px!important;
			cursor: pointer;
			padding: 0px!important;
		}

/* -------------------------------
	Content
------------------------------------*/
.content-padding {
	padding: 3rem 0;
}

	.content-padding.recipes {
		padding: 3rem 0 0rem 0;
	}

.head {
	padding: 0 0 .5rem 0;
	margin: 0 0 0rem 0;
}

.head.align-center {
	/* background: url(../img/line.jpg) no-repeat bottom center; */
	text-align: center;
}

.head.align-left {
	background: url(../img/line.jpg) no-repeat bottom left;
}

	.head strong {
		letter-spacing: 2px;
	}

/* -------------------------------
	Recipes list
------------------------------------*/
.recipe {
	margin: 0 0 4rem 0;
}

	.recipe h4 {
		font-size: 1.1rem;
		line-height: 1.6rem;
		padding: 0 13%;
	}

	.recipe-cover img {
		-webkit-transition: all 0.3s ease;
		-moz-transition: all 0.3s ease;
		-ms-transition: all 0.3s ease;
		-o-transition: all 0.3s ease;
		transition: all 0.3s ease;
	}

.recipe-cover {
	width: 100%;
	margin: 0 0 1rem 0;
	-moz-background-size: cover!important;
	-webkit-background-size: cover!important;
	background-size: cover!important;
	position: relative;
	overflow: hidden;
}

		.recipe-cover:before {
			content: "";
			position: absolute;
			top: 0;
			left: 0;
			right: 0;
			bottom: 0;
			display: block;
			background:rgba(0,0,0,0.1);
			z-index: 5;
		}

	.recipe-cover a {
		position: absolute;
		z-index: 20;
		color: rgba(255,255,255,1);
	}

		.recipe-cover a.like {
			top: 10px;
			left: 10px;
			padding: 6px 12px;
			background: var(--primary-color);
			font-family: Arial, sans-serif;
			font-size: 12px;
			-webkit-transition: all 0.3s ease;
			-moz-transition: all 0.3s ease;
			-ms-transition: all 0.3s ease;
			-o-transition: all 0.3s ease;
			transition: all 0.3s ease;
		}

			.recipe-cover a.like .fa {
				font-size: 15px;
				vertical-align: middle;
				margin: 0 0.3rem 0 0;
			}

			.recipe-cover a.like:hover {
				background: var(--secondary-color);
			}

		.recipe-cover a.type {
			bottom: 10px;
			right: 10px;
			font-family: var(--secondary-font);
			font-size: 17px;
			font-weight: 700;
			-webkit-transition: none;
			-moz-transition: none;
			-ms-transition: none;
			-o-transition: none;
			transition: none;
		}

		a.recipe-link {
			display: block;
			width: 100%;
			height: 100%;
			position: absolute;
			z-index: 15;
		}
		
		a.mylink {
		color:#039;
		text-decoration:underline;
		}
		
/* -------------------------------
	About Me
------------------------------------*/
.fullwidth .row {
	width: 100%;
	max-width: 100%!important;
}

	.aboutme {
		padding: 4rem;
		background: #f9f9f9;
	}

	.myphoto {
		width: 100%;
		-moz-background-size: cover!important;
		-webkit-background-size: cover!important;
		background-size: cover!important;
		position: relative;
	}

/* -------------------------------
	Blog
------------------------------------*/
.item {
	float: left;
}

	.item:hover .entry-name {
		-webkit-box-shadow: 0 10px 50px 0 rgba(0,0,0,0.1);
		box-shadow: 0 10px 50px 0 rgba(0,0,0,0.1);
	}

	.entry-name {
		background:#f9f9f9;
		padding: 2.5rem;
		margin: 0 0 2rem 0;
		-webkit-transition: all 0.3s ease;
		-moz-transition: all 0.3s ease;
		-ms-transition: all 0.3s ease;
		-o-transition: all 0.3s ease;
		transition: all 0.3s ease;
	}

	.entry-name:hover {
		background: var(--white-color);
	}

		.entry-name p:last-child {
			margin: 0;
		}

	p.data {
		color: rgba(0,0,0,0.4);
		margin: 0;
		margin-bottom: 1.5rem;
		font-size: 0.75rem;
	}

	.cover,
	.entry-cover {
		position: relative;
		overflow: hidden;
	}

	.entry-cover {
		width: 100%;
		min-height: 550px;
    max-width: 1920px;
		-moz-background-size: cover!important;
		-webkit-background-size: cover!important;
		background-size: cover!important;
    background-position: center center;
    background-repeat: no-repeat;
		position: relative;
		margin: 0 auto 50px auto;
	}

	.entry-cover a.all {
		display: block;
		width: 100%;
		height: 100%;
		position: absolute;
		z-index: 5;
	}

	.cover .like-it,
	.entry-cover .like-it {
		position: absolute;
		bottom: 0.8rem;
		right: 0.8rem;
		background: var(--primary-color);
		font-size: 1.4rem;
		-webkit-transition: all 0.3s ease;
		-moz-transition: all 0.3s ease;
		-ms-transition: all 0.3s ease;
		-o-transition: all 0.3s ease;
		transition: all 0.3s ease;
		color: rgba(255,255,255,1);
		z-index:20;
		line-height: 2.6rem;
		width: 2.6rem;
		text-align: center;
	}

		.entry-cover .like-it {
			background:var(--white-color)!important;
			color:rgba(0,0,0,0.7)!important;
		}

		.cover .like-it:hover,
		.entry-cover .like-it:hover {
			background: var(--secondary-color)!important;
			color: var(--white-color)!important
		}

		.cover .like-it .fa,
		.entry-cover .like-it .fa {
			vertical-align: middle;
		}

	.cover img {
		display: block;
		padding: 0;
		margin: 0;
		-webkit-transition: all 0.3s ease;
		-moz-transition: all 0.3s ease;
		-ms-transition: all 0.3s ease;
		-o-transition: all 0.3s ease;
		transition: all 0.3s ease;
	}

		.cover:hover img,
		.recipe-cover:hover img {
			transform: scale(1.2);
		}

		.cover:before,
		.entry-cover:before {

			position: absolute;
			top: 0;
			left: 0;
			right: 0;
			bottom: 0;
			display: block;
			background:rgba(0,0,0,0.4);
			z-index: 5;
		}

	.cover a.entry-link {
		display: block;
		width: 100%;
		height: 100%;
		position: absolute;
		z-index: 15;
	}

	a.read {
		color: var(--secondary-color);
		display: block;
		margin-top: 1rem;
	}

		a.read:hover {
			color: rgba(0,0,0,0.9);
		}

.entry-title {
	font-size: 1.5rem;
}

.single-title {
	font-size: 3.4rem;
  margin: 50px 0 0 0;
}

/* -------------------------------
	Footer
------------------------------------*/
#footer {
	background-image: url(../img/2.jpg);
	background-repeat: no-repeat;
	background-position: center center;
	position: relative;
	-moz-background-size: cover!important;
	-webkit-background-size: cover!important;
	background-size: cover!important;
}

/* -------------------------------
	Footer Top
------------------------------------*/
#footer-top {
	padding: 80px 0;
}

	#footer-top h4 {
		color: var(--white-color);
		font-size: 1.6rem;
	}

	#footer-top p {
		color: rgba(255,255,255,0.75);
		font-weight: 300;
		font-size: 0.95rem;
	}

		#footer-top p:last-child {
			margin: 0;
		}

	#footer-top a {
		color: rgba(255,255,255,1);
	}

		#footer-top a:hover {
			text-decoration: underline;
		}

/*Image Styles. */
img {
	border: none;}
.image-left-noborder {
	margin: 0 10px 10px 0; 
	float: left;
	border-radius: 8px;
}
.image-left-border {
	margin: 0 10px 10px 0; 
	float: left;
	border: 3px double #c2c2c2;
	border-radius: 8px;
}
.image-right-noborder {
	margin: 0 0 10px 10px; 
	float: right;
	border-radius: 8px;
}
.image-right-border {
	margin: 0 0 10px 10px; 
	float: right;
	border: 3px double #c2c2c2;
	border-radius: 8px;
}
.image-center {
	text-align: center;
	border: none;
	text-decoration: none;
	border-radius: 8px;
}
.image-center-border {
	text-align: center;
	border: 3px double #c2c2c2;
	text-decoration: none;
	border-radius: 8px;
}
/*Make Image Scalable - Assign this class to any image to make it scale with the browser window size*/
img.scalable {
	height: auto !important;
	width: auto !important;
	max-width: 100%;
}
/* -------------------------------
	Social Icons
------------------------------------*/
@font-face {
    font-family: 'si';
    src: url('fonts/socicon.eot');
    src: url('fonts/socicon.eot?#iefix') format('embedded-opentype'),
         url('fonts/socicon.woff') format('woff'),
         url('fonts/socicon.ttf') format('truetype'),
         url('fonts/socicon.svg#icomoonregular') format('svg');
    font-weight: normal;
    font-style: normal;

}

@media screen and (-webkit-min-device-pixel-ratio:0) {
    @font-face {
        font-family:si;
        src: url(fonts/socicon.svg) format(svg);
    }
}

.soc {
    overflow:hidden;
    margin:10px 0 40px 0; padding:25px 0 0 0;
    list-style:none;
    border-top:1px solid rgba(0,0,0,0.06);
}

	.soc li {
	    display:inline-block;
	    *display:inline;
	    zoom:1;
	}

		.soc li a {
		    font-family:si!important;
		    font-style:normal;
		    font-weight:400;
		    -webkit-font-smoothing:antialiased;
		    -moz-osx-font-smoothing:grayscale;
		    -webkit-box-sizing:border-box;
		    -moz-box-sizing:border-box;
		    -ms-box-sizing:border-box;
		    -o-box-sizing:border-box;
		    box-sizing:border-box;
		    overflow:hidden;
		    text-decoration:none;
		    text-align:center;
		    display:block;
		    position: relative;
		    z-index: 1;
		    width: 44px;
		    height: 44px;
		    line-height: 44px;
		    font-size: 17px;
		    -webkit-border-radius: 31px;
		    -moz-border-radius: 31px;
		    border-radius: 31px;
		    margin-right: 20px;
		    color: #cccccc;
		    background-color: #f2f2f2;
		}

		.soc li a:hover {
			background-color: var(--secondary-color);
			color: var(--white-color);
		}

			.soc-icon-last{
			    margin:0 !important;
			}

			.soc-twitter:before {
			    content:'a';
			}
			.soc-facebook:before {
			    content:'b';
			}
			.soc-google:before {
			    content:'c';
			}
			.soc-pinterest:before {
			    content:'d';
			}
			.soc-linkedin:before {
			    content:'j';
			}
			.soc-rss:before {
			    content:',';
			}

/* -------------------------------
	Comments
------------------------------------*/
#comments {
	list-style-type: none;
	margin: 0 0 60px 0;
}

	.comment {
		border-bottom:1px solid rgba(0,0,0,0.07);
		margin: 0 0 1.25rem 0;
	}

	.comment.reply {
		margin: 0 0 1.25rem 0;
	}

/* -------------------------------
	Forms
------------------------------------*/
textarea {
	font-size: 1.3rem;
	padding: 20px;
	font-weight: 300;
	min-height: 220px;
	border:1px solid rgba(0,0,0,0.06);
	box-shadow: none;
	font-family: var(--primary-font);
}

input[type="text"],
input[type="password"],
input[type="date"],
input[type="datetime"],
input[type="datetime-local"],
input[type="month"],
input[type="week"],
input[type="email"],
input[type="number"],
input[type="search"],
input[type="tel"],
input[type="time"],
input[type="url"],
input[type="color"],
textarea {
	font-size: 1rem;
	padding: 20px;
	height: auto;
	border: 1px solid rgba(0,0,0,0.04);
	box-shadow: none;
	font-family: var(--primary-font);
}

	input[type="text"]:focus,
	input[type="password"]:focus,
	input[type="date"]:focus,
	input[type="datetime"]:focus,
	input[type="datetime-local"]:focus,
	input[type="month"]:focus,
	input[type="week"]:focus,
	input[type="email"]:focus,
	input[type="number"]:focus,
	input[type="search"]:focus,
	input[type="tel"]:focus,
	input[type="time"]:focus,
	input[type="url"]:focus,
	input[type="color"]:focus,
	textarea:focus {
		background-color: var(--white-color);
		box-shadow: none;
	}

input[type="submit"] {
	font-size: 0.85rem;
	text-transform: uppercase;
	padding: 0 30px;
	line-height: 59px;
	height: auto;
	border:1px solid rgba(0,0,0,0.06);
	box-shadow: none;
	background-color: var(--primary-color);
	font-family: var(--primary-font);
	color: var(--white-color);
	font-weight: 700;
	cursor: pointer;
	-webkit-transition: all 0.3s;
	-moz-transition: all 0.3s;
	-ms-transition: all 0.3s;
	-o-transition: all 0.3s;
	transition: all 0.3s;
}

	input[type="submit"]:hover {
		color: var(--primary-color);
		background-color: var(--white-color);
		border:1px solid var(--white-color);
	}

/* -------------------------------
	Filters
------------------------------------*/
.recipes-list {
    -webkit-transition: height 0.3s;
    -moz-transition: height 0.3s;
    -ms-transition: height 0.3s;
    -o-transition: height 0.3s;
    transition: height 0.3s;
}

.recipes-list:after{
  content: '';
  display: inline-block;
  width: 100%;
}

.filters {
	margin-top: 1rem;
}

	.filters a {
		background: #f5f5f5;
		padding: 6px 12px;
		font-family: var(--primary-font);
		margin: 1rem 0.4rem;
		display: inline-block;
		font-size: 1.1rem;
		color: #949394;
		border: none;
	}

		.filters a:hover,
		.filters a:focus {
			background: var(--secondary-color);
			color: var(--white-color);
			border: none;
		}

/* -------------------------------
	Slider
------------------------------------*/
.recipe-slider.flexslider {
	background-color: none;
	border: none;
	box-shadow: none;
	margin: 0 0 50px 0;
}

	.recipe-slider.flexslider .entry-cover {
		margin: 0;
	}

		.recipe-slider.flexslider .entry-cover img {
			vertical-align: middle;
			width: 100%;
		}

.recipe-slider.flexslider .flex-direction-nav a {
    text-decoration: none;
    display: block;
    width: 31px;
    height: 60px;
    margin: -30px 0 0;
    position: absolute;
    top: 50%;
    z-index: 50;
    overflow: hidden;
    opacity: 1;
    cursor: pointer;
    color: rgba(0,0,0,0.8);
    text-shadow: 1px 1px 0 rgba(255,255,255,0.3);
    -webkit-transition: all .3s ease;
    -moz-transition: all .3s ease;
    transition: all .3s ease;
}

.recipe-slider.flexslider .flex-direction-nav .flex-prev {
    background: url(../img/left.png) no-repeat center center!important;
}

.recipe-slider.flexslider .flex-direction-nav .flex-next {
    text-align: right;
    background: url(../img/right.png) no-repeat center center!important;
}

.recipe-slider.flexslider:hover .flex-prev {
    opacity: 0.7;
    left: 50px!important;
}

.recipe-slider.flexslider:hover .flex-next {
    opacity: 0.7;
    right: 50px!important;
}

.recipe-slider.flexslider .flex-direction-nav a:before {
    font-family: "flexslider-icon";
    font-size: 0px;
    line-height: 1;
    display: inline-block;
    content: '';
}

.recipe-slider.flexslider  .flex-direction-nav a.flex-next:before {
    content: '';
}

/* -------------------------------
	ingredients
------------------------------------*/
.ingredients {
	background: #f9f9f9;
	padding: 30px;
}
