@import url('https://fonts.googleapis.com/css?family=Montserrat:400,400i,800|Playfair+Display:900&display=swap');

html{
  scroll-behavior: smooth;
}

body{
  width: 100vw;
  margin: auto;
  overflow-x: hidden;
  background-color: #ededed;
  font-family: "Montserrat", sans-serif;
  background-image: url("paper.jpg");
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  }

.banner{
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  width: 100%;
  height:100vh;
  background-image:url("banner.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
}

#logo{
  width: 35em;
  height: auto;
  z-index: 0;
  animation: fade-in 3s both 0.5s, scale 1.5s both 0.5s, blur 1.5s both, glow 5s both;
  position: absolute;
  right: 0%;
}

#intro{
  color: white;
  filter: drop-shadow(0px 0px 5px rgba(252, 175, 126, 0.9));
  position: absolute;
  bottom: 5%;
  animation: fade-in-out 10s both 1.5s, scale 1.5s both 1.5s, blur 1.5s both 0.5s, glow 5s both 1s;
  letter-spacing: 1.5px;
  font-size: 16px;
}

@keyframes fade-in-out {
  0% {opacity: 0;}
  10% {opacity: 1;}
  90% {opacity: 1;}
  100% {opacity: 0;}
}

@keyframes fade-in {
  0% {opacity: 0;}
  100% {opacity: 1;}
}

@keyframes scale {
  0% {transform: scale(1.3);}
  100% {transform: scale(1);}
}

@keyframes blur {
  0% {filter: blur(12px) opacity(0%);}
  100% {filter: blur(0.01) opacity(100%);}
}

@keyframes glow {
  0% {filter:drop-shadow(0px 0px 5px rgba(252, 175, 126, 0));}
  100% {filter:drop-shadow(0px 0px 5px rgba(252, 175, 126, 0.9));}
}

.navbar{
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  height: 45px;
  background-color: white;
  z-index: 100000 !important;
  box-shadow: 0px 3px 3px rgba(0, 0, 0, 0.1);
}

.workpage .navbar, .faqpage .navbar, .blogpage .navbar, .listpage .navbar{
  position: fixed;
  top: 0;
  width: 100%;
}

.navbar .seperator{
  display: flex;
  align-items: center;
}

.navbar img{
  width: auto;
  height: 20px;
  margin-top: 0;
  margin-bottom: 0;
}

.navbar a {
  font-size: 16px;
  color: black;
  text-align: center;
  padding: 11px 10px 10px;
  text-decoration: none;
}

.search-container{
  padding-left: 15px;
  position: relative;
  top: 3px;
}

.navbar #site{
  text-transform: uppercase;
  color: #f3aa89;
  padding: 13px 10px;
  margin-top: -1px;
  letter-spacing: 1px;
}

.booking{
  padding: 6px 15px;
  margin: 0 25px 0 10px;
  border-radius: 50px;
  border: none;
  outline: none;
  color: #fff;
  background: #f3aa89;
}

.booking:hover{
  cursor: pointer;
  background-color: #ed8a5c;
  transition: .2s;
  animation: scale-up-center 1.5s cubic-bezier(0.390, 0.575, 0.565, 1.000) both infinite;
}

@keyframes scale-up-center {
  0% {transform: scale(1);}
  50% {transform: scale(1.1)}
  100% {transform: scale(1);}
}

.search-container{
  margin-top: 3px;
}

.subnav {
  overflow: hidden;
}

.subnav .subnavbtn {
  border: none;
  outline: none;
  color: black;
  padding: 11px 15px 10px;
  background-color: white;
  margin: 0;
}

.navbar a:hover, .subnav:hover .subnavbtn {
  background-color: rgba(243, 170, 137, 0.7);
  color: white;
  cursor: pointer;
  transition: .2s;
}

.subnav-content {
  display: none;
  position: absolute;
  background-color: white;
  width: 150px;
  z-index: 5;
  box-shadow: 3px 3px 3px rgba(0, 0, 0, 0.1);
}
.subnav-content a {
  display: block;
  float: left;
  color: black;
  text-decoration: none;
}

.subnav:hover .subnav-content {
  display: flex;
  flex-direction: column;
  transition: .2s;
}

.sticky {
  position: fixed;
  top: 0;
  width: 100%;
}

main{
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  position: relative;
  padding: 100px 100px 0;
}

.workpage main{
  padding-top: 90px;
}

.listpage main{
  padding-top:0;
}

.bar {
  width: 100%;
  height: 950px;
  background: #f3aa89;
  position: absolute;
  top: -30px;
  right: 0;
  left: 0;
  clip-path: polygon(100% 10%, 100% 60%, 0 75%, 0 25%);
  z-index: -1;
}

#imgleftbox{
  margin-left: -300px;
  margin-bottom: 100px;
}

#smallpicleft{
  position: absolute;
  width: 430px;
  height:475px;
  object-fit: cover;
}

#heartright{
  position: relative;
  width: 200px;
  height:200px;
  object-fit: cover;
  top: 50px;
  left: 760px;
  z-index: 3;
}

.faqpage #heartright{
  position: relative;
  width: 100px;
  height:100px;
  object-fit: cover;
  top: -70px;
  left: 270px;
  z-index: 5;
  margin-bottom: -100px;
}

.infofooter #heartright{
  position: relative;
  width: 100px;
  height:100px;
  object-fit: cover;
  top: -80px;
  left: 250px;
  z-index: 5;
  margin-bottom: -100px;
}

#imglefttext{
  position: relative;
  top:-60px;
  left: 300px;
  background-color: white;
  padding: 50px;
  z-index: 2;
  max-width: 600px;
}

#slider{
  width: 100%;
  height:auto;
  background-color: white;
  padding: 100px;
  margin-top: -50px;
  margin-bottom: 160px;
  display: flex;
  align-items: center;
  position: relative;}

#slider::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("s2.jpg");
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  filter: grayscale(100%);
  opacity: 30%;
}

.workpage #slider{
  margin-bottom: 60px;
}

.divider{
  background-color: white;
  padding: 40px 70px;
  z-index: 5;
  margin-top: 0px;
  min-width: 400px;
  text-align: center;
}

.faqpage .divider{
  background-color: rgba(255,255,255, 0.6)
}

#spread{
  display: grid;
  grid-template: auto / 1fr 1fr;
  width: 100vw;
  scroll-margin: 130px 0 0 30px;
}

.availability{
  grid-area: 1 / 1 / 2 / 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  min-width: 300px;
  background-color: #f3aa89;
  padding: 45px 100px;
  text-align: center;
  font-size: 1.5em;
}

.contactform {
  grid-area: 1 / 2 / 2 / 3;
  position: relative;
  padding: 20px 100px;
  background-color: white;
}

#contact {
  display: flex;
  flex-direction: column;
  background: white;
  max-width: 500px;
  padding: 25px;
  margin: auto;
}

fieldset {
  border: medium none !important;
  margin: 0;
  width: 100%;
  padding: 0;
}

input, textarea{
  font-family: "Montserrat", sans-serif;
  border: 1px solid #ccc;
  background: #FFF;
  margin: 0 0 10px;
  padding: 10px;
}

input:hover, #contact textarea:hover {
  -webkit-transition: border-color 0.3s ease-in-out;
  -moz-transition: border-color 0.3s ease-in-out;
  transition: border-color 0.3s ease-in-out;
  border: 1px solid #aaa;
}

#contact textarea {
  height: 100px;
  max-width: 100%;
  resize: none;
}

button{
  font-family: "Montserrat", sans-serif;
  cursor: pointer;
}

button[type="submit"] {
  border: none;
  background: #f3aa89;
  color: #FFF;
  margin: 0 0 5px;
  padding: 10px;
  font-size: 15px;
}

button[type="submit"]:hover {
  background: #ed8a5c;
  -webkit-transition: background 0.3s ease-in-out;
  -moz-transition: background 0.3s ease-in-out;
  transition: background-color 0.3s ease-in-out;
}

button[type="submit"]:active {
  box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.5);
}

input:focus,
textarea:focus {
  outline: 0;
  border: 1px solid #aaa;
}

::placeholder {
  color: #888;
}

input[type="submit"]{
  cursor: pointer;
  border: none;
  background: #f3aa89;
  color: #FFF;
}


input[type="submit"]:hover{
  background: #ed8a5c;
  -webkit-transition: background 0.3s ease-in-out;
  -moz-transition: background 0.3s ease-in-out;
  transition: background-color 0.3s ease-in-out;
}

footer{
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-around;
}

.subscribe{
  margin-top: 60px;
  padding-bottom: 100px;
}

.faqpage footer{
  width: 100%;
  height: 100%;
  background-image: url("paper.jpg");
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  padding-top: 50px;
}

.faqbg img{
  filter: grayscale(100%);
  width: 100%;
  height: 100vh;
  opacity: 30%;
  position: fixed;
  top: 0;
  left: 0;
  object-fit: cover;
  object-position: 50% 30%;
  z-index: -1;
}

.faq{
  padding: 50px 100px;
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  position: relative;
}

.accordion {
  background-color: rgba(255, 255, 255, 0.7);
  font-size: 1em;
  cursor: pointer;
  padding: 20px 30px;
  width: 700px;
  text-align: left;
  border: none;
  outline: none;
  transition: 0.4s;
}

.active, .accordion:hover {
  background-color: #f3aa89;
}

.panel {
  padding: 0 30px;
  width: 640px;
  background-color: white;
  display: none;
  overflow: hidden;
}

.latest{
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-around;
  flex-wrap: wrap;
}

.blogpage #slider{
  margin-bottom: 0;
}

.featured{
  background-color: #000;
  width: 25vw;
  min-width: 300px;
  height: 25vw;
  min-height: 300px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  margin: 20px;
}

.featured img{
  width: 100%;
  min-width: 300px;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  object-fit: cover;
  opacity: 70%;
}

.featured h2{
  font-family: "Montserrat", sans-serif;
  font-weight: 800;
  letter-spacing: 1.5px;
  color: white;
  text-align: center;
  z-index: 5;
  background-color: rgba(243, 171, 137, 0.8);
  margin: 40px;
  padding: 20px;
  text-transform: uppercase;
}

.bloglisting{
  background-color: white;
  width: 100%;
  height: auto;
  padding: 100px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
}

.listing{
  min-width: 600px;
  height: auto;
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  justify-content: center;
  margin-top: 50px;
}

#picleft{
  width: 25%;
  height: 25%;
  min-width: 200px;
  margin-right: 40px;
  object-fit: cover;
}

.listpage #picleft{
  width: 30%;
}

.posting form{
  display: flex;
  flex-direction: column;
  align-items: center;
}

.posting textarea{
  width: 400px;
}

a{
  color: black;
  transition: .2s;
}

a:hover{
  color: #f3aa89;
}

.featured a{
  text-decoration: none;
  z-index: 6;
}

p{
  max-width: 570px;
}

.panel p{
  max-width: none;
}

h1{
  font-family: "Playfair Display", serif;
  font-weight: 900;
  margin: 0;
  z-index: 5;
}

.blogpage .divider h1{
  margin-bottom: -15px;
}

.bloglisting h1{
  width: 85vw;
  min-width: 800px;
  border-bottom: 1px solid #f3aa89;
}

h2{
  font-family: "Playfair Display", serif;
  font-weight: 900;
  margin-top: 0;
}

.bloglisting h2{
  font-family: "Montserrat", sans-serif;
  font-size: 24px;
}

h3{
  margin: 0 0 20px;
}

h4{
  font-weight: 400;
  font-style: italic;
}

ul{
  padding: 0;
  list-style-type: none;
}

li{
  margin: 3px;
}

.stylepage{
  width: 100%;
}

.stylepage #section{
  margin: 50px 200px 70px;
}

.big{
  font-size: 100px;
  font-family: "Playfair Display", serif;
  font-weight: 900;
}

.big2{
  font-size: 40px;
  font-family: "Montserrat", sans-serif;
  font-weight: 900;
}

.logo img{
  width: 400px;
  height: 400px;
  background-color: black;
  border-radius: 200px;
}

.dot{
  border: none;
  color: white;
  padding: 65px 22px;
  text-align: center;
  text-decoration: none;
  text-transform: uppercase;
  display: inline-block;
  font-size: 25px;
  margin: 4px 30px 4px 0px;
  box-shadow: 5px 7px 5px grey;
}

.black{
  background-color: #000;
  border-radius: 50%;
  color:white;
  padding: 65px 47px;
}

.peach{
  background-color: #f3aa89;
  border-radius: 50%
}

.gray{
  background-color: #ededed;
  color:grey;
  padding: 65px 15px;
  border-radius: 50%
}

.white{
  background-color: white;
  color: grey;
  padding: 65px 47px;
  border-radius: 50%
}

.stylepage #imgleftbox{
  margin-left:50px;
}

.stylepage h1, .stylepage h2, .stylepage h3, .stylepage h4, .stylepage h5, .stylepage h6{
  margin: auto;
}

.stylepage .navbar{
  margin: auto;
  position: relative;
}

.stylepage #slider{
  width: 100%;
  padding: 100px 0px;
  margin-top: 0;
}

.stylepage .featured{
  width: 250px;
  height: 250px;
}

.stylepage .bloglisting{
  width: 82%;
  min-width: 700px;
}

.stylepage .bloglisting h1{
  width: 75%;
}
