a {
  color: inherit;
}

.btn-primary,
.btn-warning,
.btn-success {
  color: #fff;
}
.btn-primary:hover,
.btn-warning:hover,
.btn-success:hover {
  color: #fff;
}

:root {
  --font-family: "Inter", "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  --headings-font-family: "Outfit", "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
}

.site-footer {
  padding: 180px 0 15px;
  background: var(--bs-primary);
}
.site-footer h2 {
  margin-bottom: 20px;
  border: none;
  font-family: var(--headings-font-family);
  font-size: 18px;
  color: #fff;
  text-transform: capitalize;
}
.site-footer .block {
  margin: 0;
  padding: 0 12px;
  border: none;
}
.site-footer .content {
  color: #fff;
  line-height: 1.7em;
}
.site-footer .menu--contact-info .nav {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 10px;
}
.site-footer .menu--contact-info .nav .nav-link {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding: 0;
  color: #fff;
}
.site-footer .menu--contact-info .nav .nav-link:hover {
  color: var(--bs-warning);
}
.site-footer .menu--contact-info .nav .nav-link i {
  width: 1.25em;
  margin-right: 15px;
  text-align: center;
}
.site-footer .menu--social-network .nav-item + .nav-item {
  margin-left: 10px;
}
.site-footer .menu--social-network .nav-link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  padding: 10px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 5px;
  color: #fff;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.site-footer .menu--social-network .nav-link:hover {
  background: #fff;
}
.site-footer .menu--social-network .nav-link i {
  color: var(--bs-warning);
}

.site-footer__top .region .menu--contact-info {
  padding-left: 0;
}
@media all and (min-width: 992px) {
  .site-footer__top .region {
    width: calc(33.3333% - 20px) !important;
  }
  .site-footer__top .region + .region {
    margin-left: 30px;
  }
}
@media all and (max-width: 991px) {
  .site-footer__top .region {
    width: calc(50% - 10px);
    padding: 0;
  }
  .site-footer__top .region.region-footer-first {
    width: 100%;
    margin-bottom: 30px;
  }
  .site-footer__top .region.region-footer-second {
    margin-left: 0;
    padding: 0;
  }
}
@media all and (max-width: 850px) {
  .site-footer__top .region {
    width: 100% !important;
    margin-bottom: 20px !important;
    padding: 0 !important;
  }
}

.site-footer__bottom {
  width: 100%;
  margin-top: 60px;
  border-top: solid 1px rgba(255, 255, 255, 0.1);
  letter-spacing: 0;
}
.site-footer__bottom .region-footer-fourth {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;
  margin-top: 15px;
  font-size: 15px;
  color: #fff;
}
.site-footer__bottom .region-footer-fourth > * {
  -ms-flex-negative: 1;
  flex-shrink: 1;
  width: auto;
}
.site-footer__bottom .region-footer-fourth a {
  padding: 0;
  color: #fff;
}
.site-footer__bottom .region-footer-fourth a:hover {
  color: var(--bs-warning);
}
.site-footer__bottom .region-footer-fourth .menu--footer-system-menu {
  margin-left: auto;
}
.site-footer__bottom .region-footer-fourth .menu--footer-system-menu .nav-item + .nav-item {
  margin-left: 20px;
}
@media all and (max-width: 768px) {
  .site-footer__bottom .region-footer-fourth {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
  .site-footer__bottom .menu--footer-system-menu {
    margin-top: 10px;
    margin-right: auto;
  }
}

.header {
  position: relative;
  z-index: 2;
}
.header .bg-black {
  background: #121212;
}

/* Place in web/themes/custom/YOUR_THEME/src/scss/components/_hero.scss */
.hero {
  position: relative;
  padding-top: clamp(3rem, 6vw, 6rem);
  padding-bottom: clamp(3rem, 6vw, 6rem);
  background-color: #000; /* fallback under overlay */
  background-image: var(--hero-bg, none);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  color: #fff;
  isolation: isolate; /* ensure overlay sits below content */
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: #000;
  opacity: var(--hero-overlay-opacity, 0.55);
  z-index: 0;
}
.hero.hero--full {
  min-height: 50vh;
}
.hero .container {
  z-index: 1;
}
.hero h1, .hero .display-1, .hero .display-2, .hero .display-3 {
  color: #fff;
}
.hero p.lead {
  color: rgba(255, 255, 255, 0.9);
}
.hero .btn {
  --bs-btn-padding-y: .75rem;
  --bs-btn-padding-x: 1.5rem;
  --bs-btn-font-size: 1.125rem;
}

.navbar .block-system-branding-block {
  max-width: 155px;
}
.navbar .block-system-branding-block img {
  max-width: 100%;
  height: auto;
}
.navbar .nav-link.is-active {
  color: var(--bs-primary);
}
@media (min-width: 1200px) {
  .navbar.navbar-expand-xl .offcanvas .offcanvas-body {
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
  }
}
.navbar .navbar-toggler {
  padding-right: 0;
  border: none;
}

.node--type-gallery.node--view-mode-teaser {
  max-width: 850px;
  margin: 15px auto;
  padding: 15px;
  border: solid 1px #ddd;
  border-radius: 6px;
  -webkit-box-shadow: 3px 3px 9px rgba(164, 164, 186, 0.2);
  box-shadow: 3px 3px 9px rgba(164, 164, 186, 0.2);
}
.node--type-gallery.node--view-mode-teaser img {
  width: 100%;
  height: auto;
  border-radius: 8px;
}
.node--type-gallery.node--view-mode-teaser .gallery-grid__last {
  position: relative;
}
.node--type-gallery.node--view-mode-teaser .gallery-grid__last .gallery-more {
  position: absolute;
  right: 22px;
  bottom: 10px;
  z-index: 2;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  min-width: 48px;
  height: 36px;
  padding: 0 10px;
  background: rgba(0, 0, 0, 0.6);
  color: #fff;
  font-weight: 600;
  border-radius: 18px;
  backdrop-filter: blur(2px);
}
.node--type-gallery.node--view-mode-teaser .card-title {
  margin: 0 0 10px;
  padding: 0;
  font-size: 20px;
  line-height: 26px;
}
.node--type-gallery.node--view-mode-teaser .card-title a {
  display: inline-block;
  text-decoration: none;
}
.node--type-gallery.node--view-mode-teaser .card-title .field {
  font-size: 20px;
}
.node--type-gallery.node--view-mode-teaser .card-body {
  padding: 15px 0 0;
}
.node--type-gallery.node--view-mode-teaser .field {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  line-height: 1.25em;
}
.node--type-gallery.node--view-mode-teaser .field .field__label {
  font-weight: bold;
}
.node--type-gallery.node--view-mode-teaser .field .field__label::after {
  content: ":";
}
.node--type-gallery.node--view-mode-teaser .field--name-field-images {
  overflow: hidden;
  gap: 0;
  margin: 0;
}
.node--type-gallery.node--view-mode-teaser .field--name-field-images .field__item:not(:first-child) {
  display: none;
}
.node--type-gallery.node--view-mode-teaser .field--name-field-images .field__item,
.node--type-gallery.node--view-mode-teaser .field--name-field-images .field__item img {
  width: 100%;
  height: auto;
  border-radius: 8px;
}
.node--type-gallery.node--view-mode-teaser .field--name-field-images a.photoswipe {
  position: relative;
  display: block;
}
.node--type-gallery.node--view-mode-teaser .field--name-field-images a.photoswipe:after {
  content: "\f31d";
  font-family: "Font Awesome 6 Pro";
  font-weight: 400;
  position: absolute;
  right: 10px;
  bottom: 10px;
  z-index: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  padding: 3px 10px 0;
  background-color: rgba(255, 255, 255, 0.5);
  border-radius: 50%;
}
.node--type-gallery.node--view-mode-teaser .field--name-field-price {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  font-family: var(--headings-font-family);
  font-size: 28px;
  font-weight: 600;
  margin: -5px 0 5px;
  color: #121212;
  text-align: center;
}
.node--type-gallery.node--view-mode-teaser .field--name-field-price::before {
  content: "$";
  margin-right: -8px;
}
.node--type-gallery.node--view-mode-teaser.teaser--horizontal {
  overflow: hidden;
  padding: 0 0 15px;
}
.node--type-gallery.node--view-mode-teaser.teaser--horizontal .teaser__media {
  position: relative;
  margin-bottom: 10px;
}
.node--type-gallery.node--view-mode-teaser.teaser--horizontal .teaser__media img {
  border-radius: 0;
}
.node--type-gallery.node--view-mode-teaser.teaser--horizontal .teaser__media .gallery-more {
  position: absolute;
  right: 12px;
  bottom: 10px;
  z-index: 2;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  min-width: 40px;
  height: 30px;
  padding: 0 10px;
  background: rgba(0, 0, 0, 0.6);
  color: #fff;
  font-weight: 600;
  border-radius: 16px;
  backdrop-filter: blur(2px);
}
.node--type-gallery.node--view-mode-teaser.teaser--horizontal .teaser__body {
  padding: 10px 20px;
}
.node--type-gallery.node--view-mode-teaser.teaser--horizontal .teaser__title a {
  text-decoration: none;
}
.node--type-gallery.node--view-mode-teaser.teaser--horizontal .teaser__title .field {
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  width: 100%;
  font-size: 17px;
}
@media all and (max-width: 768px) {
  .node--type-gallery.node--view-mode-teaser.teaser--horizontal .teaser__body {
    padding: 5px 10px;
  }
  .node--type-gallery.node--view-mode-teaser.teaser--horizontal .teaser__title .field {
    -webkit-line-clamp: 3;
  }
}
@media all and (max-width: 992px) {
  .node--type-gallery.node--view-mode-teaser .col-cta {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin-top: 15px;
  }
}
@media all and (min-width: 768px) and (max-width: 992px) {
  .node--type-gallery.node--view-mode-teaser .col-cta {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    gap: 10px;
  }
  .node--type-gallery.node--view-mode-teaser .field--name-field-price {
    margin: 0;
  }
}
@media all and (max-width: 768px) {
  .node--type-gallery.node--view-mode-teaser .card-body {
    padding: 15px 0;
  }
  .node--type-gallery.node--view-mode-teaser .col-cta {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
  }
}

.node--type-gallery.node--view-mode-full .photoswipe-gallery .field__items {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 15px;
}
.node--type-gallery.node--view-mode-full .photoswipe-gallery .field__items .field__item {
  max-width: calc(25% - 12px);
  height: auto;
}
.node--type-gallery.node--view-mode-full .photoswipe-gallery .field__items .field__item img {
  width: 100%;
  height: auto;
  border-radius: 8px;
}

.menu--floating-menu {
  position: fixed;
  bottom: 25px;
  right: 25px;
  z-index: 1000;
}
.menu--floating-menu .nav-link {
  display: block;
  width: 60px;
  height: 60px;
  background-color: var(--bs-success);
  border-radius: 50%;
  font-size: 25px;
  line-height: 60px;
  text-align: center;
  -webkit-transition: all 0.15s ease-in-out;
  transition: all 0.15s ease-in-out;
}
.menu--floating-menu .nav-link:hover {
  font-size: 30px;
}
@media all and (max-width: 768px) {
  .menu--floating-menu {
    right: 0;
    bottom: 15px;
  }
  .menu--floating-menu .nav-link {
    width: 50px;
    height: 50px;
    font-size: 20px;
    line-height: 50px;
  }
}

.pagination {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.region-top-header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  padding-top: 5px;
  padding-bottom: 5px;
  font-size: 14px;
  color: #fff;
}
.region-top-header > * {
  -ms-flex-negative: 1;
  flex-shrink: 1;
  width: auto;
}
.region-top-header a {
  padding: 5px 0;
  color: #fff;
  text-decoration: none;
}
.region-top-header a:hover {
  color: var(--bs-warning);
}
.region-top-header i {
  margin-right: 5px;
}
.region-top-header .menu--social-network {
  margin-left: auto;
}
.region-top-header .nav {
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;
}
.region-top-header .nav-item + .nav-item {
  margin-left: 25px;
}
.region-top-header .hide-on-header {
  display: none;
}
@media all and (max-width: 768px) {
  .region-top-header {
    font-size: 12px;
  }
  .region-top-header .link-text {
    font-size: 10px;
  }
}

/* Swiper */
.swiper-container img,
.swiper-container .field--type-image,
.swiper-container .field--name-field-user-picture {
  margin: 0;
}

.swiper-pagination-bullet-active {
  background-color: var(--bs-warning);
}

.swiper-button-next,
.swiper-button-prev {
  color: var(--bs-warning);
}

@media (min-width: 560px) {
  .swiper-container .node .field--type-image {
    margin: 0;
  }
}
.photoswipe-gallery img {
  width: 100%;
  height: auto;
  border-radius: 8px;
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
  -webkit-transform: rotateZ(-0.5deg);
  transform: rotateZ(-0.5deg);
}
.photoswipe-gallery img:hover {
  -webkit-transform: scale(1.05) rotateZ(0deg);
  transform: scale(1.05) rotateZ(0deg);
  z-index: 10;
  -webkit-box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.3);
  box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.3);
}

ul.photoswipe-gallery {
  padding: 0;
  list-style: none;
}

.dialog-off-canvas-main-canvas {
  overflow: hidden;
}

.page-title,
.section-title {
  position: relative;
  margin-top: 80px;
  margin-bottom: 80px;
}
.page-title:after,
.section-title:after {
  content: "";
  position: absolute;
  bottom: -25px;
  left: 50%;
  width: 100px;
  height: 5px;
  background-color: var(--bs-primary); /* Use Primary Blue */
  border-radius: 10px;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
}

.section-map {
  margin-bottom: 50px;
}

.block-page-title-block {
  text-align: center;
}

.more-link {
  margin-top: 20px;
  text-align: center;
}