/*
 * This is a manifest file that'll be compiled into application.css, which will include all the files
 * listed below.
 *
 * Any CSS (and SCSS, if configured) file within this directory, lib/assets/stylesheets, or any plugin's
 * vendor/assets/stylesheets directory can be referenced here using a relative path.
 *
 * You're free to add application-wide styles to this file and they'll appear at the bottom of the
 * compiled file so the styles you add here take precedence over styles defined in any other CSS
 * files in this directory. Styles in this file should be added after the last require_* statement.
 * It is generally better to create a new file per style scope.
 *












 */

html {
  scroll-behavior: smooth;
}

body {
  font-family: Inter, sans-serif;
  line-height: 1.6;
  color: #454545;
  background-color: #ffffff;
  margin: 0;
  padding: 0;
}

a {
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

.item-list {
  list-style-type: none;
  padding: 0;
}

.item-list li {
  margin: 10px 0;
}

.form-group {
  margin-bottom: 15px;
}

.form-group label {
  display: block;
  font-weight: bold;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 10px;
  margin-top: 5px;
  border: 1px solid #ccc;
  border-radius: 5px;
}

.btn-submit {
  background-color: #007bff;
  color: white;
  padding: 10px 20px;
  border: none;
  border-radius: 5px;
  cursor: pointer;
}

.btn-submit:hover {
  background-color: #0056b3;
}

.rounded {
  border-radius: 50%;
}

@font-face {
  font-family: 'Heading Now';
  src: url(/app/assets/fonts/heading-now.ttf) format('truetype');
  font-weight: normal;
  font-style: normal;
}

#assistant {
  position: fixed;
  bottom: 0;
  right: 0;
  z-index: 1000;
}

#assistant-img {
  height: 18em;
  cursor: pointer;
}

#assistant-dialog {
  position: absolute;
  bottom: 8em;
  right: 15em;
  background: white;
  padding: 16px 20px;
  border-radius: 20px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.2);
  font-family: sans-serif;
  display: none;
  flex-direction: column;
  gap: 12px;
  min-width: 300px;
  max-width: 360px;
}

#assistant.show-dialog #assistant-dialog {
  display: flex;
}

.dialog-title {
  font-size: 16px;
  font-weight: bold;
  margin: 0;
}

.dialog-buttons {
  display: flex;
  flex-direction: row;
  gap: 10px;
}

.dialog-buttons button {
  flex: 1;
  padding: 8px 12px;
  border: 1px solid rgba(110, 149, 220, 0.61);
  background-color: #FFFFFF;
  border-radius: 8px;
  cursor: pointer;
  text-align: center;
  white-space: nowrap
}

#assistant.expanded #assistant-dialog {
  display: flex;
}

.assistant-hidden #assistant-dialog {
  display: none !important;
}

#assistant.expanded #assistant-dialog {
  display: flex;
}
.form-text-field {
  border: 3px solid #A7BEEA;
  border-radius: 20px;
  width: 25%;
  height: 3em;
  padding-left: 2em;
  font-size: 105%;
}

input::placeholder {
  color: #9699A5;
  opacity: 1;
}

.review-stars {
  font-size: 130%;
  gap: 0.5em;
}

.button {
  background-color: #6E95DC;
  color: #FFFFFF;
  border: 3px solid #A7BEEA;
  border-radius: 20px;
  width: auto;
  height: 3.5em;
  text-align: left;
  padding-left: 2em;
  padding-right: 2em;
  font-size: 110%;
}

.button-main {
  display: flex;
  background-color: #FFFFFF;
  color: #4A4A4A;
  border-radius: 20px;
  font-weight: 400;
  width: auto;
  height: 4em;
  padding-left: 3em;
  padding-right: 3em;
  font-size: 120%;
  text-align: center;
  justify-content: center;
  align-items: center;
  box-shadow: 0 4px 8px 4px rgba(0, 0, 0, 0.1);
}

.star-rating {
  display: flex;
  justify-content: left;
  direction: rtl;
  gap: 0.5rem;
}

.star-input {
  display: none;
}

.star-label i {
  font-size: 2rem;
  color: #ccc;
  transition: color 0.2s;
  cursor: pointer;
}

.star-rating:not(.has-selection) .star-label:hover i,
.star-rating:not(.has-selection) .star-label:hover ~ .star-label i {
  color: #FFB15F;
}

.star-label.selected i {
  color: #FFB15F;
}

.filled {
  color: #FFB15F;
}

.full-width-banner {
  display: block;
  width: 100%;
  height: auto;
}

.parallax-container {
  position: relative;
  overflow: hidden;
}

.image-with-text {
  position: relative;
  overflow: hidden;
}

.on-image-text {
  position: absolute;
  top: 10%;
  left: 6%;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.on-image-btn {
  position: absolute;
  max-width: 150px;
  top: 55%;
  right: 35%;
}

.parallax-text {
  position: absolute;
  top: 10%;
  left: 6%;
  transform: translateY(-50%);
  will-change: transform;
  /* pointer-events: auto; если вам нужны hover-события */
}

.map-card {
  position: relative;
  background: white;
  padding: 1em 1em 8em;
  border-radius: 25px;
  box-shadow: 0 4px 8px 4px rgba(0, 0, 0, 0.1);
}

.on-map-text {
  position: absolute;
  top: 80%;
  left: 6%;
}
.items-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 0.5fr));
  gap: 47px;
  margin-top: 2.5em;
  margin-bottom: 2.5em;
  /*padding: 0px;*/
}

.item-card {
  background: white;
  padding: 15px;
  border-radius: 10px;
  box-shadow: 0 4px 8px 4px rgba(0, 0, 0, 0.1);
  text-align: center;
}

.item-card h2 {
  font-size: 1.5rem;
  margin-bottom: 10px;
}

.item-image {
  width: 100%;
  height: auto;
  max-height: 200px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 10px;
}

.item-info-block {
  float: left;
  width: 40%;
  padding-right: 10%;
  font-size: 120%;
  font-weight: lighter;
}

.item-right-image {
  float: right;
  width: 50%;
}

.item-right-image img {
  margin-top: 27px;
  border-radius: 25px;
  width: 100%;
}

.item-title {
  font-family: "Heading Now", sans-serif;
  font-size: 27px;
  margin-bottom: 0.25em;
}

.item-article {
  font-size: 16px;
  font-weight: lighter;
  line-height: 20px;
  margin-top: 0;
}

.btn-view {
  display: inline-block;
  background-color: #ffffff;
  color: #6E95DC;
  font-weight: bolder;
  font-size: 70%;
  padding: 8px 12px;
  border: 2px solid #B9D0FC;
  border-radius: 8px;
  text-decoration: none;
  max-width: 72px;
}

.btn.btn-view i {
  font-size: 50%;
}

.btn-view:hover {
  background-color: rgba(110, 149, 220, 0.1);
}

.item-rating {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1em;
  margin-top: 12px;
}

.item-rating i {
  font-size: 2em;
  color: #FFA645;
  line-height: 1;
}

.item-rating .fa-regular {
  color: #E0E0E0;
}

.item-card-title {
  font-size: 125%;
  text-align: left;
  margin-left: 6%;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.rating-value {
  margin-left: 8px;
  font-size: 14px;
  color: #555;
}

.item-price-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 90%;
  color: #1D1D1F;
  font-weight: 500;
  margin-left: 6%;
}

.item-footer-element {
  font-size: 100%;
  align-items: center;
  display: inline-flex;
}

.currency-symbol {
  margin-left: 2px;
  font-size: 105%;
}
.container {
  width: 100%;
  max-width: 1920px;
  margin: 0 auto;
  background: #FFFFFF;
  box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.1);
  overflow: hidden;
}

.navbar {
  align-items: center;
  background-color: #FFFFFF;
  box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.1);
  display: flex;
  flex-wrap: nowrap;
  justify-content: space-between;
}

.left-block {
  padding-left: 6%;
  display: inline-flex;
  white-space: nowrap;
  align-items: center;
}

.right-block {
  padding-right: 6%;
  display: inline-flex;
  white-space: nowrap;
  align-items: center;
}

.section {
  margin-top: 6%;
  margin-bottom: 6%;
  padding-left: 6%;
  padding-right: 6%;
  overflow: auto;
}

.header-line {
  min-height: 25px;
  background-color: #FFF4E5;
}

.logo {
  clear: both;
}

.nav-title {
  padding-left: 8px;
  clear: both;
  display: inline;
}

.footer {
  padding-left: 6%;
  padding-bottom: 0.25em;
}
.navbar,
.nav-list {
  overflow: visible; /* чтобы дропдаун мог “выпасть” за пределы */
}

.nav-item.dropdown {
  position: relative; /* важно, чтобы меню позиционировалось относительно этого <li> */
}

.dropdown-menu {
  display: none;
  position: relative;
  top: 50%;
  left: 0;
  background: white;
  list-style: none;
  margin: 0;
  padding: 0.5em 0;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
  z-index: 1000;
}

.dropdown-menu li {
  padding: 0;
}

.dropdown-menu li a {
  display: block;
  padding: 0.5em 1em;
  color: #333;
  text-decoration: none;
}

.dropdown-menu li a:hover {
  background-color: #f0f0f0;
}

.dropdown-menu.show {
  display: block;
}
.reviews {
  width: 40%;
  float: left;
}

.review {
  background-color: #fff;
  margin-bottom: 15px;
  border-radius: 30px;
  box-shadow: 0 4px 8px 4px rgba(0, 0, 0, 0.1);
}

.review-contents {
  padding: 10px 40px 20px;
}

.review-user-name {
  font-family: "Heading Now", sans-serif;
  font-size: 100%;
}

.new-review-form {
  width: 50%;
  float: right;
}

.null-state-text {
  margin-top: 30px;
  width: 40%;
}
.mt-sm {
  margin-top: 0.6rem;
}

.mt-md, .mt {
  margin-top: 1rem;
}

.mt-lg {
  margin-top: 2.5rem;
}

.mb-sm {
  margin-bottom: 0.6rem;
}

.mb-md, .mb {
  margin-bottom: 1rem;
}

.mb-lg {
  margin-bottom: 2.5rem;
}

.mr-sm {
  margin-right: 2vw;
}

.mr, .mr-md {
  margin-right: 1em;
}

.mr-lg {
  margin-right: 2.5em;
}

.ml-sm {
  margin-left: .6em;
}

.ml, .ml-md {
  margin-left: 1em;
}

.ml-lg {
  margin-left: 2.5em;
}

.title-lg {
  font-size: 1.75rem;
  /*I need 26px, 1rem=16px*/
}

.nav-element-text a {
  font-size: 1.2rem;
  color: #4A4A4A;
}

.nav-right-link a {
  padding-left: 8px;
}

.nav-right-link i {
  font-size: 80%;
}

.title-md, .title {
  font-size: 150%;
}

.title-sm {
  font-size: 115%;
}

.text-sm {
  font-size: 80%;
}

.text-bold {
  font-weight: bold;
}

.text-semi-bold {
  font-weight: 400;
}

.text-lighter {
  font-weight: lighter;
}

.custom-list {
  list-style: none;
  padding-left: 0;
  position: absolute;
  top: 160%;
}

.custom-list li {
  display: flex;
  align-items: center;
  gap: 1em;
  font-size: 130%;
}

.custom-list i {
  color: #F29515;
  width: 24px;
}

.message {
  width: 100%;
  padding: 1% 6%;
  font-weight: bolder;
}

.message-notice {
  background-color: rgba(159, 199, 130, 0.5);
}

.message-alert {
  background-color: rgba(255, 152, 152, 0.5);
}
@media (max-width: 1500px) {
  .on-image-btn {
    max-width: 100px;
    font-size: 100%;
  }
}

@media (max-width: 1200px) {
  .on-image-btn {
    max-width: 100px;
    font-size: 95%;
  }

  .new-review-form .form-text-field {
    font-size: 95%;
  }
}

@media (max-width: 992px) {
  .nav-element-text a { font-size: 1rem; }

  .on-image-btn {
    max-width: 80px;
    font-size: 90%;
  }

  .item-rating i {
    font-size: 1.5em;
  }

  .new-review-form .form-text-field {
    font-size: 80%;
    padding-left: 1.5em;
  }
}

@media (max-width: 767px) {
  .on-image-btn {
    max-width: 80px;
    font-size: 75%;
  }

  .item-image {
    width: 100%;
    height: 200px;
    object-fit: cover; 
  }

  .item-footer-element {
    font-size: 80%;
  }

  .nav-element-text a { font-size: 0.9rem; }

  .new-review-form .form-text-field {
    font-size: 70%;
    padding-left: 1em;
  }

  .item-description-card {
    display: none;
  }

  .item-title {
    font-size: 130%;
  }

  .item-info-block {
    font-size: 100%;
  }


  #assistant-img {
    height: 14em;
  }

  #assistant-dialog {
    bottom: 8em;
    right: 10em;
    max-width: 60vw;
    min-width: 240px;
  }

  #assistant.expanded {
    right: -1em;
  }

  .dialog-buttons {
    flex-direction: column;
    gap: 8px;
  }

  .dialog-buttons button {
    font-size: 14px;
    padding: 10px;
  }

  .dialog-title {
    font-size: 16px;
  }

  .new-review-form {
    width: 100%;
    float: left;
    margin-bottom: 3em;
  }

  .reviews {
    width: 100%;
    float: left;
  }

  .item-footer-article { display: none; }

}

@media (max-width: 575px) {
  h2 { font-size: 100% }

  .on-image-btn {
    max-width: 80px;
    font-size: 60%;
  }

  .nav-element-text a { font-size: 0.75rem; }

  .item-card {
    background: white;
    padding: 15px;
    border-radius: 10px;
    box-shadow: 0 4px 8px 4px rgba(0, 0, 0, 0.1);
    text-align: center;
  }

  .item-card h2 {
    font-size: 1.1rem;
  }

  h3 { font-size: 100%; }

  .items-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(140px, 0.5fr));
    gap: 20px;
    margin-top: 2.5em;
    margin-bottom: 2.5em;
    font-size: 80%;
    /*padding: 0px;*/
  }

  .title-sm {
    font-size: 90%;
  }

  .item-rating { font-size: 90%; }
}

@media (max-width: 440px) {
  .nav-element-text a { font-size: 0.6rem; }

  .on-image-btn {
    font-size: 50%;
  }

  .item-title {
    font-size: 130%;
  }

  .item-article {
    font-size: 105%;
  }

  .item-info-block {
    font-size: 80%;
    width: 100%;
  }

  .item-right-image {
    width: 100%;
    float: left;
  }

  .form-text-field {
    border: 2px solid #A7BEEA;
    border-radius: 20px;
    /*width: 20%;*/
    height: 3em;
    padding-left: 2em;
    font-size: 80%;
  }

  .button {
    font-size: 90%;
  }

  #assistant-img {
    height: 12em;
  }

  #assistant-dialog {
    bottom: 12em;
    right: 6em;
    max-width: 40vw;
    min-width: 240px;
  }

  .dialog-buttons button {
    font-size: 13px;
  }

  .about-banner {
    width: 166vw;
    height: 100%;
    object-fit: cover;
    object-position: left;
    position: relative;
    top: 0;
    right: 3em;
  }
}

@media (max-width: 388px) {
  #assistant-dialog {
    bottom: 12em;
    right: 10em;
    max-width: 30vw;
    min-width: 225px;
    font-size: smaller;
  }

  #assistant.expanded {
    right: -2.5em;
  }

  .btn-view {
    font-size: 50%;
  }

  .item-rating i {
    font-size: 120%;
  }
}
