@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: #0b4a3a;
  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: #7da232;
  transition: width 0.3s ease-in-out;
}
.main__nav .main__nav--inner .main__navigation ul li a:hover {
  color: #7da232;
}
.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: #7da232;
}
.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 .main__nav {
  background-color: #0b4a3a;
  min-height: 9vh;
  padding: 0.5% 1%;
  z-index: 1000;
}
.main__nav .main__nav .mobile-nav {
  position: fixed;
  top: 0;
  right: 0;
  width: 300px;
  max-width: 85%;
  height: 100vh;
  background-color: #0b4a3a;
  z-index: 10000;
  transform: translateX(100%);
  transition: transform 0.4s ease-in-out;
  overflow-y: auto;
}
.main__nav .main__nav .mobile-nav.active {
  transform: translateX(0);
}
.main__nav .main__nav .mobile-nav__inner {
  padding: 2rem;
  display: flex;
  flex-direction: column;
  height: 100%;
}
.main__nav .main__nav .mobile-nav__close {
  align-self: flex-end;
  background: transparent;
  border: none;
  color: #ffffff;
  cursor: pointer;
  margin-bottom: 2rem;
}
.main__nav .main__nav .mobile-nav__close svg {
  width: 24px;
  height: 24px;
}
.main__nav .main__nav .mobile-nav__list ul {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.main__nav .main__nav .mobile-nav__list ul li a {
  color: #ffffff;
  font-size: 1.1rem;
  font-weight: 500;
}
.main__nav .logo {
  width: 120px;
  height: auto;
}
.main__nav .btn {
  display: inline-block;
  padding: 0.5rem 1rem;
  background-color: #7da232;
  font-weight: 500;
  font-family: "Montserrat", sans-serif;
  color: #ffffff;
  cursor: pointer;
  border: 2px solid #7da232;
  border-radius: 3px;
  transition: 0.3s ease-in-out;
  font-family: "Playfair Display", serif;
}
.main__nav .btn:hover {
  background-color: rgb(100.9433962264, 130.8226415094, 40.3773584906);
  transform: translateY(-2px);
}

@media (max-width: 768px) {
  .main__nav .main__nav--inner .main__nav--burger {
    display: flex !important;
  }
  .main__nav .main__navigation {
    display: none;
  }
}
.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: #7da232;
  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: #7da232;
  width: 50px;
  height: 50px;
}
.main__header .splide__arrow:hover svg {
  fill: #7da232;
}

.site-footer {
  background-color: #0b4a3a;
  color: rgba(255, 255, 255, 0.8);
  padding-top: 5%;
  border-top: 1px solid rgb(17.6, 118.4, 92.8);
}
.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: #ffffff;
  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: #7da232;
}
.site-footer__col .btn {
  display: inline-block;
  padding: 0.5rem 1rem;
  background-color: #7da232;
  font-weight: 500;
  font-family: "Montserrat", sans-serif;
  color: #ffffff;
  cursor: pointer;
  border: 2px solid #7da232;
  border-radius: 3px;
  transition: 0.3s ease-in-out;
  margin-top: 1rem;
}
.site-footer__col .btn:hover {
  transform: translateY(-2px);
  color: #ffffff;
}
.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: 4.5rem;
  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: #7da232;
  border-color: #7da232;
}
.site-footer__social a:hover img {
  filter: brightness(0) invert(1);
}
.site-footer__social a:hover i {
  color: #ffffff;
}
.site-footer__contact li {
  display: flex;
  align-items: center;
  font-size: 0.9rem;
  list-style: none;
  gap: 10px;
}
.site-footer__contact li i {
  color: #7da232;
  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;
  background-color: #ffffff;
  border-top: 1px solid rgb(153.6367924528, 196.7452830189, 66.2547169811);
}
@media (max-width: 768px) {
  .restaurant {
    padding: 5% 2%;
  }
}
.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: #7da232;
}
.restaurant__content p {
  color: #000000;
  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: #7da232;
  border: 2px solid #7da232;
  border-radius: 3px;
  font-weight: 500;
  font-family: "Montserrat", sans-serif;
  cursor: pointer;
  transition: 0.3s ease-in-out;
}
.restaurant .btn--outline i {
  color: #7da232;
  font-size: 1.1rem;
  transition: 0.3s ease-in-out;
}
.restaurant .btn--outline:hover {
  background-color: #7da232;
  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;
  flex-shrink: 0;
  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: #0b4a3a;
  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: #7da232;
  margin-bottom: 0.4rem;
  transition: color 0.4s ease-in-out;
}
.amenities .single-building-features-box .title p {
  font-size: 0.9rem;
  color: #000000;
  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: #0b4a3a;
  z-index: 1;
  transition: width 0.4s ease-in-out;
}
.amenities .single-building-features-box:hover .icon {
  background-color: #0b4a3a;
}
.amenities .single-building-features-box:hover .icon i {
  color: #fff;
}
.amenities .single-building-features-box:hover .title h3 {
  color: #0b4a3a;
}
.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;
  background-color: #0b4a3a;
  border-top: 1px solid rgb(17.6, 118.4, 92.8);
}
@media (max-width: 768px) {
  .spa {
    padding: 5% 2%;
  }
}
.spa__inner {
  display: flex;
  align-items: center;
  gap: 4rem;
  flex-wrap: wrap;
}
.spa__content {
  flex: 1 1 46%;
}
@media (max-width: 576px) {
  .spa__content {
    order: 1;
  }
}
.spa__content h2 {
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  margin-bottom: 1rem;
  color: #ffffff;
}
.spa__content p {
  color: #ffffff;
  line-height: 1.7;
  margin-bottom: 2rem;
}
.spa .amenities .row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 2rem;
}
.spa .amenities .col {
  display: contents;
}
.spa .amenities ul {
  display: contents;
}
.spa .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;
}
.spa .amenities .single-building-features-box .icon {
  width: 80px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  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;
}
.spa .amenities .single-building-features-box .icon i {
  font-size: 1.8rem;
  color: #0b4a3a;
  transition: color 0.4s ease-in-out;
}
.spa .amenities .single-building-features-box .title {
  text-align: start;
  margin-left: 1rem;
}
.spa .amenities .single-building-features-box .title h3 {
  font-size: 1.2rem;
  font-family: "Playfair Display", serif;
  font-weight: 700;
  color: #7da232;
  margin-bottom: 0.4rem;
  transition: color 0.4s ease-in-out;
}
.spa .amenities .single-building-features-box .title p {
  font-size: 0.9rem;
  color: #ffffff;
  margin: 0;
}
.spa .amenities .single-building-features-box::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  height: 2px;
  background-color: #e5e7eb;
}
.spa .amenities .single-building-features-box::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 2px;
  background-color: #7da232;
  z-index: 1;
  transition: width 0.4s ease-in-out;
}
.spa .amenities .single-building-features-box:hover .icon {
  background-color: #7da232;
}
.spa .amenities .single-building-features-box:hover .icon i {
  color: #fff;
}
.spa .amenities .single-building-features-box:hover .title h3 {
  color: #ffffff;
}
.spa .amenities .single-building-features-box:hover::before {
  width: 100%;
}
@media (max-width: 576px) {
  .spa .amenities .row {
    grid-template-columns: 1fr;
  }
}

.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%;
}
@media (max-width: 576px) {
  .spa__gallery {
    order: 2;
  }
}
.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 {
    width: 100%;
    flex: 1 1 100%;
    grid-template-columns: 1fr;
    grid-template-rows: repeat(3, 250px);
    height: auto;
  }
  .spa__gallery-item--main {
    grid-row: span 1;
  }
}
.map {
  padding: 5% 0;
  background-color: #0b4a3a;
  border-top: 1px solid rgb(17.6, 118.4, 92.8);
}
@media (max-width: 768px) {
  .map {
    padding: 5% 2%;
  }
}
.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%;
}
@media (max-width: 768px) {
  .contact {
    padding: 2%;
  }
}
.contact h2 {
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  margin-bottom: 1rem;
  color: #ffffff;
}
.contact p {
  color: #ffffff;
  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: #0b4a3a;
  transition: border-color 0.3s ease-in-out;
}
.contact input::-moz-placeholder, .contact textarea::-moz-placeholder {
  color: #ffffff;
}
.contact input::placeholder,
.contact textarea::placeholder {
  color: #ffffff;
}
.contact input:focus,
.contact textarea:focus {
  outline: none;
  border-color: #0b4a3a;
}
.contact textarea {
  resize: vertical;
}
.contact .btn {
  align-self: flex-start;
  display: inline-block;
  padding: 0.8rem 2rem;
  background-color: #0b4a3a;
  color: #fff;
  border: 2px solid #0b4a3a;
  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: #7da232;
}

@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;
  background-color: #0b4a3a;
  border-top: 1px solid rgb(17.6, 118.4, 92.8);
}
@media (max-width: 768px) {
  .smestaj {
    padding: 5% 2%;
  }
}
.smestaj h4 {
  color: #ffffff;
  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: #7da232;
}
.smestaj p {
  color: #ffffff;
  line-height: 1.7;
  margin-bottom: 2rem;
  margin-left: auto;
  margin-right: auto;
  padding: 1% 3%;
}

.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: 100vh;
  }
  .smestaj__card {
    height: 300px;
  }
}
.otasync-booking-widget {
  padding: 2% 0;
  background: #0e1824;
}

.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;
  }
}
.gallery {
  padding: 5% 0;
  text-align: center;
  background-color: #ffffff;
}
@media (max-width: 768px) {
  .gallery {
    padding: 5% 2%;
  }
}
.gallery h4 {
  color: #7da232;
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 0.8rem;
}
.gallery h2 {
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  margin-bottom: 1rem;
  color: #7da232;
}
.gallery p {
  color: #000000;
  line-height: 1.7;
  margin-bottom: 2rem;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.gallery__filters {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0;
  margin-bottom: 3rem;
  margin-top: 3rem;
}
.gallery__filters .gallery__filter-btn {
  background: transparent;
  border: none;
  border-right: 1px solid #ffffff;
  padding: 0 1.2rem;
  font-family: "Montserrat", sans-serif;
  font-size: 0.95rem;
  color: #ffffff;
  cursor: pointer;
  transition: color 0.3s ease-in-out;
}
.gallery__filters .gallery__filter-btn:last-child {
  border-right: none;
}
.gallery__filters .gallery__filter-btn:hover {
  color: #7da232;
}
.gallery__filters .gallery__filter-btn.active {
  color: #7da232;
  font-weight: 600;
  position: relative;
}
.gallery__filters .gallery__filter-btn.active::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -8px;
  height: 2px;
  background-color: #f3b166;
}

.gallery__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 4%;
}

.gallery__item {
  position: relative;
  display: block;
  overflow: hidden;
  border-radius: 8px;
  height: 280px;
  transition: opacity 0.3s ease-in-out, transform 0.3s ease-in-out;
}
.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;
}
.gallery__item:hover img {
  transform: scale(1.08);
}
.gallery__item::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0);
  transition: 0.3s ease-in-out;
  z-index: 1;
}
.gallery__item:hover::after {
  background: rgba(0, 0, 0, 0.2);
}
.gallery__item-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;
}
.gallery__item-zoom i {
  display: block;
  color: #fff;
  font-size: 1.2rem;
}
.gallery__item:hover .gallery__item-zoom {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
}
.gallery__item--hide {
  display: none;
}

@media (max-width: 991px) {
  .gallery__grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .gallery__filters .gallery__filter-btn {
    font-size: 0.85rem;
    padding: 0 0.8rem;
  }
}
@media (max-width: 576px) {
  .gallery__grid {
    grid-template-columns: 1fr;
  }
  .gallery__item {
    height: 240px;
  }
  .gallery__filters {
    flex-direction: row;
    gap: 0.5rem;
  }
  .gallery__filters .gallery__filter-btn {
    border-right: none;
  }
}
.wpcf7-form p:first-child {
  display: flex;
  gap: 1rem;
}
.wpcf7-form p:first-child span.wpcf7-form-control-wrap {
  flex: 1;
}
.wpcf7-form input, .wpcf7-form 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;
}
.wpcf7-form input::-moz-placeholder, .wpcf7-form textarea::-moz-placeholder {
  color: #999;
}
.wpcf7-form input::placeholder, .wpcf7-form textarea::placeholder {
  color: #999;
}
.wpcf7-form input:focus, .wpcf7-form textarea:focus {
  outline: none;
  border-color: #f3b166;
}
.wpcf7-form textarea {
  resize: vertical;
}
.wpcf7-form input[type=submit] {
  align-self: flex-start;
  display: inline-block;
  padding: 0.8rem 2rem;
  background-color: #7da232;
  color: #fff;
  border: 2px solid #7da232;
  border-radius: 3px;
  font-weight: 500;
  font-family: "Montserrat", sans-serif;
  cursor: pointer;
  transition: 0.3s ease-in-out;
}
.wpcf7-form input[type=submit]:hover {
  background-color: transparent;
  color: #7da232;
}

.contact__input,
.contact__textarea {
  display: block;
  width: 100%;
  margin-top: 0.4rem;
  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:focus,
.contact__textarea:focus {
  outline: none;
  border-color: #f3b166;
}

.contact__textarea {
  resize: vertical;
}

/* Labela za telefon i poruku, koje su van .contact__row */
.contact__label:not(.contact__row .contact__label) {
  margin-bottom: 1rem;
  display: block;
}

@media (max-width: 576px) {
  .contact__row {
    flex-direction: column;
  }
}
.contact__row {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.contact__label {
  display: block;
  width: 100%;
  font-size: 0.85rem;
  font-weight: 500;
  color: #ffffff;
  margin-bottom: 1rem;
}

.contact__input,
.contact__textarea {
  display: block;
  width: 100%;
  margin-top: 0.4rem;
  padding: 0.8rem 1rem;
  border: 1px solid #e0e0e0;
  border-radius: 4px;
  font-family: "Montserrat", sans-serif;
  font-size: 0.95rem;
  color: #0e1824;
}
.contact__input:focus,
.contact__textarea:focus {
  outline: none;
  border-color: #f3b166;
}

.contact__row .contact__label {
  flex: 1 1 0;
}

.mobile-nav {
  position: fixed;
  top: 0;
  right: 0;
  width: 300px;
  max-width: 85%;
  height: 100vh;
  background-color: #0e1824;
  z-index: 10000;
  transform: translateX(100%);
  transition: transform 0.4s ease-in-out;
  overflow-y: auto;
}
.mobile-nav.active {
  transform: translateX(0);
}
.mobile-nav__inner {
  padding: 2rem;
  display: flex;
  flex-direction: column;
  height: 100%;
}
.mobile-nav__close {
  align-self: flex-end;
  background: transparent;
  border: none;
  color: #ffffff;
  cursor: pointer;
  margin-bottom: 2rem;
}
.mobile-nav__close svg {
  width: 24px;
  height: 24px;
}
.mobile-nav__list ul {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.mobile-nav__list ul li a {
  color: #ffffff;
  font-size: 1.1rem;
  font-weight: 500;
}

.mobile-nav__overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 9999;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease-in-out, visibility 0.3s ease-in-out;
}
.mobile-nav__overlay.active {
  opacity: 1;
  visibility: visible;
}