@charset "utf-8";

/* CSS SOUBOR OBSHUJÍCÍ SPOLEČNÉ ČÁSTI PROJEKTU */

/* defaultní breakpointy jsou nastaveny na 30em(480px), 40em(640px), 60em(960px), 80em(1280px), 100em(1600px) */

/* external fonts */

@font-face {
  font-family: 'Museo Sans';
  src: url('../fonts/MuseoSans-300.woff') format('woff');
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Museo Sans';
  src: url('../fonts/MuseoSans-700.woff') format('woff');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Expo Serif Pro';
  src: url('../fonts/ExpoSerifPro-Bold.woff') format('woff');
  font-weight: bold;
  font-style: normal;
  font-display: swap;
}

/* external fonts end */

/* generally */

*,
*::after,
*::before {
  box-sizing: border-box;
  outline: none;
}

body {
  margin: 0;
  padding: 0;
  font-family: 'Museo Sans', Verdana, Helvetica, sans-serif;
  color: #333132;
  font-size: 100%;
  background: #fff;
  min-width: 20rem;
  font-weight: 300;
}

a {
  color: #333132;
}

a:hover {
  color: #d2aa56;
  text-decoration: none;
}

a img {
  border: none;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

b, strong {
  font-weight: bold;
}

h1, h2, h3, h4, h5, h6 {
  line-height: 1.2;
  margin: 0rem 0rem 0.875rem 0;
  font-weight: bold;
  font-family: 'Expo Serif Pro', Georgia, serif;
}

h1 {
  font-size: 2.5rem;
}

h2 {
  font-size: 2.25rem;
}

h3 {
  font-size: 2rem;
}

h4 {
  font-size: 1.75rem;
}

h5 {
  font-size: 1.5rem;
}

h6 {
  font-size: 1.25rem;
}

p {
  font-size: 1rem;
  line-height: 1.2;
  margin: 0rem 0rem 1.25rem 0rem;
}

table {
  border-collapse: collapse;
  margin: 0 0 1.25rem 0;
}

th, td {
  border: none;
  text-align: left;
  padding: 0.75rem 1rem;
  font-size: 1rem;
  line-height: 1.2;
}

tr th {
  background: #ededed;
}

tr:nth-child(2n+1) td {
  background: #ededed;
}

tr:nth-child(2n) td {
  background: #dfdede;
}

ul, ol {
  margin: 0 0 1.25rem 0;
  padding: 0rem;
  font-size: 1rem;
  list-style-position: inside;
  line-height: 1.2;
}

li ul,
li ol {
  margin: 0rem;
  font-size: 1rem;
}

li {
  padding: 0rem 0;
  margin: 0rem;
  list-style: none;
}

ul li:before {
  content: '\0025A0';
  padding-right: 0.25rem;
  position: relative;
  top: -0.1em;
}

li li {
  padding-left: 1.25rem;
}

iframe {
  border: none;
  width: 100%;
  display: block;
  margin: 0;
}

@media(min-width: 60em) {
  
  h1 {
    font-size: 2.75rem;
  }
  
  h2 {
    font-size: 2.5rem;
  }
  
  h3 {
    font-size: 2.25rem;
  }
  
  h4 {
    font-size: 2rem;
  }
  
  h5 {
    font-size: 1.75rem;
  }
  
  h6 {
    font-size: 1.5rem;
  }
  
  p {
    font-size: 1.25rem;
  }
  
  th, td {
    font-size: 1.25rem;
  }
  
  ul, ol {
    font-size: 1.25rem;
  }
  
  ul li:before {
    padding-right: 1.25rem;
  }
}

@media(min-width: 80em) {
  
  h1 {
    font-size: 3.063rem;
  }
  
  h2 {
    font-size: 2.813rem;
  }
  
  h3 {
    font-size: 2.563rem;
  }
  
  h4 {
    font-size: 2.313rem;
  }
  
  h5 {
    font-size: 2.063rem;
  }
  
  h6 {
    font-size: 1.813rem;
  }
  
  p {
    font-size: 1.5rem;
  }
  
  th,
  td {
    font-size: 1.5rem;
  }
  
  ul, ol {
    font-size: 1.5rem;
  }
  
  ul li:before {
    padding-right: 2.25rem;
  }
}

/* generally end */

/* forms */

form {
  margin: 0;
  padding: 0;
}

input[type=text],
input[type=tel],
input[type=email],
input[type=url],
input[type=search],
input[type=password],
input[type=date],
textarea,
select {
  font-size: 0.875rem;
  font-family: inherit;
  width: 100%;
  height: 2.563rem;
  border: 0.063rem solid #333132;
  box-shadow: none;
  padding: 0rem 0.875rem;
  margin: 0rem 0;
  color: #333132;
  background: #fff;
  font-weight: bold;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border-radius: 0.125rem;
}

*:focus {
  outline: none;
}

input[type=radio],
input[type=checkbox] {
  border: none;
  width: 0.938rem;
  width: 0.938rem;
  padding: 0rem;
  margin: 0rem 0rem 0rem 0rem;
}

textarea {
  height: 5rem;
  padding-top: 0.875rem;
  padding-bottom: 0.875rem;
  resize: none;
  overflow: auto;
}

button,
input[type=submit] {
  margin: 0;
  padding: 0;
  cursor: pointer;
  border: 0;
  background: none;
  font-size: 1em;
  line-height: 1.4;
  font-family: inherit;
  box-shadow: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

::-webkit-input-placeholder,
::-moz-placeholder,
:-ms-input-placeholder {
  opacity: 1;
  color: #d8d8d8;
  font-weight: bold;
}

label {
  display: block;
  font-size: 1rem;
  line-height: 1.2;
  margin: 0rem 0em 0.25rem 0;
}

@media(min-width: 60em) {
  
  textarea {
    height: 5.875rem;
  }
}

@media(min-width: 80em) {
  
  textarea {
    height: 6.75rem;
  }
}

/* forms end */

/* form item */

.form-item {
  margin-bottom: 0.625rem;
}

.form-item .desc {
  font-weight: bold;
  display: block;
  text-align: left;
  margin-bottom: 0.375rem;
  font-size: 0.75rem;
}

/* form item end */

/* buttons */

.button {
  display: inline-flex;
  vertical-align: top;
  text-decoration: none;
  font-weight: bold;
  text-align: center;
  cursor: pointer;
  margin: 0rem 0rem;
  transition: 0.3s;
  line-height: 1.2;
  width: 100%;
  align-items: center;
  justify-content: center;
  border-radius: 0.125rem;
}

.button.small {
  font-size: 1rem;
  padding: 0.5rem 0.75rem;
}

.button.medium {
  font-size: 0.875rem;
  min-height: 2.563rem;
  padding: 0.75rem 1.5rem;
}

.button.proceed {
  background: #424242;
  color: #fff;
}

.button.proceed:hover {
  background: #d2aa56;
}

.button.back {
  background: #888;
  color: #fff;
}

.button.back:hover {
  background: #aaa;
}

@media(min-width: 40em) {
  
  .button {
    min-width: 20rem;
    width: auto;
  }
}

@media(min-width: 60em) {
  
  .button.medium {
    font-size: 1rem;
    min-height: 3.188rem;
  }
}

@media(min-width: 80em) {
  
  .button.medium {
    font-size: 1.125rem;
    min-height: 3.813rem;
  }
}

/* buttons end */

/* status messages */

.status-messages-container {
}

.status-message {
  padding: 0.5rem 0.875rem;
  color: #fff;
  line-height: 1.2;
  margin: 0 0 0.625rem 0;
  animation: status-showing 0.5s 1.5s 1 alternate forwards;
  opacity: 0;
  text-align: left;
  min-height: 2.563rem;
  width: 100%;
  display: flex;
  align-items: center;
  font-weight: bold;
  font-size: 0.875rem;
  border-radius: 0.125rem;
}

.status-message.success {
  background: #1ea60c;
}

.status-message.error {
  background: #cf1616;
}

.status-message.info {
  background: #d2aa56;
}

.status-message:nth-child(1) {
  animation: status-showing 0.5s 0.5s 1 alternate forwards;
}

.status-message:nth-child(2) {
  animation: status-showing 0.5s 0.75s 1 alternate forwards;
}

.status-message:nth-child(3) {
  animation: status-showing 0.5s 1s 1 alternate forwards;
}

.status-message:nth-child(4) {
  animation: status-showing 0.5s 1.25s 1 alternate forwards;
}

@keyframes status-showing {
  
  0% {
    opacity: 0;
  }
  
  100% {
    opacity: 1;
  }
}

.status-message * {
  font-size: 1rem;
}

.status-message *:last-child {
  padding-bottom: 0;
  margin-bottom: 0;
}

.status-message a {
  color: inherit;
  transition: 0.3s;
  opacity: 0.7;
}

.status-message a:hover {
  opacity: 1;
}

/* status messages end */

/* page container */

.page-container {
}

.inner {
  max-width: calc(83.75rem + 6.25%);
  margin: 0 auto;
  padding-left: 3.125%;
  padding-right: 3.125%;
  width: 100%;
}

.inner .inner {
  padding-left: 0;
  padding-right: 0;
}

.page-block {
  margin-bottom: 2rem;
}

@media(min-width: 60em) {
  
  .page-block {
    margin-bottom: 3.25rem;
  }
}

@media(min-width: 80em) {
  
  .page-block {
    margin-bottom: 4.5rem;
  }
}

/* page container end */

/* header */

.page-header {
  padding: 0.688rem 0;
  position: sticky;
  top: 0;
  z-index: 200;
  width: 100%;
  background: #fff;
}

.page-header .inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.page-header .logo {
  width: 9.25rem;
  flex: none;
}

.page-header .logo .image {
  width: 100%;
}

@media(min-width: 60em) {
  
  .page-header .logo {
    width: 11.313em;
  }
}

@media(min-width: 80em) {
  
  .page-header .logo {
    width: 13.438rem;
  }
}

/* header end */

/* menu */

.menu-opener {
  width: 1.563em;
  height: 1.75em;
  cursor: pointer;
  background:
    url(../images/style/icons/icon-menu.svg) no-repeat center center / 100% auto,
    url(../images/style/icons/icon-cancel.svg) no-repeat -10rem center / 80% auto;
}

.menu-opener.open {
  background-position: -10rem center, center center;
}

.menu {
  position: absolute;
  top: 100%;
  left: 0;
  background: #fff;
  width: 100%;
  box-shadow: 0 3px 3px rgba(0,0,0,0.1);
  border-top: 0.188rem solid #333132;
  padding: 0 3.125%;
  display: none;
}

.menu .list {
  margin: 0 auto;
  padding: 0;
  font-size: 1rem;
}

.menu .item {
  margin: 0;
  padding: 0;
}

.menu .item:before {
  display: none;
}

.menu .link {
  display: block;
  padding: 0.625rem 0rem;
  cursor: pointer;
  transition: color 0.3s;
  font-weight: bold;
  text-decoration: none;
  border-top: 1px solid #333132;
}

.menu .link.ext {
  padding-right: 0.875rem;
  background:
    url(../images/style/icons/icon-external-link.svg) no-repeat right center / 0.625rem auto,
    url(../images/style/icons/icon-external-link-2.svg) no-repeat right -10rem / 0.625rem auto;
}

.menu .link.active,
.menu .link:hover {
  color: #d2aa56;
  background-position: right -10rem, right center;
}

.menu .link.inactive {
  pointer-events: none;
  opacity: 0.3;
}

.menu .item:first-child .link {
  border-top: 0;
}

@media(min-width: 80em) {
  
  .menu-opener {
    display: none;
  }
  
  .menu {
    display: block;
    background: none;
    box-shadow: none;
    border: 0;
    padding-left: 0;
    padding-right: 0;
    position: static;
    text-align: right;
    display: block !important;
  }
  
  .menu .item {
    display: inline-block;
    vertical-align: top;
    margin-left: 1.875rem;
  }
  
  .menu .link {
    border: 0;
  }
}

/* menu end */

/* reservation cta generally */

.reservation-cta .desc {
  font-weight: bold;
}

@media(min-width: 40em) {
  
  .reservation-cta {
    text-align: center;
  }
  
  .reservation-cta .desc {
    margin-left: auto;
    margin-right: auto;
    max-width: 29em;
    margin-bottom: 1.2em;
  }
}

/* reservation cta generally end */

/* map generally */

.map {
  width: 100%;
  height: 69vw;
  border-radius: 0.125rem;
}

@media(min-width: 40em) {
  
  .map {
    height: 33.5vw;
    max-height: 30.375rem;
  }
}

/* map generally end */

/* footer */

.page-footer {
  background: #333132;
  color: #fff;
  padding: 2.5rem 0 1rem 0;
  text-align: center;
}

.page-footer a:not(:hover) {
  color: #fff;
}

.page-footer .company-info .image {
  width: 9.375rem;
  margin: 0 auto 3.5rem auto;
}

.page-footer .company-info .text {
  font-size: 0.875rem;
  margin: 0 0 3.5rem 0;
}

.page-footer .company-info .link {
  color: inherit;
  text-decoration: none;
}

.page-footer .company-info .link:hover {
  text-decoration: underline;
}

.page-footer .socials .link {
  display: inline-block;
  vertical-align: top;
  width: 1.875rem;
  height: 2rem;
  margin: 0 0.188rem;
}

.page-footer .socials .icon {
  display: block;
  width: 100%;
  height: 100%;
  transition: 0.3s linear;
  backface-visibility: hidden;
  background: center center / 100% auto no-repeat;
}

.page-footer .socials .link:hover .icon {
  transform: rotateY(-360deg);
}

.page-footer .socials .fb {background-image: url(../images/style/icons/icon-facebook.svg);}
.page-footer .socials .inst {background-image: url(../images/style/icons/icon-instagram.svg);}
.page-footer .socials .yt {background-image: url(../images/style/icons/icon-youtube.svg);}
.page-footer .socials .lnkdn {background-image: url(../images/style/icons/icon-linkedin.svg);}
.page-footer .socials .pint {background-image: url(../images/style/icons/icon-pinterest.svg);}
.page-footer .socials .tw {background-image: url(../images/style/icons/icon-twitter.svg);}

.page-footer .copyright {
  text-align: center;
  font-size: 0.688rem;
  padding-top: 3.75rem;
}

.page-footer .publicity {
  text-align: center;
  font-size: 0.688rem;
  padding-top: 3.75rem;
}

.page-footer .publicity .image {
  width: 100%;
  margin: 0 auto 1.625rem auto;
  max-width: 21rem;
}

.page-footer .publicity .text {
  font-size: 0.75rem;
  margin: 0 auto 1.625rem auto;
  max-width: 67em;
}

.page-footer .publicity > :last-child {
}

@media(min-width: 60em) {
  
  .page-footer {
    text-align: left;
    padding-top: 4rem;
  }
  
  .page-footer .inner {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    flex-wrap: wrap;
  }
  
  .page-footer .block {
    width: 50%;
    flex: none;
  }
  
  .page-footer .block-three {
    width: 100%;
  }
  
  .page-footer .company-info .image {
    width: 13.5rem;
    margin: 0 0 1.5rem 0;
  }
  
  .page-footer .company-info .text {
    font-size: 1.188rem;
    margin: 0;
  }
  
  .page-footer .socials {
    text-align: right;
  }
  
  .page-footer .socials .link {
    width: 2.438rem;
    height: 2.563rem;
    margin-left: 0.375rem;
    margin-right: 0.375rem;
  }
  
  .page-footer .publicity .image {
    max-width: 24.188rem;
  }
  
  .page-footer .publicity .text {
    font-size: 0.813rem;
  }
}

@media(min-width: 80em) {
  
  .page-footer {
    padding-top: 5.5rem;
  }
  
  .page-footer .company-info .image {
    width: 17.813rem;
  }
  
  .page-footer .company-info .text {
    font-size: 1.5rem;
  }
  
  .page-footer .socials .link {
    width: 3rem;
    height: 3.125rem;
  }
  
  .page-footer .publicity .image {
    max-width: 27rem;
  }
  
  .page-footer .publicity .text {
    font-size: 0.875rem;
  }
}

/* footer end */

/* datetime picker start */
#ui-datepicker-div > table > thead > tr > th {
  font-size: 0.9rem;
}

#ui-datepicker-div > table > tbody > tr > td {
  font-size: 0.9rem;
}

#ui-datepicker-div {
  font-size: 12px;
}
/* datetime picker end */













































