@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&family=Playfair+Display:ital,wght@0,400..900;1,400..900&display=swap");
/**************************
RESET STYLE

***************************/
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video, input, textarea, select, button {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  box-sizing: border-box;
}

/**************************
ROOT

***************************/
html, body {
  margin: 0;
  padding: 0;
  font-family: "Montserrat", sans-serif;
  background: rgb(255, 255, 255);
  color: #f8fafc;
  scroll-behavior: smooth;
}

body {
  min-height: 100vh;
  width: 100%;
  overflow: x-hidden;
}

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
}

h1, h2, h3, h4, hgroup {
  font-family: "Playfair Display", serif;
}

body, p, a, span {
  font-family: "Montserrat", sans-serif;
}

.container {
  margin-left: auto;
  margin-right: auto;
  width: 80%;
  max-width: 1600px;
}

@media (min-width: 300px) {
  .container {
    width: 100%;
    padding: 0 0%;
  }
}
@media (min-width: 576px) {
  .container {
    width: 100%;
    padding: 0 3%;
  }
}
@media (min-width: 768px) {
  .container {
    max-width: 740px;
    padding: 0 3%;
  }
}
@media (min-width: 992px) {
  .container {
    max-width: 960px;
    padding: 0 3%;
  }
}
@media (min-width: 1200px) {
  .container {
    max-width: 1140px;
    padding: 0%;
  }
}
@media (min-width: 1400px) {
  .container {
    max-width: 1280px;
    padding: 0%;
  }
}
@media (min-width: 1600px) {
  .container {
    max-width: 1440px;
    padding: 0%;
  }
}
@media (min-width: 1920px) {
  .container {
    max-width: 1600px;
    padding: 0%;
  }
}
.image {
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  height: 100%;
  -o-object-position: center;
     object-position: center;
}

/**************************
VARIJABLE (HEADER / HERO)

***************************/
.main__nav {
  background-color: #0e1824;
  min-height: 9vh;
  padding: 0.5% 1%;
  z-index: 1000;
}
.main__nav .main__nav--inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 9vh;
}
.main__nav .main__nav--inner .main__navigation ul {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}
.main__nav .main__nav--inner .main__navigation ul li a {
  position: relative;
  display: inline-block;
  padding-bottom: 5px;
  color: #ffffff;
  font-weight: 500;
  transition: color 0.3s ease-in-out;
}
.main__nav .main__nav--inner .main__navigation ul li a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 2px;
  background-color: #f3b166;
  transition: width 0.3s ease-in-out;
}
.main__nav .main__nav--inner .main__navigation ul li a:hover {
  color: #f3b166;
}
.main__nav .main__nav--inner .main__navigation ul li a:hover::after {
  width: 100%;
}
.main__nav .main__nav--inner .main__navigation ul li.current-menu-item a {
  color: #f3b166;
}
.main__nav .main__nav--inner .main__navigation ul li.current-menu-item a::after {
  width: 100%;
}
.main__nav .main__nav--inner .main__nav--burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 30px;
  height: 24px;
  background: transparent;
  border: none;
  cursor: pointer;
}
.main__nav .main__nav--inner .main__nav--burger span {
  display: block;
  width: 100%;
  height: 2px;
  background-color: #ffffff;
  transition: 0.3s ease-in-out;
}
.main__nav .mobile-nav {
  display: none;
}
.main__nav .logo {
  width: 120px;
  height: auto;
}
.main__nav .btn {
  display: inline-block;
  padding: 0.5rem 1rem;
  background-color: #f3b166;
  font-weight: 500;
  font-family: "Montserrat", sans-serif;
  color: #ffffff;
  cursor: pointer;
  border: 2px solid #f3b166;
  border-radius: 3px;
  transition: 0.3s ease-in-out;
  font-family: "Playfair Display", serif;
}
.main__nav .btn:hover {
  background-color: rgb(240.0327272727, 157.7127272727, 64.1672727273);
  transform: translateY(-2px);
  box-shadow: 0 6px 14px rgba(0, 0, 0, 0.2);
}

@media (max-width: 768px) {
  .main__nav .main__navigation {
    display: none;
  }
  .main__nav .main__nav--burger {
    display: flex;
  }
}
.main__header {
  position: relative;
  height: 88vh;
  width: 100%;
}
.main__header .splide {
  height: 100%;
}
.main__header .splide__track,
.main__header .splide__list,
.main__header .splide__slide {
  height: 100%;
}
.main__header .splide__slide {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.main__header .splide__slide .image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  z-index: 1;
}
.main__header .splide__slide::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.4);
  z-index: 2;
}
.main__header .splide__slide hgroup {
  position: relative;
  z-index: 3;
  text-align: center;
}
.main__header .h-1 {
  color: #fff;
  font-size: clamp(2rem, 5vw, 4rem);
  font-weight: 500;
  margin: 0 0 1.5rem 0;
  position: relative;
  text-align: center;
  padding: 1rem;
  font-family: "Playfair Display", serif;
}
.main__header .h-1 span {
  color: #f3b166;
  font-style: italic;
  font-family: "Cormorant Garamond", serif;
  font-weight: 500;
}
.main__header .splide__arrow {
  background: transparent !important;
  background-color: transparent !important;
  opacity: 1;
  width: 50px;
  height: 50px;
}
.main__header .splide__arrow svg {
  fill: #f3b166;
  width: 50px;
  height: 50px;
}
.main__header .splide__arrow:hover svg {
  fill: #d99a4f;
}

.site-footer {
  background-color: #0e1824;
  color: rgba(255, 255, 255, 0.8);
  padding-top: 5%;
}
.site-footer__inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 3rem;
  padding-bottom: 4%;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.site-footer__col {
  flex: 1 1 200px;
}
.site-footer__col h4 {
  color: #f3b166;
  font-size: 1.1rem;
  margin-bottom: 1.2rem;
  letter-spacing: 1px;
}
.site-footer__col ul li {
  margin-bottom: 0.8rem;
}
.site-footer__col a {
  color: rgba(255, 255, 255, 0.8);
  transition: color 0.3s ease-in-out;
}
.site-footer__col a:hover {
  color: #f3b166;
}
.site-footer__col .btn {
  display: inline-block;
  padding: 0.5rem 1rem;
  background-color: #f3b166;
  font-weight: 500;
  font-family: "Montserrat", sans-serif;
  color: #ffffff;
  cursor: pointer;
  border: 2px solid #f3b166;
  border-radius: 3px;
  transition: 0.3s ease-in-out;
  margin-top: 1rem;
}
.site-footer__col .btn:hover {
  background-color: rgb(240.0327272727, 157.7127272727, 64.1672727273);
  transform: translateY(-2px);
  box-shadow: 0 6px 14px rgba(0, 0, 0, 0.2);
}
.site-footer__brand {
  flex: 1 1 280px;
}
.site-footer__brand p {
  margin: 1rem 0 1.5rem;
  line-height: 1.6;
  font-size: 0.9rem;
}
.site-footer__logo {
  height: 50px;
  width: auto;
}
.site-footer__social {
  display: flex;
  gap: 1rem;
}
.site-footer__social a {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  transition: all 0.3s ease-in-out;
}
.site-footer__social a img {
  width: 18px;
  height: 18px;
  filter: brightness(0) invert(1);
}
.site-footer__social a i {
  font-size: 1rem;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
}
.site-footer__social a:hover {
  background-color: #f3b166;
  border-color: #f3b166;
}
.site-footer__social a:hover img {
  filter: brightness(0) invert(1);
}
.site-footer__social a:hover i {
  color: #0e1824;
}
.site-footer__contact li {
  display: flex;
  align-items: center;
  font-size: 0.9rem;
  list-style: none;
  gap: 10px;
}
.site-footer__contact li i {
  color: #f3b166;
  width: 16px;
}
.site-footer__bottom {
  padding: 1.5rem 0;
  text-align: center;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.5);
}

@media (max-width: 768px) {
  .site-footer__inner {
    flex-direction: column;
    text-align: center;
  }
  .site-footer__social {
    justify-content: center;
  }
  .site-footer__contact li {
    justify-content: center;
  }
}
.restaurant {
  padding: 5% 0;
  text-align: center;
}
.restaurant__inner {
  display: flex;
  align-items: center;
  gap: 4rem;
  flex-wrap: wrap;
}
.restaurant__content {
  flex: 1 1 46%;
}
.restaurant__content h2 {
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  margin-bottom: 1rem;
  color: #0e1824;
}
.restaurant__content p {
  color: #555;
  line-height: 1.7;
  margin-bottom: 2rem;
}
.restaurant__image {
  flex: 1 1 450px;
}
.restaurant__image img {
  border-radius: 10px;
  height: 450px;
}
.restaurant .restaurant__menus {
  display: flex;
  gap: 1rem;
  margin-top: 2rem;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
  margin-top: 2rem;
  flex-wrap: wrap;
}
.restaurant .btn--outline {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 0.7rem 1.4rem;
  background-color: transparent;
  color: #0e1824;
  border: 2px solid #f3b166;
  border-radius: 3px;
  font-weight: 500;
  font-family: "Montserrat", sans-serif;
  cursor: pointer;
  transition: 0.3s ease-in-out;
}
.restaurant .btn--outline i {
  color: #f3b166;
  font-size: 1.1rem;
  transition: 0.3s ease-in-out;
}
.restaurant .btn--outline:hover {
  background-color: #f3b166;
  color: #fff;
}
.restaurant .btn--outline:hover i {
  color: #fff;
}
@media (max-width: 576px) {
  .restaurant .restaurant__menus {
    flex-direction: column;
  }
  .restaurant .btn--outline {
    justify-content: center;
    width: 100%;
  }
}
.restaurant .restaurant__gallery {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 10px;
  height: 600px;
  border-radius: 10px;
  overflow: hidden;
  flex: 1 1 46%;
}
.restaurant .restaurant__gallery-item {
  display: block;
  position: relative;
  overflow: hidden;
}
.restaurant .restaurant__gallery-item img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  transition: transform 0.4s ease-in-out;
}
.restaurant .restaurant__gallery-item:hover img {
  transform: scale(1.08);
}
.restaurant .restaurant__gallery-item--main {
  grid-row: span 2;
}
.restaurant .restaurant__gallery-zoom {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0.5);
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: rgba(0, 0, 0, 0.5);
  border-radius: 50%;
  opacity: 0;
  transition: 0.3s ease-in-out;
  z-index: 2;
  line-height: 1;
}
.restaurant .restaurant__gallery-zoom i {
  display: block;
  color: #fff;
  font-size: 1.2rem;
  line-height: 1;
}
.restaurant .restaurant__gallery-item:hover .restaurant .restaurant__gallery-zoom {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
}
.restaurant .restaurant__gallery-item::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0);
  transition: 0.3s ease-in-out;
  z-index: 1;
}
.restaurant .restaurant__gallery-item:hover::after {
  background: rgba(0, 0, 0, 0.2);
}
.restaurant .restaurant__gallery .restaurant__gallery-item--hidden {
  display: none;
}
@media (max-width: 768px) {
  .restaurant .restaurant__gallery {
    grid-template-columns: 1fr;
    grid-template-rows: repeat(3, 250px);
    height: auto;
  }
  .restaurant .restaurant__gallery-item--main {
    grid-row: span 1;
  }
}
@media (max-width: 768px) {
  .restaurant .restaurant__gallery {
    grid-template-columns: 1fr;
    grid-template-rows: repeat(3, 250px);
    height: auto;
  }
  .restaurant .restaurant__gallery-item--main {
    grid-row: span 1;
  }
}
@media (max-width: 768px) {
  .restaurant .restaurant__gallery {
    grid-template-columns: 1fr;
    grid-template-rows: repeat(3, 200px);
    height: auto;
  }
  .restaurant .restaurant__gallery-item--main {
    grid-row: span 1;
  }
}

.amenities .row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 2rem;
}
.amenities .col {
  display: contents;
}
.amenities ul {
  display: contents;
}
.amenities .single-building-features-box {
  display: flex;
  flex-direction: row;
  align-items: center;
  text-align: center;
  padding-bottom: 1.5rem;
  padding-top: 1.5rem;
  position: relative;
  cursor: pointer;
}
.amenities .single-building-features-box .icon {
  width: 80px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #fff;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  border-radius: 50%;
  margin-bottom: 1.2rem;
  transition: background-color 0.4s ease-in-out;
}
.amenities .single-building-features-box .icon i {
  font-size: 1.8rem;
  color: #f3b166;
  transition: color 0.4s ease-in-out;
}
.amenities .single-building-features-box .title {
  text-align: start;
  margin-left: 1rem;
}
.amenities .single-building-features-box .title h3 {
  font-size: 1.2rem;
  font-family: "Playfair Display", serif;
  font-weight: 700;
  color: #0e1824;
  margin-bottom: 0.4rem;
  transition: color 0.4s ease-in-out;
}
.amenities .single-building-features-box .title p {
  font-size: 0.9rem;
  color: #6b7280;
  margin: 0;
}
.amenities .single-building-features-box::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  height: 2px;
  background-color: #e5e7eb;
}
.amenities .single-building-features-box::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 2px;
  background-color: #f3b166;
  z-index: 1;
  transition: width 0.4s ease-in-out;
}
.amenities .single-building-features-box:hover .icon {
  background-color: #f3b166;
}
.amenities .single-building-features-box:hover .icon i {
  color: #fff;
}
.amenities .single-building-features-box:hover .title h3 {
  color: #f3b166;
}
.amenities .single-building-features-box:hover::before {
  width: 100%;
}

@media (max-width: 576px) {
  .amenities .row {
    grid-template-columns: 1fr;
  }
}
.spa {
  padding: 5% 0;
  text-align: center;
}
.spa__inner {
  display: flex;
  align-items: center;
  gap: 4rem;
  flex-wrap: wrap;
}
.spa__content {
  flex: 1 1 46%;
}
.spa__content h2 {
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  margin-bottom: 1rem;
  color: #0e1824;
}
.spa__content p {
  color: #555;
  line-height: 1.7;
  margin-bottom: 2rem;
}

.spa__gallery {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 10px;
  height: 600px;
  border-radius: 10px;
  overflow: hidden;
  flex: 1 1 46%;
}
.spa__gallery-item {
  display: block;
  position: relative;
  overflow: hidden;
}
.spa__gallery-item img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  transition: transform 0.4s ease-in-out;
}
.spa__gallery-item:hover img {
  transform: scale(1.08);
}
.spa__gallery-item--main {
  grid-row: span 2;
}
.spa__gallery-item--hidden {
  display: none;
}
.spa__gallery-zoom {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0.5);
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: rgba(0, 0, 0, 0.5);
  border-radius: 50%;
  opacity: 0;
  transition: 0.3s ease-in-out;
  z-index: 2;
  line-height: 1;
}
.spa__gallery-zoom i {
  display: block;
  color: #fff;
  font-size: 1.2rem;
  line-height: 1;
}
.spa__gallery-item:hover .spa__gallery-zoom {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
}
.spa__gallery-item::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0);
  transition: 0.3s ease-in-out;
  z-index: 1;
}
.spa__gallery-item:hover::after {
  background: rgba(0, 0, 0, 0.2);
}

@media (max-width: 768px) {
  .spa__inner {
    flex-direction: column;
  }
  .amenities .row {
    grid-template-columns: 1fr;
  }
  .spa__gallery {
    grid-template-columns: 1fr;
    grid-template-rows: repeat(3, 250px);
    height: auto;
  }
  .spa__gallery-item--main {
    grid-row: span 1;
  }
}
.map {
  padding: 5% 0;
}
.map__inner {
  display: flex;
  align-items: stretch;
  gap: 3rem;
  flex-wrap: wrap;
}
.map__wrapper {
  flex: 1 1 46%;
  border-radius: 10px;
  overflow: hidden;
}
.map__wrapper iframe {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 450px;
}

.contact {
  flex: 1 1 46%;
}
.contact h2 {
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  margin-bottom: 1rem;
  color: #0e1824;
}
.contact p {
  color: #555;
  line-height: 1.7;
  margin-bottom: 2rem;
}
.contact__form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.contact__row {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}
.contact__row input {
  flex: 1 1 200px;
}
.contact input,
.contact textarea {
  width: 100%;
  padding: 0.8rem 1rem;
  border: 1px solid #e0e0e0;
  border-radius: 4px;
  font-family: "Montserrat", sans-serif;
  font-size: 0.95rem;
  color: #0e1824;
  transition: border-color 0.3s ease-in-out;
}
.contact input::-moz-placeholder, .contact textarea::-moz-placeholder {
  color: #999;
}
.contact input::placeholder,
.contact textarea::placeholder {
  color: #999;
}
.contact input:focus,
.contact textarea:focus {
  outline: none;
  border-color: #f3b166;
}
.contact textarea {
  resize: vertical;
}
.contact .btn {
  align-self: flex-start;
  display: inline-block;
  padding: 0.8rem 2rem;
  background-color: #f3b166;
  color: #fff;
  border: 2px solid #f3b166;
  border-radius: 3px;
  font-weight: 500;
  font-family: "Montserrat", sans-serif;
  cursor: pointer;
  transition: 0.3s ease-in-out;
}
.contact .btn:hover {
  background-color: transparent;
  color: #f3b166;
}

@media (max-width: 768px) {
  .map__inner {
    flex-direction: column;
  }
  .map__wrapper iframe {
    height: 350px;
    min-height: 350px;
  }
  .contact__row {
    flex-direction: column;
  }
}
.smestaj {
  padding: 5% 0;
  text-align: center;
}
.smestaj h4 {
  color: #f3b166;
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 0.8rem;
}
.smestaj h2 {
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  margin-bottom: 1rem;
  color: #0e1824;
}
.smestaj p {
  color: #555;
  line-height: 1.7;
  margin-bottom: 2rem;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.smestaj__grid {
  display: flex;
  width: 100%;
  height: 550px;
  overflow: hidden;
  padding: 5% 0 0 0;
}

.smestaj__card {
  position: relative;
  flex: 1;
  overflow: hidden;
  display: block;
}
.smestaj__card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.smestaj__card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.75) 0%, rgba(0, 0, 0, 0.15) 60%, transparent 100%);
  z-index: 1;
  transition: opacity 0.4s ease-in-out;
}
.smestaj__card {
  /* Naslov koji je uvek vidljiv (van hover-a) - sada centriran */
}
.smestaj__card-label {
  position: absolute;
  left: 50%;
  bottom: 1.8rem;
  transform: translateX(-50%);
  z-index: 2;
  color: #fff;
  opacity: 1;
  text-align: center;
  width: 100%;
  transition: opacity 0.3s ease-in-out;
}
.smestaj__card-label h3 {
  font-size: 1.3rem;
  margin-bottom: 0.3rem;
}
.smestaj__card-label span {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: rgba(255, 255, 255, 0.85);
}
.smestaj__card {
  /* Overlay koji se ŠIRI preko kartice na hover - sada centriran */
}
.smestaj__card-hover {
  position: absolute;
  inset: 0;
  z-index: 3;
  background: linear-gradient(160deg, rgba(165, 76, 70, 0.7) 0%, rgba(165, 76, 70, 0.7) 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 2.5rem;
  color: #fff;
  clip-path: circle(0% at 50% 50%);
  transition: clip-path 0.6s ease-in-out;
}
.smestaj__card-hover h3 {
  font-size: 1.6rem;
  margin-bottom: 0.3rem;
  font-family: "Playfair Display", serif;
}
.smestaj__card-hover .smestaj__card-size {
  display: block;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 1.2rem;
  color: rgba(255, 255, 255, 0.85);
}
.smestaj__card-hover p {
  font-size: 0.9rem;
  line-height: 1.7;
  margin-bottom: 1.8rem;
  color: #ffffff;
  font-family: "Montserrat", sans-serif;
}
.smestaj__card-btn {
  display: inline-block;
  align-self: center;
  padding: 0.7rem 1.6rem;
  border: 1px solid #fff;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: 0.3s ease-in-out;
  font-family: "Playfair Display", serif;
}
.smestaj__card-btn:hover {
  background: #fff;
  color: #0e1824;
}
.smestaj__card:hover::before {
  opacity: 0;
}
.smestaj__card:hover .smestaj__card-label {
  opacity: 0;
}
.smestaj__card:hover .smestaj__card-hover {
  clip-path: circle(150% at 50% 50%);
}

@media (max-width: 991px) {
  .smestaj__grid {
    flex-direction: column;
    height: auto;
  }
  .smestaj__card {
    height: 300px;
  }
}
.otasync-booking-widget {
  padding: 2% 0 0 0;
}

.rating-badge {
  position: absolute;
  bottom: 30px;
  right: 30px;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background: rgba(14, 24, 36, 0.85);
  border: 2px solid #f3b166;
  text-decoration: none;
  transition: transform 0.3s ease-in-out;
}
.rating-badge:hover {
  transform: scale(1.08);
}
.rating-badge__pulse {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 2px solid #f3b166;
  animation: pulse-ring 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}
.rating-badge__content {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  color: #fff;
}
.rating-badge__score {
  font-family: "Playfair Display", serif;
  font-size: 1.8rem;
  font-weight: 700;
  color: #f3b166;
  line-height: 1;
}
.rating-badge__text {
  font-family: "Montserrat", sans-serif;
  font-size: 0.65rem;
  font-weight: 500;
  line-height: 1.2;
  margin-top: 4px;
}

@keyframes pulse-ring {
  0% {
    transform: scale(1);
    opacity: 1;
  }
  100% {
    transform: scale(1.4);
    opacity: 0;
  }
}
@media (max-width: 576px) {
  .rating-badge {
    width: 75px;
    height: 75px;
    bottom: 15px;
    right: 15px;
  }
  .rating-badge__score {
    font-size: 1.3rem;
  }
  .rating-badge__text {
    font-size: 0.55rem;
  }
}