/* reset */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* general */

html,
body {
  font-family: "Open Sans", serif;
  color: #222;
}

h1,
h2,
h3 {
  margin-bottom: 20px;
}

p {
  margin-bottom: 10px;
}

a {
  color: #222;
  text-decoration: none;
}

.separator {
  margin: 20px auto;
  height: 10px;
  width: 100px;
  background: #111;
}

.btn {
  display: inline-block;
  padding: 15px 25px;
  border-radius: 30px;
  font-weight: 700;
  font-size: 14px;
  border: 0px;
  cursor: pointer;
}

.btn-primary {
  background: white;
  color: #222;
}

.btn-dark {
  background: #222;
  color: white;
}

.btn-dark:hover {
  background: white;
  color: #222;
  border: 1px solid #222;
}

.btn-primary:hover {
  background: #222;
  color: white;
}

.container {
  max-width: 1000px;
  display: block;
  margin: auto;
}

.my-10 {
  margin-top: 10px;
  margin-bottom: 10px;
}
.my-20 {
  margin-top: 20px;
  margin-bottom: 20px;
}

.underline {
  padding-bottom: 10px;
  border-bottom: 1px solid #ddd;
}

.chip {
  display: inline-block;
  text-align: center;
  width:35px;
  border-radius: 100%;
  background:#333;
  color:white;
}

.chip-purple {
 background: #be418c;
}

.chip-brown{
 background: #8c5e24;
}

/* header*/

.header {
  background: #333;
  overflow: auto;
  line-height: 1.7em;
}

.header nav h1 {
  float: left;
  padding: 20px;
  margin-bottom: 0px;
}

.header nav h1 a {
  color: white;
}

.header nav ul {
  float: right;
  list-style: none;
}

.header nav ul li {
  float: left;
}

.header nav ul li a {
  color: white;
  padding: 20px;
  display: block;
}

.header nav ul li a:hover {
  background: #444;
}

.active {
  background: #444;
}

/* Value Proposition*/

.vp {
  height: 700px;
  background: url(../image/frame.jpg) center center;
  background-size: cover;
  text-align: center;
}

.vp-content {
  max-width: 600px;
  padding-top: 150px;
  color: white;
  display: block;
  margin: auto;
}

.vp-content h1 {
  font-size: 50px;
}

.vp-content p {
  font-size: 18px;
  letter-spacing: 0.5px;
  line-height: 1.9em;
}

/* features*/

.features {
  overflow: auto;
  padding: 100px 0px 100px 0px;
  text-align: center;
}

.feature {
  float: left;
  width: 50%;
}

/* person */

.person {
  height: 400px;
  background: url(../image/person.jpg) center center/cover;
}

/* reservation */

.reservation {
  padding: 100px 0px 100px 0px;
  text-align: center;
}

/* footer */

footer {
  background: #222;
  color: white;
  padding: 30px 0px 30px 0px;
  text-align: center;
}

footer p {
  margin-bottom: 0px;
}

/* where */

.where {
  padding: 180px 0px 100px 0px;
  overflow: auto;
  min-height: 100vh;
}

.where-img {
  float: left;
  width: 45%;
  border: 1px solid #ddd;
  border-radius: 5px;
}

.where-text {
  float: right;
  width: 50%;
}

/* contact */

.contact {
  padding: 180px 0px 100px 0px;
  min-height: 100vh;
}

.contact-form-container {
  max-width: 600px;
  margin:auto;
}

.contact-form-container form label {
  display: block;
  font-weight: 700;
}

contact-form-container form input, textearea {

  display:block;
  width:100%;
  padding: 15px;
  border: 1px solid #ddd;
  border-radius: 3px;
}

.conact-form-container form textarea {
  min-height: 80px;
}
