@charset "UTF-8";
* {
  box-sizing: border-box;
}

body {
	margin: 0;
	padding: 0;
	font-family: Times New Roman, Helvatica, Arial, san-serif;
}

/* general look of collapsible tab */
.collapsible {
	background-color: rgb(255,255,255,0.4);
	color: black;
	cursor: pointer;
	padding: 5px;
	width: 100%;
	border: 1px solid rgba(92,0,0,0.4);
	text-align: left;
	outline: none;
	font-family: Times New Roman;
	text-transform: uppercase;
	letter-spacing: 2px;
	font-weight: 700;
}

/* change color on hover and active tab*/ 
.active, .collapsible:hover {
    background-color: rgba(92,0,0,0.7);
    color: rgb(255,255,255);
}


/* add downarrow icon at the rightmost of the collabsible tab */
.arrowDown {
	border: solid black;
	border-width: 0 2px 2px 0;
	display: inline-block;
	padding: 6px;
	transform: rotate(45deg);
	-webkit-transform: rotate(45deg);
}

button i {
	clear: both;
    float: right;
	margin-left: 50px;
	margin-right: 50px;
	opacity: 0.5;
}

button h2 {
	margin-left: 50px;
}

h3{
	text-transform: uppercase;
	font-family: Times New Roman;
	font-size: x-large;
	font-weight: lighter;
	letter-spacing: 5px;
	text-align: center;
	color: #800000;
}
.content {
  padding: 0 18px;
  display: none;
  overflow: hidden;
  background-color: rgb(255,255,225);
  font-family: Times New Roman;
  letter-spacing: 2px;
}

h4 {
  @include clearfix;
  position: relative;
  font-weight: 700;
  margin: 0;
  padding-bottom: 0px;
  padding-top: 25px;
  span {
    float: left;
    width: 10%;
    text-align: center;
    display: block;
    &:first-child {
      width: 40%;
      float: right;
    }
  }
}
.content {
	@include clearfix;
	width: 80%;
	margin: 0 auto;
	border: 1px solid rgba(255,255,255,0.6);
	padding: 40px;
}
.content > span {
	font-style: italic;
}

span.price {
	float: right;
}

p {
	text-align: center;
	font-size: larger;
}  

html {
	background-image:linear-gradient(rgba(255,255,255,0.6), 
	rgba(255,255,255,0.1)), url(background/Restaurant_River_Kwai_012.jpg);
	background-attachment: fixed;
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
}

html, body {
	height: 100%
}

#menu-row {
	overflow-y: auto;
	height: 100%;
}
.column {
	float: left;
	width: 50%;
	height: 500px;
	margin: 0px;
}
.column > img {
	height: 100%; 
	width: 100%; 
	object-fit: cover;
	margin: 0;
}
.Footer {
	clear: both;
	position: relative;
	left: 0;
	width: 100%;
	background-color: rgb(92,0,0,0.8);
	color: white;
	text-align: center;
	left:0; 
	top:0;
	overflow:auto;
	margin:0;
}

.Footer > div{
	float: left;
	width: 33.3%;
	overflow: hidden;
}

.fab, .far, .fas{
	padding: 10px 10px;
	font-size: 25px;
	text-align: center;
	text-decoration: none;
	color: rgb(255,255,255, 0.7);
	font-family: 'Font Awesome 5 Free';
	font-style: normal;
	font-weight: 900;	
	top: -7%;
	left: -7%;
	transform: translate(7%, 7%);
	/*-ms-transform: translate(-50%, -50%);*/
}

.fab:hover, .far:hover, .fas:hover{
	color: rgb(255,255,255)
}

@media screen and (max-width: 786px) {
	h2, button i {
		font-size: small;
		margin-left: 30px;
	}
	.fab, .far, .fas{
		padding: 12px;
		font-size: 20px;
	}
	p {
		font-size: medium;
	}
	.column {
		width: 100%;
	}
	.Footer div:nth-child(1), .Footer div:nth-child(3) {
		display: none;
	}
	.Footer div:nth-child(2) {
		width: 100%;
		height: auto;
}
@media screen and (max-width: 400px) {
	h3{
		font-size: medium;
		font-weight: 700;
	}
	h2, button i {
		font-size: x-small;
		margin-left: 25px;
	}
	.fab, .far, .fas {
		padding: 6px;
		font-size: 15px;
	}
	p {
		font-size: small;
	}
	.column {
		width: 100%;
	}
	.Footer div:nth-child(1), .Footer div:nth-child(3) {
		display: none;
	}
	.Footer div:nth-child(2) {
		width: 100%;
		height: auto;
}