@charset "utf-8";
/* CSS Document */

/* http://meyerweb.com/eric/tools/css/reset/ 
   v2.0 | 20110126
   License: none (public domain)
*/

html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed, 
figure, figcaption, footer, header, hgroup, 
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
	font: inherit;
	vertical-align: baseline;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section, main {
	display: block;
}
body {
	line-height: 1;
}
ol, ul {
	list-style: none;
}
blockquote, q {
	quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
	content: '';
	content: none;
}
table {
	border-collapse: collapse;
	border-spacing: 0;
}

/*Box-sizing reset */

html {
  box-sizing: border-box;
}
*, *:before, *:after {
  box-sizing: inherit;
}


/* basic setting */
body {
	font-family: 'Roboto', sans-serif; 
}

h1,h2,h3, fieldset, select, input, figcaption, 
.button, .navbar a, .menu-link a {
	font-family: 'Oswald', sans-serif;
}

p {
	line-height: 1.8;
}


a {
	text-decoration: none;
}

main {
	padding-bottom: 150px;
	margin-bottom: 270px;
	position: relative;
	z-index: 6666;
	background-color: #fff;
}

hr {
	width: 30%;
	border: 3px solid #262626;
}

img {
	width: 100%;
 	height: auto;
}

/* type setting */
.about h1, .contact h1, .menu-top h1, .content-panel h1  {
	font-size: 3.5em;
	margin-bottom: 30px;
	color: #262626;
	text-transform: uppercase;
}

.about p, .contact p, .menu-top p {
	font-size: 1.5em;
	margin-top: 30px;
}

/* button style */
.button {
    border: 3px solid #f5f7e2;
    color: #f5f7e2;
    text-align: center;
    display: block;
    font-size: 1.2em;
    cursor: pointer;
    letter-spacing: 1px;
    -webkit-transition: all .5s ease-in-out;
    transition: all .5s ease-in-out;
}

.button:hover,
.button:focus {
	border-color: #ead47b;
	background-color: #ead47b;
    color: #333;
}

.button-toggle {
	display: none;
}


/* nav bar */
.navbar {
	height: 60px;
	position: fixed;
	top:0;
	width:100%;
	z-index: 7777;
	-webkit-transition: all .5s ease-in-out;
	transition: all 0.5s ease-in-out;
}

.logo {
	margin-top: 10px;
	width: 40px;
}

.navbar ul {
	float:right;
}

.navbar li {
	display: inline-block;
}

.navbar a {
 	color: #fff; 
	padding-left: 25px;
	padding-right: 25px;
	line-height: 60px;
	font-size: 16px;
	-webkit-transition: 0.3s;
	transition: 0.3s;
}

.navbar a:hover,
.navbar a:focus,
.navbar .pg-active {
  	color: #ead47b;
}

.navblack {
	background: #000; 
}

.nav-scroll {
	background: rgba(0,0,0,0.9);
}


/* home */
.header {
	 overflow: hidden; 
	 position: relative;
}

.hero {
	width:100%;
	height: 100vh;
	background-image: url(../images/hero_bright.jpg);
	background-repeat: no-repeat;
	background-size: cover;
	background-attachment: fixed;
	background-position: bottom;
	-webkit-transition: all 0.5s ease-in-out;
	transition: all 0.5s ease-in-out;
}

.logotype {
	position: absolute;
	top: 0;
	width: 100%;
	height: 100vh;
	background: url(../images/mintra_transparent_black.png);
	background-size: cover;
	background-position: center;
	z-index: 555;
	opacity: 0.85;
}

.scroll-down {
	position: absolute;
	left: 50%;
	bottom: 20px;
	margin-left: -15px;
	color: rgba(255,255,255,.4);
	z-index: 666;
	animation: pointDown 1s infinite alternate;
}

.scroll-down p {
	font-size: 14px;
	margin-bottom: -15px;
}

@keyframes pointDown {
	to {
		transform: translateY(10px);
	}
}

/* about */

.about {
	width: 60%;
	margin: 120px auto 90px;
	opacity: 0;
	transform: translateX(-20px);
	text-align: center;
	-webkit-transition: all 1s ease-in-out;
	transition: all 1s ease-in-out;
}

/* gallery */
.thumb-three {
	opacity: 0;
	transform: translateX(-20px);
	-webkit-transition: all 1s ease-in-out;
	transition: all 1s ease-in-out;
}

.menu-gallery {
	display: flex;
	justify-content: space-between;
	width: 90%;
	margin: 0 auto;
}

.three-cols {
	width: 31.5%;
}

figure {
 	cursor: pointer;
	-webkit-filter: saturate(70%);
    filter: saturate(70%);
}

figure:hover, figure:focus {
 	-webkit-filter: saturate(100%);
    filter: saturate(100%);
 }


figcaption {
 	position: absolute;
	bottom:0;
	right: 0;
	margin-right: 10px;
	margin-bottom: 10px;
	font-size: 5em;
	text-align: right;
	color: #000;
 }

/* override modal box*/
.blocker {
	z-index: 8888;
}

#ex1, #ex2, #ex3 {
	width: 70%;
}

.modal-box {
	width: 100%;
} 

.modal {
	padding: 10px;
}

.sy-controls li a:after {
	background-image: url(../images/arrows.svg);
}

.sy-caption-wrap {
    bottom: 0.5em;
} 

.sy-pager li {
    margin-right: 0.5em;
}

.sy-pager li a {
	width: 50%;
    height: 50%;
}

/* set width of image in the slider */
.img-gallery {
	width: 80%;
}

/* menu */
.menu-section {
	padding-bottom: 0;
}

.menu-top {
	width: 60%;
	margin: 150px auto 120px;
	color: #262626;
	text-align: center;
}

.full-page {
	height:auto;
	position: relative;
}

.title {
	position:absolute;
	top:0;
	width:50%;
	left:0;
	height: 100%;
	color: #f5f7e2;
	text-transform: uppercase;
	text-align: center;
 	background-repeat: no-repeat;
	background-size: cover;
	background-position: left;
	background-attachment: fixed;
	-webkit-transition: all 10s ease-in-out; 
	transition: all 10s ease-in-out;
}

.starter {
	background-image: url(../images/huapli.jpg);
}

.main {
	background-image: url(../images/padthai.jpg);
}

.dessert {
	background-image: url(../images/mango-sticky.jpg);
}


.drinks {
	background-image: url(../images/raspberry.jpg);
} 

.menu-title {
	position: relative;
	top:40%;
	left:0;
	width: 100%;
	z-index: 8888;
	font-size: 8em;
}

.menu-title-mobile {
	display: none;
	padding-top: 30px;
	padding-bottom: 30px;
	background-attachment: fixed;
	font-size: 4em;
	text-transform: uppercase;
	text-align: center;
	color: #fff;
}

.menu-section > div:nth-child(2) > div:nth-child(2) {
	background-image: url('../images/huapli.jpg');
}

.menu-section > div:nth-child(3) > div:nth-child(2) {
	background-image: url('../images/padthai.jpg');
}

.menu-section > div:nth-child(4) > div:nth-child(2) {
	background-image: url('../images/mango-sticky.jpg');
}

.menu-section > div:nth-child(5) > div:nth-child(2) {
	background-image: url('../images/raspberry.jpg');
}

.menu-link {
	display: flex;
	justify-content: space-between;
	width: 85%;
	margin: 100px auto 0;
}

.menu-link li {
	width: 33.333%;
	text-align: center;
}

.menu-link a {
	display: block;
	font-size: 30px;
	color: #f5f7e2;
	padding: 5px 15px;
	border-right: 3px solid #f5f7e2;
	-webkit-transition: 0.3s;
	transition: 0.3s;
}

.menu-link li:last-child a {
	border-right: none;
}

.menu-link a:hover,
.menu-link a:focus {
  color:#ead47b;
}

.content-panel {
	position:relative;
	top:0;
	width: 50%;
	left: 50%;
	height: 2000px;
	background-color: #f5f7e2;
	font-size: 1em;
	border-bottom: 2px solid #666;
}

.content-panel h1{
	text-align: center;
	display: none;
}

.menu-content {
	padding: 30% 15% 0;
}

.menu-content td {
	height: 100px;
	padding-bottom: 20px;
}

.item {
	padding-right: 20%;
}

.item h3 {
	font-family: 'Roboto', sans-serif;
	font-size: 1.3em;
	font-weight: 700;
	margin-bottom: 10px;
	color: #262626;
}

.description{
	line-height: 1.2;
}

.price {
	font-size: 1.2em;
	text-align: right;
}


/* contact */
.contact-header {
	width:100%;
	padding-top: 100px;
	padding-bottom: 100px;
	background-image:url(../images/entrace.jpg);
	background-position: top;
	background-size: cover;
	background-repeat: no-repeat;
	position: relative;
}

fieldset {
	max-width: 600px;
	width: 50%;
	margin: 0 auto;
	z-index: 8888;
	padding: 80px 40px 60px;
	border: 7px solid #f5f7e2;
	color: #f5f7e2;
	opacity: 0;
	-webkit-animation: fadeIn 2s ease-in-out 1;
	animation: fadeIn 2s ease-in-out 1;
    -webkit-animation-fill-mode:forwards; 
  	animation-fill-mode:forwards;
}

@keyframes fadeIn {
	from {transform: translateX(20px); 
		  opacity: 0;}
	to {transform:translateY(0);
		  opacity: 1;}
}

legend {
	font-size: 4.5em;
	padding: 0 25px;
}

label {
	display:block;
	width:120px;
	float:left;
	text-align: right;
	margin-right: 15px;
	text-transform: uppercase;
	margin-top: 12px;
	font-size: 25px;
}

input, select {
	display:block;
	margin-bottom: 35px;
	font-size: 1em;
	padding: 5px;
	width: 70%;
	background-color: #f5f7e2;
	border: 3px solid transparent;
}

input:hover {
	border: 3px solid #c7a51f;
}

.submit {
	width: 170px;
	margin: 40px auto 0;
	padding: 10px;
	background-color: transparent;
}

.contact {
	width: 960px;
	margin: 80px auto;
	overflow: auto;
	text-align: center;
}

.contact-half {
	width: 45%;
	float: left;
	opacity: 0;
	transform: translateX(-20px);
	-webkit-transition: all 1s ease-in-out;
	transition: all 1s ease-in-out;
}

.contact-half:first-child {
	margin-right: 10%
}

#map {
	width: 94%;
	height: 400px;
	margin: 0 3%;
}

/* footer */
footer {
	width: 100%;
	padding: 20px 10px;
	position:fixed;
	bottom:0;
	background-image:url(../images/footer-index.jpg);
	background-position: bottom center;
	background-size: cover;
	background-repeat: no-repeat;
	color: #f5f7e2;

}

.footer {
	display: flex;
	justify-content: space-between;
	max-width: 960px;
	margin: 0 auto;
	padding: 30px;
}

.footer > div {
	width: 32%;
}

footer h3 {
	font-size: 1.5em;
	padding-bottom: 10px;
	border-bottom: 3px solid #f5f7e2;
	text-transform: uppercase;
	letter-spacing: 1px;
	width: 80%;
}

footer p {
	font-size: 0.9em;
	margin-bottom: 10px;
}

footer a {
	color: #f5f7e2;
	-webkit-transition: all .5s ease-in-out; 
	transition: all .5s ease-in-out; 
}

footer a:hover,
footer a:focus {
	color: #ead47b;
}

footer .button {
    width: 90%;
	padding: 15px;
    margin-bottom: 20px;
}

i {
	margin-right: 5px;
}

.icon-text {
	width:0;
	height:0;
	overflow: hidden;
	display: inline-block;
}

.social {
	margin-top: 7px;
}

.credit {
	text-decoration: underline;
}

.footer-menu {
	background-image: none;
	background-color: #000;
}

.footer-contact {
	background-image:url(../images/entrace.jpg);
	background-size: cover;
}


.is-showing {
	opacity: 1;
	transform: translateX(0);
}

footer > p {
	font-size: 0.7em;
	text-align: center;
}

/* Image credits */
.image-credit {
	width: 960px;
	margin: 100px auto;
	line-height: 2;
}

.image-credit h1 {
	font-size: 3em;
}

.image-credit h3 {
	font-size: 2em;
	margin-top: 20px;
}

/* media queries */
@media only screen and (max-width: 1200px) {
	.text-box {
		width: 70%;
	}

	figcaption {
		font-size: 4em;
	}

	fieldset {
		width: 65%;
		padding: 30px;
	}
}

@media only screen and (max-width: 1080px) {

	main {
		margin-bottom: 250px;
	}

	.text-box {
		width: 80%;
	}

	.title {
		width: 40%;
	}

	.content-panel {
		width: 60%;
		left: 40%;
	}

	.menu-title {
		font-size: 5em;
	}

	.menu-link {
		width: 70%;
	}

	.menu-link a {
		font-size: 20px;
	}

	footer {
		height: 250px;
	}

	.footer {
		width: 90%;
		padding-left: 0;
		padding-right: 0;
		padding-bottom: 20px;
	}
}

@media only screen and (max-width: 960px) {

	main {
		padding-bottom: 80px;
	}

	.about{
		width: 90%;
		margin-top: 60px;
		margin-bottom: 60px;
	}

	.menu-top {
		width: 90%;
		margin-bottom: 60px;
	}

	.menu-content {
		padding: 80px 50px 50px;
	}

	.image-credit {
		width: 90%;
	}

}

@media only screen and (max-width: 855px) {

	.about p, .menu-top p, .contact p {
		font-size: 1.2em;
	}

	figcaption {
		font-size: 3em;
	}

	.title {
		display: none;
	}

	.content-panel {
		height: auto;
		width: 100%;
		left: 0;
		border-bottom: none; 
	}

	.menu-title-mobile {
		display: block;
	}

	fieldset {
		width: 85%;
	}
}

@media only screen and (max-width: 730px) {

	.logotype {
		background: url(../images/mintra_transparent_black_s.png);
		background-size: cover;
		background-position: center;
	}

	.text-box {
		width: 90%;
	}

	#ex1, #ex2, #ex3 {
		width: 75%;
	}

}

@media only screen and (max-width: 680px) {

	.about h1, .contact h1, .menu-top h1  {
		font-size: 3em;
	}

	.menu-gallery {
		flex-wrap: wrap;
	}

	.three-cols {
		width: 100%;
	    margin-bottom: 20px;
	    max-height: 300px;
	    overflow: hidden;
	}

	figcaption {
		font-size: 5em;
	}

	fieldset {
		border: none;
		padding: 0;
	}

	legend {
		text-align: center;
		padding: 0;
		margin-bottom: 10px;
	}

	input, select {
		width: 100%;
		margin-bottom: 5px;
	}

	label {
		text-align: left;
		font-size: 20px;
		margin-bottom: 5px;
	}
}

@media only screen and (max-width: 600px) {
	.navbar {
		height: 55px;
	}

	.logo {
		width: 30px;
	}

	.navbar a {
		line-height: 55px;
		padding-left: 10px;
		padding-right: 15px;
	}

	figcaption {
		font-size: 4em;
	}

	.menu-content {
		padding-left: 25px;
		padding-right: 25px;
	}

	.contact-header {
	    padding-bottom: 80px;
	}

	legend {
		font-size: 3em;
	}

	.contact-half {
		width: 100%;
	}

	.contact > div:first-child {
		margin-bottom: 50px;
	}

	.footer {
		flex-wrap: wrap;
	}

	.footer > div {
		width: 48%;
	}

	.footer > div:first-child {
		display: none;
	}

	.footer > div:nth-child(2) {
		display: none;
	}

	.footer > div:last-child {
		width: 100%;
		-webkit-column-count: 2;
		-moz-column-count: 2;
		column-count: 2;
		-webkit-column-gap: 0;
		-moz-column-gap: 0;
		column-gap: 0;
		margin-bottom: 10px;
	}

	footer .button {
		width: 90%;
		margin: 0 auto;
		font-size: 1em;
	}

	footer .button:nth-child(even) {
		margin-top: 20px;
	}

	.button-toggle {
		display: block;
	}

}

@media only screen and (max-width: 370px) {

	#ex1, #ex2, #ex3 {
	    width: 100%;
	}
	
	.item h3 {
		font-size: 1.1em;
	}

	.footer > div {
		width: 100%;
	}

	.footer > div:nth-child(2) {
		margin-left: 0;
		margin-top: 30px;
	}

}