


/* Typography ------------------*/

body, html {
  font-family: VenusURW-Med;
  text-align: center;
  color: #222;
  font-size: 15px;
  line-height: 1.75em;
}


h1 {
  font-size: 2.5rem;
  line-height: 1em;
  text-transform: uppercase;
  margin-bottom: 2rem;
  padding-top: 9rem;
  letter-spacing: 0.03em;
}

h2 {
  font-size: 1.75rem;
  line-height: 1.2em;
  /*text-transform: uppercase;*/
  margin-bottom: 3.25rem;
  margin-top: 3.75rem;
  letter-spacing: 0em;
}

.site-title {
  color: #ffaf3e;
  text-transform: none;
  letter-spacing: 0;
}

.home .site-title {
  margin-bottom: 14rem;
}

.section-header .subtitle, 
.big-text {
  font-size: 1.35rem;
  margin-top: 1rem;
  max-width: 50rem;
  margin: 0px auto;
}

.subtitle p {
  margin-bottom: 1.5em;
  line-height: 1.5em
}

.subtitle a, .post p a {
  border-bottom: 1px solid #ddd;
}

.subtitle a:hover {
  border-color: #ffaf3e;
}

.small-text {
  font-size: 1rem;
}


/*Links*/

 a {
  color:black;
 }

 a:hover {
  color: #ffaf3e;
 }


/* Navigation Menu ------------------*/

.main-menu {
  position: fixed;
  bottom: 0rem;
  padding-top: 0.3rem;
  left:0;
  right: 0;
  margin: 0px auto;
  z-index: 11;
  background: white;
}

.main-menu ul {
}

.main-menu a {
  font-size: 1rem;
  color: black;
  padding: 0.5rem 1rem;
  display: block;
  text-transform: uppercase;
}

.main-menu a:hover {
  color: #ffaf3e;
}

.main-menu .separator {
  padding-top :0.5rem;
}


/*Booking with widget ----------------------*/

.booking,
.cart  {
  display: block;
  position: fixed;
  top: calc(50% - 6.5rem);
  right: 1.25rem;
  height: 6rem;
  width: 6rem;
  border-radius: 3rem;
  font-size: 1rem;
  line-height: 6rem;
  text-align: center;
  background: #ffaf3e;
  color: white;
  z-index: 60;
  -webkit-transition: transform 350ms;
  -moz-transition: transform 350ms;
  transition: transform 350ms;
}

.cart {
  top: calc(50% + 0.5rem);
}

.booking .close-text,
.booking.close .open-text{
  display: none;
}

.booking.close .close-text,
.booking .open-text  {
  display: block;
}


.booking:hover,
.booking.close,
.cart:hover {
  background-color: black;
  -webkit-transform:rotate(360deg);
  -moz-transform:rotate(360deg);
  transform:rotate(360deg);
}

.booking,
.booking:hover,
.cart,
.cart:hover {
  -webkit-animation-name: spin;
  -webkit-animation-duration: 360ms;
  -webkit-animation-iteration-count: 2;
  -webkit-animation-timing-function: linear;
  -moz-animation-name: spin;
  -moz-animation-duration: 360ms;
  -moz-animation-iteration-count: 2;
  -moz-animation-timing-function: linear;
  -ms-animation-name: spin;
  -ms-animation-duration: 360ms;
  -ms-animation-iteration-count: 2;
  -ms-animation-timing-function: linear;
  -o-transition: rotate(360deg);
}  

@-webkit-keyframes spin {
  from {-webkit-transform:rotate(0deg);}
  to {-webkit-transform:rotate(360deg);}
}

@-moz-keyframes spin {
  from {-moz-transform:rotate(0deg);}
  to {-moz-transform:rotate(360deg);}
}

@-o-keyframes spin {
  from {-o-transform:rotate(0deg);}
  to {-o-transform:rotate(360deg);}
}

@-ms-keyframes spin {
  from {-ms-transform:rotate(0deg);}
  to {-ms-transform:rotate(360deg);}
}

@keyframes spin {
  from {transform:rotate(0deg);}
  to {transform:rotate(360deg);}
}


#rd-widget-frame {
  /*position: fixed;*/
  margin-top: 1rem !important;
  margin-bottom: 1rem !important;
  margin-left: auto;
  margin-right: auto;
/*  z-index: 50;
  max-height: 100vh;
  overflow: scroll;*/
}

.overlay {
  position: fixed;
  top:0;left:0;right:0;
  bottom:auto;
  height: 100vh;
  overflow: scroll;
  background-color: rgba(174, 170, 150, 0.5);
  z-index: 49;
}

body.no-scroll {
  overflow: hidden;
}




/* Layout ------------------*/


section {
  margin-bottom: 10rem;
}

.section-header {
  margin-bottom: 2rem;
}


.contact {
  font-size: 1.35rem;
}

.contact > * {
  margin-bottom: 3rem;
}

.vouchers {
  margin-bottom:0;
}

.vouchers-list {
  margin-top: 3rem;
}

.vouchers-list .voucher {
  width: 50%;
  margin-bottom: 1.75rem;
}

.voucher button {
  background: #F0EFEB;
  width: 100%;
  transition: transform 200ms ease-in-out;
}

.voucher .label,
.voucher .price,
.voucher .description {
  display: block;
}

.voucher .label {
  text-transform: uppercase;
  color: #ffaf3e;
  margin-top: 1rem;
  margin-bottom: 2rem;
}

.voucher .price {
  margin-top: 2rem;
  margin-bottom: 0.75rem;
}

.voucher .hover-text {
  display: none;
}

.voucher:hover button{
  background: #ffaf3e;
  -webkit-transform: scale(1.02) rotate(-2deg);
  -ms-transform: scale(1.02) rotate(-2deg);
  transform: scale(1.02) rotate(-2deg);
}

.voucher:hover .label {
  color: white;
}

.voucher:hover .hover-text {
  display: inline;
}

.hire {
  margin-bottom:0;
}

.home-posts {
  margin-top: 10rem;
}

.home-posts article a {
  display: block;
}

.home-posts img {
  display: none;
}

.home-posts img:first-child {
  display: block;
}


.menu img {
  margin-bottom: 3rem;
}

.footer-copyright {
  text-align: center;
  margin-bottom: 3.5rem;
}

.logo {
  position: fixed;
  top: 1rem;
  left:1rem;
  width: 3rem;
  z-index: 40;
}



/* Images ---------------------*/

.image-canvas {
  width: 75%;
  margin: 11rem auto;
  display: block;
}


.image-wrapper {
  display: inline-block;
  /*position: relative;*/
  z-index: 2;
}

.image-wrapper.big {
  width: 50%;
}

.image-wrapper.medium {
  width: 33%;
}

.image-wrapper.small {
  width: 25%;
}

.image-wrapper.front {
  z-index: 5;
  position: relative;
}

.image-wrapper.back {
  z-index: 0;
}


.image-wrapper img {
  -webkit-transform: scale(1.25,1.25);
  -moz-transform: scale(1.25,1.25);
  transform: scale(1.25,1.25);
  cursor: help;
}


.image-wrapper .caption {
  font-size: 1rem;;
  position: fixed;
  top: -2rem;
  left: 0;
  right: 0;
  z-index: 25;
  -webkit-transition: top 200ms ease-in-out;
  -moz-transition: top 200ms ease-in-out;
  transition: top 200ms ease-in-out;
}

.image-wrapper:hover .caption {
  top: 1rem;
}









/* Contact --------------------*/

.contact {
  font-size: 1.35rem;
}

.contact .icon {
  background-color: #ffaf3e;
  border-radius: 50%;
  height: 3rem;
  width: 3rem;
  margin: 0 0.5rem;
}

.contact .icon:hover {
  background: black;
}


.icon img {
  height: 1.5rem;
  width: 1.5rem;
  margin: 0.75rem auto;
}

.icon img:hover {
  fill: black;
}


.newsletter {
  /*font-size: 1.5rem;*/
}

.newsletter .form {
  margin-bottom: 0.5rem;
}

.newsletter label {
  display: none;
  width: 100%;
}

.newsletter input {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  display: inline-block;
  width: 100%;
  max-width: 300px;
  height: 3rem;
  padding-top: 0.8rem;
  margin: 0px auto;
  border: 1px solid transparent;
  border-radius: 4rem;
  padding: 0.8rem 1rem 0.5rem;
  font-size: 1.25rem;
  line-height: 2rem;
  text-align: left;
  font-family: VenusURW-Med;
}

.newsletter input[type=email] {
  border-radius: 0rem;
  background: #F0EFEB;
}

.newsletter input[type=email]:focus,
.newsletter input[type=email]:hover {
  border: 1px solid black;
  color:#ffaf3e;
}

.newsletter input[type=submit]:hover {
  background: black;
  color: white;
  border-color: transparent;
}

::-webkit-input-placeholder { /* Chrome/Opera/Safari */
  color: #bbb;
}
::-moz-placeholder { /* Firefox 19+ */
  color: #bbb;
}
:-ms-input-placeholder { /* IE 10+ */
  color: #bbb;
}
:-moz-placeholder { /* Firefox 18- */
  color: #bbb;
}

.newsletter .button {
  width: auto;
  cursor: pointer;
  text-align: center;
  background: #F0EFEB;
  width: 3rem;
  height: 3rem;
  border-radius: 0;
  padding: 0;
  color: #222;
  position: relative;
  line-height: 3em;
  bottom: 1px;
  font-size: 1rem;
}

.newsletter .button:hover {
  background-color: white;
  color: #ffaf3e;
}

#mc_embed_signup {
  margin-top: 1rem;
}




/* Vouchers ------------------*/

/* Hide */

.snip-layout .snip-ico,
.snip-layout .snip-header__title,
#snipcart-discounts,
.snip-layout .snip-ico--close:before {
  display: none;
}

/* White BG */ 
.snip-layout .snip-footer,
.snip-layout .snip-header {
  background: white;
}

/* Black Font */ 
.snip-layout a, .snip-layout dd, .snip-layout div, .snip-layout dl, .snip-layout dt, .snip-layout em, .snip-layout form, .snip-layout h1, .snip-layout h2, .snip-layout h3 h4, .snip-layout img, .snip-layout label, .snip-layout li, .snip-layout ol, .snip-layout p, .snip-layout small, .snip-layout span, .snip-layout strong, .snip-layout table, .snip-layout tbody, .snip-layout td, .snip-layout th, .snip-layout thead, .snip-layout tr, .snip-layout ul,
#snipcart-amount,
.snip-layout .snip-header__total-label,
.snip-layout {
  color: #222;
  font-weight: normal;
}




/*--*/

.snip-layout {
  font-family: VenusURW-Med;
  padding: 0;
  background-color: rgba(174, 170, 150, 0.5);
}

.snip-layout .snip-layout__main-container {
  width: 100%;
  max-width: 100%;
  margin:0;
}

#snipcart-main-content {
  max-width: 75%;
  margin: 0px auto;
}


.snip-layout .snip-layout__close {
  display: block;
  height: 2rem;
  width: 2rem;
  top: 0.5rem;
  right: 0.5rem;
  background: white url('../img/close.svg') center center no-repeat;
}

.snip-layout .snipcart-close .snip-ico {
  display: block;
} 

.snip-layout .snip-header {
  height: auto;
}

.snip-layout .snip-header__title {
  position: static;
  width: 100%;
  text-align: center;
  font-size: 2.5rem;
  padding-top: 1.5rem;
}

  #snipcart-fees {
    padding: 0.5rem 0;
  }

#snipcart-fees tr ,
#snipcart-fees td {
  padding-top: 0.5rem;
  padding-bottom:0.5rem;
}


.snip-layout .snip-header__total {
  font-size: 2.5rem;
  line-height: 1em;
  height: auto;
  margin: 0 auto 2rem auto;
  padding-top: 4rem;
  text-align: center;
  display: block;
}

.snip-layout .snip-header__total,
.snip-layout .snip-steps {
  background: transparent;
}

.snip-layout .snip-steps.snip-steps--7 li,
.snip-layout .snip-steps.snip-steps--6 li,
.snip-layout .snip-steps.snip-steps--5 li,
.snip-layout .snip-steps.snip-steps--4 li {
  width: auto;
  padding: 1rem;
}

.snip-layout .snip-step__label {
  width: 100%;
  padding:0;
  font-weight: normal;
  font-size: 0.8rem;
  letter-spacing: 0.02em;
}

.snip-layout .snip-step__item {
  background: white;
  border: 0;
  float: none;
  display: inline-block;
}

.snip-layout .snip-form__label {
  color: #222;
  font-size: 1rem;
  margin-bottom: 0.25rem;
}

.snip-layout td,
.snip-layout th {
  vertical-align: top;
}

.snip-layout .snip-product__description,
.snip-layout .snip-product__name {
  margin-top: 0;
}

.snip-layout .snip-step__item+.snip-step__item {
  border: 0;
}

.snip-layout .snip-product__name,
.snip-layout .snip-table__cell--highlight,
.snip-layout .snip-table__cell--bold,
.snip-layout .snip-table__small-col,
.snip-layout .snip-quantity-trigger__text {
  font-size: 1.5rem;
  font-weight: normal;
  text-transform: none;
}

.snip-layout .snip-table td,
.snip-layout .snip-table th,
.snip-layout .snip-table tr {
  padding: 0.5rem 0.5rem;
}

.snip-layout .snip-product__remove.snip-ico {
  display: block;
  height: 2.25rem;
  width: 2rem;
  background: white url('../img/close.svg') center center no-repeat;
  background-size: 1rem;
}

.snip-product__description {
  font-size: 1rem;
  font-weight: normal;
  color: #B1B1B1;
}

.snip-layout .snip-footer__copyright {
  background: none;
  padding: 0;
}

.snip-layout .snip-quantity-trigger__btn {
  background-color: #F0EFEB;
  height: 1.5rem;
  width: 1.5rem;
  font-size: 1.5rem;
  padding-top: 0.15rem;
}

.snip-layout .snip-quantity-trigger__btn.snip-quantity-trigger__btn--minus {
  padding-top: 0.3rem;
}

.snip-layout .snip-quantity-trigger__btn:hover {
  background-color: #ffaf3e;
}


.snip-layout input[type=password],
.snip-layout input[type=text],
.snip-layout select {
  border-radius: 0px;
  height: 2.5rem;
  font-family: VenusURW-Med;
  color: black;
}

.snip-layout textarea {
  display: block;
  width: 100%;
  height: 6rem;
  border: 1px solid #eee;
  padding: 0.5rem;
  font-size: 1rem;
  font-family: VenusURW-Med;
}

.snip-layout .snip-btn--highlight,
.snip-layout .snip-btn--highlight:hover,
.snip-layout .snip-btn--left,
.snip-layout .snip-btn--left:hover {
  background: transparent;
  color: #222;
  font-size: 1.5rem;
  font-weight: normal;
  text-transform: none;
  padding: 0px 2rem;
  transition: none;
  background: transparent url('../img/right.svg') no-repeat center right;
}

.snip-layout .snip-btn--highlight:hover {
  color: #ffaf3e;
  background: transparent url('../img/right-yellow.svg') no-repeat center right;
}

.snip-layout #snipcart-previous,
.snip-layout .js-back {
  background: transparent url('../img/left.svg') no-repeat center left;
  opacity: 0.4;
}

.snip-layout #snipcart-previous:hover,
.snip-layout .js-back:hover {
  color: #ffaf3e;
  background: transparent url('../img/left-yellow.svg') no-repeat center left;
  opacity: 1;
}


.snip-layout .snip-static__title {
  font-weight: normal;
  font-size: 1.5rem;
  text-align: left;
  text-transform: none;
}

.snip-static__content p{
  text-align: left;
  font-size: 1rem;
  line-height: 1.3em;
}

.snip-layout .snip-table__body--small {
  background: white;
}

#snipcart-total {
  background-color: #F0EFEB;
}

.snip-layout .snip-table td,
.snip-layout .snip-table th,
.snip-layout .snip-table tr {
  border-bottom: 0;
}




/* Menus ------------------*/

.menus img {
  background: #f8f8f8;
  background: url('../img/paper-back_03.jpg');
  background-size: cover;
  max-width: 800px;
  margin: 5rem auto;
}





/*Blog --------------------*/

.blog .posts {
  width: 85%;
  max-width: 1300px;
  margin-left: auto;
  margin-right: auto;
}

.blog .post {
  margin: 5rem 0;
}

.blog h2 {
  /*width: 80%;*/
  margin-left: auto;
  margin-right: auto;
}

.blog .image-canvas {
  width: 100%;
  margin: 5rem auto 0 auto;
}

.blog .image-wrapper {
  vertical-align: middle;
}

.blog .image-wrapper:last-child img{
  transform-origin: bottom;
}

.blog .image-wrapper.big {
  width: 59%;
}

.blog .image-wrapper.medium {
  width: 40%;
}

.blog article p {
  margin-bottom: 1.5rem;
  font-size: 1.25rem;
  width: 85%;
  margin-left: auto;
  margin-right: auto;
}

a .image-canvas,
#journal article a img {
  -webkit-transition: transform 400ms ease-in-out;
  -ms-transition: transform 400ms ease-in-out;
  transition: transform 400ms ease-in-out;
}

.blog .image-wrapper img {
  cursor: pointer;
}

a:hover .image-canvas,
#journal article a:hover img{
  -webkit-transform: scale(1.02);
  -ms-transform: scale(1.02);
  transform: scale(1.02);
}

.post .big-text p{
  margin-bottom: 1.5rem;
}




.pagination {
  margin-top: 9rem;
  margin-bottom: 9rem;
}

.next {
  text-align: right;
}

.prev {
  text-align: left;
}

.next svg,
.prev svg {
  height: 0.5rem;
  margin-bottom: 0.1rem;
}

.next:hover svg,
.prev:hover svg {
  fill: #ffaf3e;
}


/* Footer ------------------*/

.page-footer .copyright {
    text-align: right;
    margin-bottom: 1rem;
}



/* Media Queries ------------------*/


/* Medium (as per framework.css) */

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

  body,html {
    font-size: 13px;
  }

  .trunk {
    width: 80%;
  }

}


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

  body,html {
    font-size: 12px;
  }

  .trunk {
    width: 90%;
  }

}

/* Small (as per framework.css) */

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

  body, html {
    background:transparent;
    font-size: 10px;
    max-width: 100%;
    overflow-x: hidden;
  }

  section {
    z-index: 4;
    position: relative;
  }

  .trunk {
    width: 90%;
  }

  .main-menu {
    border-top: 1px solid #eee;
  }

  .main-menu ul {
    white-space: nowrap;
    overflow-x: scroll;
    display: block;
    padding: 0 1rem;
  }

  .main-menu li {
    display: inline-block;
  }

  .main-menu a{
    font-size: 1rem;
    padding: 1.5rem;
  }

  .main-menu .separator {
    margin-top: 1rem;
  }

  .image-canvas {
    width: 100%;
    margin: 8rem auto;
  }

  .image-wrapper.big {
    width: 66%;
  }

  .image-wrapper.medium {
    width: 50%;
  }


  .image-wrapper.small {
    width: 33%;
  }

  h1 {
    font-size: 2rem;
  }

  .caption {
    display: none;
  }


  .contact {
    display: block;
  }


  .address > div {
    margin: 0 auto 2rem auto;
  }

  .newsletter .email {
    width: auto;
    height: 3rem;
  }

  .home-posts .post {
    margin-bottom: 5rem;
  }

  .superlyan {
    position: static;
    height: 8rem;
    width: 8rem;
    border-radius: 8rem;
    background-size: cover;
    margin: 4rem auto;
  }

  .superlyan img {
    margin: 0px auto;
    height: 7rem;
    width: auto;
    -webkit-transform: translate3d(-1rem,0,0);
    -ms-transform: translate3d(-1rem,0,0);
    transform: translate3d(-1rem,0,0);
  }

  .footer-copyright {
    margin-bottom: 4.5rem;
  }

  #rd-widget-frame {
    position: fixed;
    top: 0;
    height: 100vh;
    overflow-y: scroll;
  }


  .booking.close {
      top: 1rem;
      height: 3rem;
      line-height: 2.75rem;
  }

  .vouchers-list .voucher {
    width: 100%;
    padding: 0;
  }

  .snip-layout .snip-header {
    margin-bottom: 1rem;
    padding-bottom:0;
  }

  .snip-layout .snip-table__item {
    border-top: 1px solid #eee;
  }

  .snip-layout .snip-layout__close {
    top: 1.5rem;
    right: 1.5rem;
  }

  #snipcart-main-content {
    max-width: 90%;
  }

  .snip-layout .snip-product__remove.snip-ico {
    display: none;
  }

  .snip-layout .snip-quantity-trigger__btn {
    width: 2.5rem;
    height: 2.5rem;
  }

  .snip-layout .snip-quantity-trigger__btn--add:before,
  .snip-layout .snip-quantity-trigger__btn--minus:before {
    font-size: 1.5rem;
    line-height: 2.5rem;
    text-align: center;
    width: 100%;
  }

  .snip-layout .snip-quantity-trigger__btn.snip-quantity-trigger__btn--minus {
    padding-top: 0;
  }

  .snip-layout .snip-table__small-col {
    margin: 0.5rem 0;
  }

  .snip-layout .snip-table td, 
  .snip-layout .snip-table th,
  .snip-layout .snip-table tr {
    padding: 1rem 0.5rem 0.5rem;
  }

  .snip-layout .snip-quantity-trigger {
    position: relative;
    bottom: 0.25rem;
  }

  .snip-layout .snip-btn--highlight,
  .snip-layout .snip-btn--highlight:hover,
  .snip-layout .snip-btn--left,
  .snip-layout .snip-btn--left:hover {
    padding: 0px 3rem;
  }

  .snip-layout .snip-actions {
    padding-bottom: 0;
  }

  .snip-layout .snip-quantity-trigger__text {
    padding: 0 0.5rem;
  }

  .snip-layout .snip-table--small .snip-table__body--small tr {
    padding-left:0;
    padding-right: 0;
  }

  .snip-layout input[type=password],
  .snip-layout input[type=text],
  .snip-layout select,
  .snip-layout textarea {
    min-height: 4rem;
    -webkit-appearance: none;
    background-color: #F0EFEB;
  }

  .snip-layout textarea {
    font-size: 1.5rem;
    height: 10rem;
  }

  .snip-layout .snip-col {
    padding: 0;
  }

  .snip-layout .snip-col+.snip-col {
    border: none;
  }

  .snip-static__content p {
    font-size: 1.5rem;
  }

  .snip-layout .snip-static__title {
    font-size: 2rem;
  }

  #snipcart-fees td,
  .snip-table--small #snipcart-total td {
    width: 50%;
    float: left;
    font-size: 1.5rem;
  }


  #snipcart-fees .snip-table__cell--highlight{
    text-align: right;
    font-size: 1.5rem;
  }

  #snipcart-fees h2 {
    font-size: 1.5rem;
  }

  .snip-table--small #snipcart-total td {
    font-size: 2rem;
    text-align:right;
  }

  .snip-table--small #snipcart-total td {
    padding: 0.25rem 0 0 0;
  }



}




