/* 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 {
  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;
}

nav {
  display: flex !important;
  flex-direction: row;
  font-family: "Playfair Display";
  background-color: #f0ecec;
  color: #2b2d42;
  justify-content: space-between;
  /* width: 100%; */
}

nav ul {
  list-style-type: none;
  display: flex;
  padding: 1rem;
  margin: 0;
}

nav ul li {
  margin: 1rem;
  font-size: 1.5rem;
}

nav ul li:hover {
  text-decoration: underline;
}

nav h1 {
  font-size: 2.5rem;
  font-weight: 600;
  margin: 1.3rem 1.5rem;
}

.topinfo {
  font-size: 1.5rem;
  font-family: "Open Sans";
  font-style: italic;
  line-height: 1.5;
  margin: 2%;
}

.topinfo .para2 {
  font-size: 1rem;
  margin-top: 2rem;
}
.topinfo span {
  font-size: 3rem;
  font-weight: 500;
  font-style: italic;
}
.tableNimg {
  display: flex;
  flex-direction: row-reverse;
  justify-content: space-between;
  flex-wrap: wrap;
  margin: 2%;
}

.tableNimg img {
  width: 49%;
  height: 25rem;
  border-radius: 1.5rem;
  /* height:; */
}

.bookingtable {
  display: flex;
  background-color: #2b2d42;
  color: #f0ecec;
  font-family: "Open Sans";
  flex-direction: column;
  justify-content: space-evenly;
  width: 49%;
  height: 25rem;
  border-radius: 1.5rem 1.5rem;
}

.bookingtable input {
  margin: 1.3rem 4%;
  width: 80%;
  height: 2rem;
  background-color: #f0ecec;
  border-radius: 0.5rem;
}

.bookingtable input:enabled {
  border: 2px solid white;
  color: green;
}

.bookingtable label {
  margin: 1.3rem 4%;
  font-size: 1.1rem;
}

.bookingtable button {
  margin: 1.3rem 4%;
  height: 2.5rem;
  width: 6rem;
  border: 0;
  background-color: #f0ecec;
  font-size: 1.2rem;
  font-family: "Open Sans";
  color: #2b2d42;
  transition: transform 200ms ease-in-out;
  border-radius: 0.2rem;
}

.bookingtable button:hover {
  transform: translate(0, -2px);
  background-color: #eae2b7;
}
.bookingtable h2 {
  font-size: 2rem;
  font-weight: 200;
  margin: 1.3rem 4%;
}

.imgs {
  display: flex;
  flex-wrap: wrap;
  margin: auto 2%;
  width: 96%;
  align-items: flex-start;
  justify-content: center;
}

.review {
  width: 25%;
  background-color: #f0ecec;
  display: flex;
  justify-content: center;
  flex-direction: column;
  align-items: center;
  border-radius: 1rem;
  padding: 0.5rem;
  margin: 0.3rem;
  height: 55%;
}

/* #mid{
  transform: translate(0,100px);
} */

.review img {
  display: block;
  width: 100%;
  height: 20rem;
  border-radius: 0.5rem;
}

.review .lead {
  font-family: "Open Sans";
  font-weight: 200;
  font-size: large;
  line-height: 1.5;
}

.social {
  display: flex;
  width: 1rem;
  flex-wrap: wrap;
  margin: 5% 5%;
  width: 90%;
  align-items: flex-start;
  justify-content: center;
}
.social img {
  display: block;
  height: 5rem;
  width: 5rem;
}

.social .media {
  width: 8rem;
  height: 8rem;
  border-radius: 5rem;
  background-color: #f0ecec;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 1rem;
  transition: transform 200ms ease-in-out;
}

.social .media:hover {
  transform: translate(0, -10px);
  box-shadow: 4px 4px #e9ecef;
}

footer {
  display: flex;
  background-color: #f0ecec;
  justify-content: center;
}

footer ul {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 1%;
  width: 90%;
  justify-content: space-evenly;
}

footer ul li {
  color: #2b2d42;
  font-family: "Playfair Display";
  font-size: 1.5rem;
  margin: 1.5rem;
}

footer ul li a {
  text-decoration: none;
  color: #2b2d42;
}

footer ul li:hover {
  text-decoration: underline;
}

@media (max-width: 860px) {
  nav ul {
    display: none;
  }
  .review{
    width: 30%;
  }
  .review img{
    height: 15rem;
  }
  .tableNimg {
    flex-direction: column;
    align-items: center;
  }
  .tableNimg img {
    width: 100%;
  }
  .bookingtable {
    width: 100%;
  }
}

@media (max-width: 603px) {
  nav h1{
    font-size: 2rem;
    margin-left: 0;
  }
  .review {
    width: 100%;
    margin: 1.2rem 0;
  }
  .review img {
    width: 96%;
    height: 70%;
  }
  .bookingtable {
    margin-top: 1rem;
  }
}

@media (max-width: 400px) {
  footer ul {
    flex-direction: column;
  }
  .topinfo span{
    font-size: 2rem;
  }
}
