@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300..700;1,300..700&family=Playfair+Display:ital,wght@0,400..900;1,400..900&display=swap');

:root {
  --bs-body-font-size: 18px;
  --bs-body-font-weight: 400;
  --bs-body-line-height: 1.625;

  /*font-family*/
  --bs-body-font-family: "Cormorant Garamond", serif;
  --in-heading-font-family: "Playfair Display", serif;

  --in-body-color: color-mix(in hsl, var(--bs-body-color), var(--bs-body-bg) 25%);
}

.btn-default.btn-block {
  color: white;
  border-color: white;
}

.section-container.section-title.section-bg::before, .custom-motive .section-container.section-bg::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(0, 0, 0, .8), rgba(0, 0, 0, .2));
  z-index: 0;
}

.container--article .section-title.section-bg>* {
  max-width: unset;
}

.carousel {
  border-radius: 1rem;
  overflow: hidden;
}

body {
  color: var(--in-body-color);
}

b, strong {
  font-weight: 600;
  color: var(--bs-body-color);
}

hr {
  opacity: .1;
}

#main {
  padding-bottom: 0;
  padding-top: 0;
  background-color: rgba(var(--bs-body-color-rgb), 0.015);
  /*background-color: color-mix(in hsl, var(--bs-body-bg), var(--bs-body-color) 2%);*/
}

.main>.container:first-child, .main>.motive__motto:first-child, .container--article, #main {
  padding-bottom: 0;
}

/* ----- TYPOGRAPHY ----- */
/*===========================================================================*/
h6,.h6,h5,.h5,h4,.cart-form__title,.account-form__title,.h4,h3,.h3,h2,.h2,h1,.h1, .motto__title {
  color: var(--bs-body-color);
  font-family: var(--in-heading-font-family);
  font-weight: 400;
  margin-bottom: 0.7em;
}

h1,.h1 {
  font-size: 3.5rem;
}

@media(min-width: 1200px) {
  h1,.h1 {
    font-size: 4.5rem;
  }
}

h2,.h2 {
  font-size: 2.25rem;
}

@media(min-width: 1200px) {
  h2,.h2 {
    font-size: 3.25rem;
  }
}

h3,.h3 {
  font-size: 1.75rem;
}

@media(min-width: 1200px) {
  h3,.h3 {
    font-size: 2.25rem;
  }
}

h4,.cart-form__title,.account-form__title,.h4 {
  font-size: 1.5rem;
}

@media(min-width: 1200px) {
  h4,.cart-form__title,.account-form__title,.h4 {
    font-size: 1.5rem;
  }
}

.section--header h1,.section--header .h1,.section-title h1,.section-title .h1 {
  font-size: 3.5rem;
}

@media(min-width: 1200px) {
  .section--header h1,.section--header .h1,.section-title h1,.section-title .h1 {
    font-size: 4.5rem;
  }
}

.container--article p+h2, .container--article p+.h2 {
  margin-top: 1rem;
}

.container--article h1+p, .container--article .h1+p {
  margin-top: clamp(1rem, 4vw, 2.5rem);
}

.section-3-col-bottom-text h3, .section-3-col-bottom-text .h3, .section-3-col-top-text h3, .section-3-col-top-text .h3 {
  font-size: 1.5rem;
  font-weight: 500;
}

/* ----- HEADER ----- */
/*===========================================================================*/
.header {
  -webkit-box-shadow: 0 4px 20px -4px hsla(30 20% 20% / 0.08);
  box-shadow: 0 4px 20px -4px hsla(30 20% 20% / 0.08);
  border-bottom: 1px solid rgba(var(--bs-body-color-rgb), 0.05);
}

.navbar {
  max-width: 1800px;
  margin: auto;
  padding-top: 0.75rem;
  padding-bottom: 0.75rem;
  row-gap: 1rem;
}

.navbar__menu-list {
  column-gap: 0.5rem;
}

.navbar__menu-link {
  font-size: 20px;
  font-weight: 600;
}

/* contactus */
.contactus-wrap {
  background-color: rgba(var(--bs-primary-rgb), 1);
}

.contactus__phone, .contactus__email, .contactus__phone-link, .contactus__email-link {
  color: white;
}

@media (max-width: 991.98px) {
  .contactus::after {
    background-color: transparent;
  }
}

/* scroll active link */
.navbar__menu-link.is-active {
  color: var(--bs-primary);
}

.navbar__menu-item.is-active > .navbar__menu-link {
  color: var(--bs-primary);
}

/* Rezervace jako CTA bez JS (žádné bliknutí) */
.navbar__menu-link[href*="#rezerv"]{
  padding: 8px 24px;
  border-radius: 0.7rem;
  background: var(--bs-primary);
  color: var(--bs-body-bg) !important;
  margin-left: 1rem;
}

.navbar__menu-link[href*="rezerv"]{
  padding: 6px 24px;
  border-radius: 0.7rem;
  background: var(--bs-primary);
  color: var(--bs-body-bg) !important;
  margin-left: 1rem;
}

.navbar__menu-link[href*="#rezerv"]:hover{
  filter: brightness(0.95);
}

.navbar__menu-link.is-cta{
  padding: 8px 24px;
  border-radius: 0.7rem;
  background: var(--bs-primary);
  color: var(--bs-body-bg) !important;
  margin-left: 1rem;
}

/* ----- MOTIVE ----- */
/*===========================================================================*/
body:not(#index) .motive,
body:not(#index) .motive.fullscreen {
  display: none;
}

.motive__overlay {
  background: linear-gradient(to right, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, .2));
  opacity: 1;
}

.motto {
  max-width: 50em;
}

@media (min-width: 576px) {
  .motive__motto--center {
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    text-align: left;
  }
  .motive {
    height: 50rem;
  }
}

.motto__title, .motto__text {
  text-shadow: 1px 1px 3px rgba(0,0,0,.6), 3px 3px 10px rgba(0,0,0,.2);
}

.motto__title {
  font-size: 3.5rem;
  line-height: 1.3;
  margin-bottom: .5em;
  text-wrap: balance;
}

@media (min-width: 768px) {
  .motto__title {
    font-size: 4.5rem;
  }
}

.motto__text {
  font-size: 20px;
  line-height: 1.6;
  text-wrap: balance;
}

@media (min-width: 768px) {
  .motto__text {
    font-size: 24px;
  }
}

.motto__button-link {
  margin-top: 2.5rem;
  font-size: 20px;
  padding: 0.75rem 2.5rem;
  font-weight: 600;
  border-radius: 0.75rem;
  letter-spacing: 0.025em;
}

/* ----- SECTIONS ----- */
/*===========================================================================*/
section, .section {
  padding-top: clamp(3rem, 6vw, 6rem);
  padding-bottom: clamp(3rem, 6vw, 6rem);
}

@media (max-width: 575.98px) { 
  .section-2-col-right-text>.row, .section-2-col-left-text>.row {
    flex-direction: column-reverse;
    --bs-gutter-y: 2rem;
  } 
}

.section-2-col-left-text .section-content>img, .section-2-col-right-text .section-content>img {
  border-radius: 0.75rem;
}

.section-3-col-bottom-text .section-cell-parent, .section-3-col-top-text .section-cell-parent {
  justify-content: center;
}

.section-3-col-bottom-text.cell-borders .section-cell-item, .section-3-col-top-text.cell-borders .section-cell-item {
  border: 1px solid rgba(var(--bs-body-color-rgb), 0.07);
  border-radius: 1rem;
  -webkit-box-shadow:  0 4px 20px -4px hsla(30 20% 20% / .08);
  box-shadow: 0 4px 20px -4px hsla(30 20% 20% / .08);
  padding: 2rem;
  text-align: left;
}

@media (min-width: 992px) {
  .section-3-col-bottom-text h3, .section-3-col-bottom-text .h3, .section-3-col-bottom-text p, .section-3-col-top-text h3, .section-3-col-top-text .h3, .section-3-col-top-text p {
    max-width: unset;
  }
}

.section-3-col-bottom-text img {
  border-radius: 0.75rem;
  margin-bottom: 1.5rem;
}

.section-3-col-top-text img {
  border-radius: 0.75rem;
}

.section-3-col-bottom-text.cell-borders img, .section-3-col-top-text.cell-borders img {
  margin-top: 0;
  background-color: rgba(var(--bs-primary-rgb), 0.05);
  border-radius: 0.75rem;
  padding: 0.75rem;
}

.section-3-col-bottom-text.cell-img-borders .section-cell-img {
  width: 100px;
  height: 75px;
  /*border: 8px solid var(--bs-body-bg);*/
  border: unset;
  margin-top: -70px;
  border-radius: 0.75rem;
  outline: 1px solid rgba(var(--bs-body-color-rgb), 0.07);
}

.section-3-col-bottom-text.cell-img-borders .section-cell-item {
  border: 1px solid rgba(var(--bs-body-color-rgb), 0.1);
  border-radius: 0.75rem;
  -webkit-box-shadow:  0 4px 20px -4px hsla(30 20% 20% / .08);
  box-shadow: 0 4px 20px -4px hsla(30 20% 20% / .08);
  padding: 2rem;
}

.section-3-col-bottom-text.cell-borders .section-cell-item:hover {
  -webkit-transform: translateY(-8px);
  transform: translateY(-8px);
  -webkit-box-shadow: 0 10px 15px -3px rgba(0, 0, 0, .1), 0 4px 6px -4px rgba(0, 0, 0, .1);
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, .1), 0 4px 6px -4px rgba(0, 0, 0, .1);
}

.section-services li, .section--services li {
  background-color: var(--bs-body-bg);
  outline: 1px solid rgba(var(--bs-body-color-rgb), 0.07);
  border-radius: 0.5rem;
  -webkit-box-shadow: 0 4px 20px -4px hsla(30 20% 20% / .08);
  box-shadow: 0 4px 20px -4px hsla(30 20% 20% / .08);
  border-left: 3px solid #be5404;
}

/* --- accordion --- */
.accordion-item:last-of-type .accordion-button.collapsed {
  border-bottom-right-radius: 1rem;
  border-bottom-left-radius: 1rem;
}

.accordion.section-cell-parent {
  box-shadow: 0 4px 20px -4px hsla(30 20% 20% / .08);
}

.accordion-button, .accordion-button:not(.collapsed) {
  background-color: var(--bs-body-bg);
}

.accordion-item {
  border: 1px solid rgba(var(--bs-body-color-rgb), 0.07);
}

/* ----- CATEGORIES ----- */
/*===========================================================================*/
.categories--root .category__thumbnail {
  border-radius: 1rem;
  overflow: hidden;
}

.categories--root .category {
  background-color: var(--bs-body-bg);
  border: 1px solid rgba(var(--bs-body-color-rgb), 0.07);
  border-radius: 1rem;
  -webkit-box-shadow: 0 4px 20px -4px hsla(30 20% 20% / .08);
  box-shadow: 0 4px 20px -4px hsla(30 20% 20% / .08);
}

/* ----- FORM ----- */
/*===========================================================================*/
.form-control, .add-comment__input, .cart-form__input, .promo-code__input, .account-form__input, .search-form__input, .user-form__input, .locked__input, .navbar__search-input {
  background-color: rgba(var(--bs-primary-rgb), 0.03);
  border: 1px solid rgba(var(--bs-body-color-rgb), 0.15);
  border-radius: 0.5rem;
}

.user-form {
  border-radius: 1rem;
  box-shadow: 0 4px 20px -4px hsla(30 20% 20% / .08);
  border: 1px solid rgba(var(--bs-body-color-rgb), 0.07);
  background-color: var(--bs-body-bg);
}

.user-form__label {
  color: var(--bs-body-color);
}

/* ----- GALLERY ----- */
/*===========================================================================*/
.gallery__item-img {
  border-radius: 0.7rem;
}

/* ----- TABLE ----- */
/*===========================================================================*/
.table-responsive {
  box-shadow: 0 4px 20px -4px hsla(30 20% 20% / .08);
  padding: 2rem;
  border-radius: 1rem;
  border: 1px solid rgba(var(--bs-body-color-rgb), 0.07);
  background-color: var(--bs-body-bg);
  /*margin-bottom: 1rem;*/
}

@media (min-width: 768px) {
  .table>:not(:first-child) {
    border-color: #e9ecef;
  }
}

.table>:not(:first-child) {
  border-top: 1px solid currentColor;
}

@media (min-width: 768px) {
  .table td {
    border-color: transparent;
  }
}

/* ----- CUSTOM ----- */
/*===========================================================================*/
.item-box {
  outline: 1px solid rgba(var(--bs-body-color-rgb), 0.07);
  border-radius: 1rem;
  -webkit-box-shadow:  0 4px 20px -4px hsla(30 20% 20% / .08);
  box-shadow: 0 4px 20px -4px hsla(30 20% 20% / .08);
  background-color: white;
}

#map iframe {
  outline: 2px solid rgba(var(--bs-body-bg-rgb), 1);
  border-radius: 1rem;
  -webkit-box-shadow:  0 4px 20px -4px hsla(30 20% 20% / .08);
  box-shadow: 0 4px 20px -4px hsla(30 20% 20% / .08);
}

/* ----- BUTTONS ----- */
/*===========================================================================*/
.btn {
  font-size: 20px;
  padding: 8px 24px;
  border-radius: 0.7rem;
  font-weight: 600;
}

.reservanto-button, .reservanto-managebooking-button {
  font-size: 20px !important;
  border-radius: 0.7rem !important;
  padding: 8px 24px !important;
  font-weight: 600 !important;
  letter-spacing: 0.025em !important;
  font-family: "Cormorant Garamond", serif !important;
}

.reservanto-widget {
  height: 55px !important;
}

/* ----- FOOTER ----- */
/*===========================================================================*/
.footer p {
  margin: 0;
}

.footer .h6 {
  color: var(--bs-light);
  font-weight: 600;
}

.footer .logo-img {
  max-width: 200px;
  height: auto;
  margin-bottom: 2rem;
}

.footer .logo-text {
  margin-top: 2rem;
  max-width: 300px;
}

.footer, .footer a {
  color: rgba(var(--bs-light-rgb), 0.7);
}

.footer a:hover {
  color: var(--bs-light);
  text-decoration: underline;
  -webkit-text-decoration-color: var(--bs-primary);
  text-decoration-color: var(--bs-primary);
  text-underline-offset: 3px;
}

.footer .social-icons > li > a > img {
  -webkit-filter: saturate(0%) brightness(0%) invert(100%) opacity(0.6);
  filter: saturate(0%) brightness(0%) invert(100%) opacity(0.6);
  -webkit-transition: all 100ms ease-in;
  -o-transition: all 100ms ease-in;
  transition: all 100ms ease-in;
}

.footer .social-icons > li > a:hover > img {
  -webkit-filter: saturate(0%) brightness(0%) invert(100%) opacity(1);
  filter: saturate(0%) brightness(0%) invert(100%) opacity(1);
}

/* ----- Utils ----- */
/*===========================================================================*/
.text-balance {
  text-wrap: balance;
}

.text-pretty {
  text-wrap: pretty;
}