/* ==========================================================================
   Base styles: opinionated defaults
   ========================================================================== */

@font-face {
  font-family: RobotoRegular;
  src: url(/fonts/Roboto/Roboto-Regular.ttf);
}

@font-face {
  font-family: RobotoBold;
  src: url(/fonts/Roboto/Roboto-Bold.ttf);
}

html {
  --main-color: #c7a15a;
  --secondary-color: #000;
  --body-color: #202020;

  color: #fff;
  font-size: 1em;
  line-height: 1.4;
  font-family: "RobotoRegular", serif;
  background-color: var(--body-color);
}

header {
  width: 100%;
  padding: 10px 0;
}

.container {
  width: 1000px;
  max-width: 100%;
  margin: auto;
}

.container--header {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  width: 1160px;
}

nav {
  position: relative;
}

.menu {
  overflow: hidden;
  transition: 0.3s ease;
  padding-left: 0;
}

input[type="checkbox"] {
  display: none;
}

.checkbox-container {
  display: flex;
  align-items: center;
  margin: 0 10px;
}

.checkbox-container input[type="checkbox"] {
  display: inline-block;
  margin-right: 5px;
}

.checkbox-container label {
  color: var(--main-color);
  cursor: pointer;
}

label.menu-icon {
  display: block;
  color: var(--main-color);
  padding: 15px;
  cursor: pointer;
}

nav ul li {
  display: block;
}

nav ul li a {
  display: block;
  color: var(--main-color);;
  text-decoration: none;
  text-transform: uppercase;
  border-bottom: 2px solid var(--main-color);
}

nav ul li a:hover {
  border-bottom: none;
}

input[type="checkbox"]:checked ~ .menu {
  height: 100%;
}

.detail-right {
  width: 100%;
}

@media (min-width: 1200px) {
  nav ul li {
    display: inline-block;
    padding: 0 15px;
  }

  nav ul li a {
    padding: 8px 0 8px;
  }

  label.menu-icon {
    display: none;
  }

  .menu {
    position: relative;
    height: auto;
    overflow: visible;
  }
}

.btn {
  display: inline-block;
  text-align: center;
  padding: 10px 10px;
  margin: 0 5px;
  text-transform: uppercase;
  border-radius: 3px;
}

.btn--leave {
  background-color: #CD1818;
  color: #fff;
}

.btn--main {
  background-color: var(--main-color);
  color: #fff;
}

.btn--main:hover {
  background-color: var(--secondary-color);
}

.btn--inverse {
  background-color: var(--secondary-color);
  color: #fff;
}

.btn--inverse:hover {
  color: #c7a15a;
}

.tiles {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: center;
  gap: 25px;
  padding: 50px 0;
}

.tile {
  border: 2px solid var(--main-color);;
  border-radius: 5px;
  color: #fff;
  overflow: hidden;
  position: relative;
}

.tile-flag::before
{
  position: absolute;
  top: 100px;
  left: -45px;
  color: white;
  font-weight: bold;
  padding: 5px 0;
  width: 90%;
  text-align: center;
  transform: rotate(-45deg);
  transform-origin: 0 0;
  z-index: 1;
  font-size: 12px;
}

.tile-flag--news::before {
  content: "Novinka";
  background-color: red;
}

.tile-flag--updated::before {
  content: "Aktualizováno";
  background-color: #3aa631;
}

/* General massage-only-flag styling for tiles */
.massage-only-flag {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: var(--main-color);
  color: white;
  font-weight: bold;
  padding: 5px 0;
  text-align: center;
  z-index: 1;
  font-size: 20px;
  margin: 0;
}

.massage-only-flag--small {
  font-size: 12px;
}

/* Specific styling for massage-only-flag inside main-image-container */
.main-image-container .massage-only-flag {
  background-color: red;
  /* opacity: 0.7; */
  padding: 5px 10px;  
  bottom: 6px;
  width: calc(100% - 2px); /* Account for the padding (10px on each side) */
}

.tile a {
  color: #fff;
}

.tile:hover {
  border-color: #fff;
}

.tile-image-wrapper {
  position: relative;
}

.tile-image {
  max-width: 225px;
  border-radius: 3px 3px 0 0;
}

.tile-content {
  padding: 10px;
  position: relative;
}

.tile-row {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
}

.tile-phone {
  text-align: center;
}

.tile-phone-button {
  display: none;
}

.tile h3 {
  color: var(--main-color);;
  margin: 0 0 10px 0;
  text-align: center;
}

.tile-verified {
  position: absolute;
  right: 8px;
  top: -18px;
  width: 32px;
}

.detail-gallery {
  display: flex;
  justify-content: left;
}

.detail-gallery img {
  max-width: 33.333%;
}

.text--highlighted {
  color: var(--main-color);;
}

h1.main-title {
  display: inline-block;
  color: #FFF;
  margin: 0 0 40px 0;
  padding: 10px 20px;
  background-color: rgba(0, 0, 0, 0.8);
  border-radius: 5px;
}

.header-image-wrapper {
  height: 250px;
  position: relative;
  overflow: hidden;
}

.header-image-wrapper--small {
  height: 200px;
}

.header-image-wrapper--small .header-image {
  bottom: -390px;
}

.header-image {
  position: absolute;
  left: 0;
  right: 0;
  bottom: -260px;
  opacity: 0.1;
  max-width: 100vw;
}

.container--header-image {
  position: relative;
  z-index: 10;
  display: flex;
  flex-direction: column;
  height: 100%;
  justify-content: center;
  align-items: flex-start;
}

.content-wrapper {
  display: flex;
  flex-direction: row;
  gap: 35px;
  justify-content: center;
  align-items: flex-start;
}

.container--tiles {
  margin: 0;
}

.space {
  width: 164px;
  height: auto;
}

.space-block {
  border: 2px solid var(--secondary-color);
  border-radius: 5px;
  margin-bottom: 15px;
}


.footer-bottom {
  color: var(--main-color);
  background-color: var(--body-color);
  font-size: 14px;
  padding: 10px 0;
}

.container--footer-bottom {
  display: flex;
  justify-content: space-between;
}

.bottom-right {
  display: flex;
  gap: 20px;
}

.bottom-right a {
  color: var(--main-color);
}

.bottom-left a {
  color: #fff;
}

.footer-bottom a:hover {
  text-decoration: underline;
}

.filter {
  display: flex;
  flex-direction: row;
  gap: 15px;
  justify-content: flex-start;
  width: 100%;
  align-items: center;
}

.content {
  background-color: var(--main-color);
  padding: 20px;
  color: var(--secondary-color);
}

strong {
  font-family: "RobotoBold", serif;
}

.detail {
  border-radius: 5px;
  border: 2px solid var(--main-color);
  display: flex;
  justify-content: space-between;
  margin-bottom: 30px;
}

.detail-left {
  background-color: var(--main-color);
}

.detail-left h2 {
  text-align: center;
  color: var(--secondary-color);
}

.detail-left img {
  border-right: 2px solid var(--main-color);
}

.main-image-container {
  position: relative;
  display: inline-block;
}

.detail-content p a {
  color: var(--main-color);
  text-decoration: underline;
}

.detail-content p a:hover {
  text-decoration: none;
}

.btn--detail {
  width: 100%;
  height: 73px;
  border-radius: 0 3px 0 0;
  margin: 0;
  font-size: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.detail-content {
  padding: 10px 30px;
}

.phone-icon {
  width: 50px;
  margin-right: 20px;
}

.phone-icon--dark {
  display: none;
}

.phone-icon--light {
  display: block;
}

.page-details {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 0;
}

.breadcrumbs {
  display: flex;
  flex-direction: row;
  color: var(--main-color);
}

.breadcrumbs a {
  color: #fff;
  position: relative;
  padding-right: 22px;
  display: block;
}

.breadcrumbs a:hover {
  text-decoration: underline;
}

.breadcrumbs a:after {
  content: "-";
  position: absolute;
  right: 9px;
  top: 1px;
  color: #fff;
}

.back-navigation a {
  color: #fff;
  display: block;
  position: relative;
  padding-right: 30px;
}

.back-navigation a:hover {
  text-decoration: underline;
}

.back-navigation a:after {
  display: block;
  width: 20px;
  height: 20px;
  content: "";
  background-image: url(/img/chevron-right.svg);
  background-size: contain;
  position: absolute;
  right: 0;
  top: 1px;
}

.tab-wrap {
  border-radius: 5px;
  max-width: 100%;
  display: flex;
  flex-wrap: wrap;
  position: relative;
  list-style: none;
  gap: 20px;
  margin-top: 50px;
}

.tab {
  display: none;
  border-radius: 5px;
}

.tab:checked:nth-of-type(1) ~ .tab__content:nth-of-type(1) {
  opacity: 1;
  transition: 0.5s opacity ease-in, 0.8s transform ease;
  position: relative;
  top: 0;
  z-index: 100;
  transform: translateY(0px);
  text-shadow: 0 0 0;
}

.tab:checked:nth-of-type(2) ~ .tab__content:nth-of-type(2) {
  opacity: 1;
  transition: 0.5s opacity ease-in, 0.8s transform ease;
  position: relative;
  top: 0;
  z-index: 100;
  transform: translateY(0px);
  text-shadow: 0 0 0;
}

.tab:checked:nth-of-type(3) ~ .tab__content:nth-of-type(3) {
  opacity: 1;
  transition: 0.5s opacity ease-in, 0.8s transform ease;
  position: relative;
  top: 0;
  z-index: 100;
  transform: translateY(0px);
  text-shadow: 0 0 0;
}

.tab:checked + label {
  background-color: var(--main-color);
  cursor: default;
  flex: 0 1 calc(30.333%);
}

.tab + label {
  border-radius: 5px;
  cursor: pointer;
  display: block;
  text-decoration: none;
  color: #fff;
  text-align: center;
  background-color: var(--secondary-color);
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  height: 50px;
  box-sizing: border-box;
  padding: 15px;
  flex: 0 1 calc(30.333%);
}

.tab + label:hover {
  background-color: var(--main-color);
}

.tab__content {
  padding: 5px;
  background-color: transparent;
  position: absolute;
  width: 100%;
  z-index: -1;
  opacity: 0;
  left: 0;
  transform: translateY(-3px);
  border-radius: 6px;
}

.contact-list-wrapper {
  display: flex;
  align-items: center;
  gap: 15px;
}

.contact-list {
  list-style-type: none;
  padding: 0;
}

.contact-list li {
  display: inline-block;
  margin-right: 15px;
}

.services, .hours {
  display: flex;
  list-style-type: none;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 20px 40px;
  padding-inline-start: 0;
}

.services li, .hours li {
  display: block;
  padding-left: 25px;
  position: relative;
}

.services {
  gap: 20px 0;
}

.services li {
  flex: 0 1 calc(33.3333%);
}

.services li:before, .hours li:before {
  display: block;
  width: 18px;
  height: 18px;
  content: "";
  background-image: url(/img/check.svg);
  background-size: contain;
  position: absolute;
  left: 0;
  top: 1px;
}

.hours {
  flex-direction: column;
}

.hours li {
  padding-left: 30px;
}

.hours li:before {
  background-image: url(/img/time.svg);
  top: 2px;
}

.hours span {
  display: inline-block;
  width: 80px;
}


.detail-location {
  display: inline-block;
  width: 20px;
  height: 20px;
  background-image: url(/img/location.svg);
  background-size: contain;
  position: relative;
  top: 4px;
  margin-right: 5px;
}

.detail-parameters {
  display: flex;
  flex-wrap: wrap;
  flex-direction: row;
  justify-content: flex-start;
  width: 100%;
  gap: 15px 0;
  padding-left: 30px;
  padding-bottom: 15px;
}

.detail-parameter {
  flex: 0 1 calc(33.333%);
}

.detail-parameter span, .detail-parameter--long span {
  color: var(--main-color);
  width: 60px;
  display: inline-block;
}

.detail-parameter--long span.long {
  width: 90px;
}

.detail-categories {
  font-size: 14px;
  margin-top: 30px;
}

.detail-categories span {
  color: var(--main-color);
}

.detail-categories a {
  color: #fff;
  display: inline-block;
  padding: 0 3px;
}

.detail-categories a:hover {
  text-decoration: underline;
}

.filter .select2 {
  flex: 0 1 calc(28%);
}

.select2-container--default .select2-selection--single {
  width: 100%;
  height: 50px;
  background-color: var(--secondary-color);
  border: none;
  line-height: 40px;
  color: #fff;
}

.select2-container--default .select2-selection--single .select2-selection__rendered {
  line-height: 50px;
  color: #fff;
}

.select2-container--default .select2-selection--single .select2-selection__placeholder {
  color: var(--main-color);
}

.select2-container--default .select2-selection--single .select2-selection__arrow {
  height: 100%;
}

.select2-container--default .select2-results__option--highlighted.select2-results__option--selectable,
.select2-container--default .select2-results__option--selected {
  background-color: var(--secondary-color);
}

.select2-container--default .select2-selection--single .select2-selection__arrow b {
  border-color: var(--main-color) transparent transparent transparent;
}

.select2-dropdown {
  border: none;
  background-color: var(--body-color);
}

.select2-results__option {
  padding: 8px;
}

.filter input[type="submit"] {
  background-color: var(--main-color);
  color: #fff;
  border: none;
  border-radius: 5px;
  padding-left: 10px;
  padding-right: 10px;
  cursor: pointer;
  height: 100%;
}

.pagination a {
  color: #fff;
}

.pagination a:hover {
  text-decoration: underline;
}

.mobile {
  display: none;
}


@media only screen and (max-width: 1200px) {
  .mobile {
    display: unset;
  }

  .desktop {
    display: none;
  }

  .container--header {
    flex-wrap: wrap;
    padding: 0 15px;
  }

  .button-area {
    width: 100%;
    display: flex;
    flex-direction: column-reverse;
    align-items: center;
    gap: 10px;
  }

  .banner-image {
    display: none;
  }

  .header-image-wrapper {
    height: auto;
    background-color: var(--main-color);
    padding-bottom: 30px;
  }

  .header-image-wrapper--small {
    height: auto;
    padding-top: 30px;
    padding-bottom: 30px;
  }

  h1.main-title {
    background-color: transparent;
    text-align: center;
    margin: 20px 0 10px 0;
    line-height: 1.2;
    width: 100%;
  }

  .text--highlighted {
    color: var(--body-color);
  }

  .text--highlighted.checkbox-container label
  {
    color: var(--body-color);
  }

  .search {
    justify-content: center;
  }

  .search input[type=text] {
    background-color: var(--body-color);
  }

  .search button {
    background-color: var(--body-color);
  }

  .container--footer-bottom {
    padding: 5px 15px
  }

  input[type="checkbox"] {
    display: block;
    opacity: 0;
    position: relative;
  }

  .text--highlighted input[type="checkbox"] {
    opacity: 1;
  }

  input[type="checkbox"]:checked + ul {
    right: 0;
    width: 100%;
    height: 100vw;
  }

  .menu {
    position: absolute;
    width: 0;
    background: var(--body-color);
    right: -100%;
    z-index: 100;
    margin-top: 0;
    border-top: 2px solid var(--main-color);
    transition: all 0.5s ease-out;
  }

  label.menu-icon {
    font-size: 40px;
    padding-right: 0;
  }

  nav {
    position: static;
  }

  nav ul li a {
    padding: 10px 15px;
  }

  nav ul li a:hover {
    border-bottom: 2px solid var(--main-color);
  }

  .content-wrapper {
    flex-direction: column;
    align-items: center;
  }

  .space {
    order: 1;
    display: none;
  }

  .container--tiles {
    order: 2;
  }

  .tile-content hr {
    display: none;
  }

  .tile-phone {
    display: none;
  }

  .tile-phone-button {
    display: block;
    background-color: var(--main-color);
    color: #fff;
    text-align: center;
    line-height: 32px;
  }

  .detail {
    flex-direction: column;
    justify-content: center;
    align-items: center;
    border: none;
    border-radius: 0;
  }

  .detail-content {
    padding: 10px 20px;
  }

  .detail-left {
    width: 100%;
    text-align: center;
    padding-bottom: 30px;
  }

  .detail-left img {
    border-right: none;
  }

  .detail-gallery {
    padding-top: 10px;
    justify-content: center;
    gap: 10px;
  }

  .detail-gallery img {
    max-width: 30.333%;
  }

  .btn--detail {
    background-color: #fff;
    color: var(--body-color);
  }

  .detail-right {
    border-radius: 5px;
    overflow: hidden;
    margin-top: -6px;
    width: 100%;
  }

  .phone-icon--dark {
    display: block;
  }

  .phone-icon--light {
    display: none;
  }

  .page-details {
    padding-left: 20px;
    padding-right: 20px;
  }

  .filter {
    gap: 10px;
  }

  .container--header-image {
    padding-left: 15px;
    padding-right: 15px;
  }

  .filter input[type="submit"] {
    background-color: var(--secondary-color);
    color: #fff;
    height: 50px;
  }
}

@media only screen and (max-width: 600px) {
  .container--footer-bottom {
    padding: 10px 0;
    flex-direction: column;
    gap: 10px;
    align-items: center;
    text-align: center;
  }

  .bottom-right {
    flex-direction: column;
    gap: 10px;
    text-align: center;
  }

  .button-area .btn {
    width: 100%;
    display: block;
    align-items: normal;
  }

  .page-details {
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px 15px;
  }

  .tile {
    max-width: 40%;
  }

  .tile-flag::before
  {
    position: absolute;
    top: 0;
    left: 0;
    color: white;
    font-weight: bold;
    padding: 5px 0;
    width: 100%;
    text-align: center;
    z-index: 1;
    font-size: 12px;
    border-radius: 0;
    transform: none;
    transform-origin: unset;
  }

  .tile-image {
    width: 100%;
  }

  .tile-row {
    flex-direction: column;
  }

  .hours li {
    padding-left: 30px;
    width: 210px;
    margin: auto;
  }

  .detail-parameter {
    flex: 0 1 calc(50%);
  }

  .tab-wrap {
    gap: 10px;
  }

  .filter {
    flex-direction: column;
  }

  .header-image {
    display: none;
  }

  .tab + label {
    flex: auto;
  }

  .detail-parameters {
    padding-left: 0;
  }

  .services li {
    flex: 0 1 calc(50%);
  }
}

@media only screen and (min-width: 600px) and (max-width: 1200px) {
  .button-area {
    flex-direction: row;
    order: 2;
    justify-content: flex-end;
  }

  .main-menu {
    order: 3;
  }

  .container--header {
    flex-wrap: nowrap;
  }
}
