/**************************
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 {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  box-sizing: border-box;
}

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

***************************/
html, body {
  margin: 0;
  padding: 0;
  font-family: Inter, system-ui, 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;
}

.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%;
  }
}
/**************************
VARIJABLE (HEADER / HERO)

***************************/
/**************************
TIPOGRAFIJA - NASLOVI (h2, h3, h4)
Koristi se dosledno na celom sajtu, npr. sekcija "About Us":
- h2 = glavni naslov sekcije ("A Place Built from Love and Hospitality")
- h3 = srednji naslov (podnaslovi kartica, sekcija)
- h4 = manji naslov / eyebrow oznaka ("About Us")

Klase .h2 / .h3 / .h4 su identicne po izgledu elementima h2/h3/h4,
za slucaj da negde treba drugaciji HTML tag (npr. <p class="h2">)
a isti vizuelni stil.
***************************/
h2, .h2 {
  font-family: "Inter Tight", Inter, system-ui, sans-serif;
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 600;
  line-height: 1.15;
  letter-spacing: -0.5px;
  color: inherit;
  margin-bottom: 20px;
}

h3, .h3 {
  font-family: "Inter Tight", Inter, system-ui, sans-serif;
  font-size: clamp(22px, 2.5vw, 28px);
  font-weight: 600;
  line-height: 1.25;
  letter-spacing: -0.3px;
  color: inherit;
  margin-bottom: 16px;
}

h4, .h4 {
  font-family: "Inter Tight", Inter, system-ui, sans-serif;
  font-size: 15px;
  font-weight: 600;
  line-height: 1.4;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  color: #fec89d;
  margin-bottom: 12px;
}

/**************************
VARIJABLE (ABOUT US)

***************************/
/**************************
ABOUT US

***************************/
.about {
  padding: 5% 0 1% 0;
  background: #ffffff;
  color: #0e1824;
}

.about__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

@media (max-width: 768px) {
  .about__grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}
.about__col--left {
  display: flex;
  flex-direction: column;
}

.about__col--right {
  display: flex;
  flex-direction: column;
  padding-top: 70px;
}

@media (max-width: 768px) {
  .about__col--right {
    padding-top: 0;
  }
}
.about__image {
  border-radius: 6px;
  overflow: hidden;
  cursor: pointer;
}
.about__image img {
  width: 100%;
  height: auto;
  display: block;
  -o-object-fit: cover;
     object-fit: cover;
}

.about__image--main {
  aspect-ratio: 1/1;
  margin-top: 20px;
}

.about__image--secondary {
  aspect-ratio: 16/10;
  margin-bottom: 30px;
}

.about__text {
  color: #5a6472;
  line-height: 1.7;
  font-size: 16px;
  max-width: 460px;
  margin-bottom: 30px;
}

.about__btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  align-self: flex-start;
  background: #2f9e8f;
  color: #ffffff;
  border-radius: 999px;
  padding: 16px 28px;
  font-size: 15px;
  font-weight: 600;
  font-family: "Inter Tight", Inter, system-ui, sans-serif;
  transition: opacity 0.2s ease, transform 0.2s ease;
}
.about__btn:hover {
  opacity: 0.9;
  transform: translateX(2px);
}

.about__btn-icon {
  width: 18px;
  height: 18px;
}

/**************************
VARIJABLE (FOOTER)

***************************/
/**************************
FOOTER

***************************/
.footer {
  background: #0e1824;
  color: #ffffff;
  padding: 90px 0 40px;
  font-size: 15px;
}

.footer__top {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1.3fr 1fr;
  gap: 40px;
  margin-bottom: 60px;
}

@media (max-width: 992px) {
  .footer__top {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 576px) {
  .footer__top {
    grid-template-columns: 1fr;
  }
}
/* --- Brand kolona --- */
.footer__brand {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.footer__logo {
  display: inline-flex;
  align-items: center;
}
.footer__logo img {
  max-width: 11rem;
  height: auto;
  display: block;
}

.footer__logo-icon {
  width: 30px;
  height: 30px;
  color: #fec89d;
  flex-shrink: 0;
}

.footer__desc {
  color: #a9b4c0;
  line-height: 1.6;
  max-width: 320px;
}

.footer__subscribe {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.footer__input {
  flex: 1 1 180px;
  background: #17232f;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 999px;
  padding: 13px 20px;
  color: #ffffff;
  font-size: 14px;
  font-family: inherit;
}
.footer__input::-moz-placeholder {
  color: #a9b4c0;
}
.footer__input::placeholder {
  color: #a9b4c0;
}
.footer__input:focus {
  outline: none;
  border-color: #fec89d;
}

.footer__btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #fec89d;
  color: #0e1824;
  border: none;
  border-radius: 999px;
  padding: 13px 22px;
  font-size: 14px;
  font-weight: 600;
  font-family: inherit;
  cursor: pointer;
  white-space: nowrap;
  transition: opacity 0.2s ease;
}
.footer__btn:hover {
  opacity: 0.85;
}

.footer__btn-icon {
  width: 16px;
  height: 16px;
}

/* --- Kolone (Quick Menu / Support / Contact / Social) --- */
.footer__heading {
  font-size: 18px;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 22px;
  text-transform: none;
  letter-spacing: normal;
}

.footer__list {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.footer__list a {
  color: #a9b4c0;
  transition: color 0.2s ease;
}
.footer__list a:hover {
  color: #fec89d;
}

.footer__list--contact li {
  color: #a9b4c0;
  line-height: 1.5;
}

.footer__label {
  color: #ffffff;
  font-weight: 600;
}

.footer__list--social li a {
  display: flex;
  align-items: center;
  gap: 10px;
}

.footer__social-icon {
  width: 18px;
  height: 18px;
  color: #fec89d;
  display: inline-flex;
  flex-shrink: 0;
}
.footer__social-icon svg {
  width: 100%;
  height: 100%;
}

/* --- Divider + Bottom bar --- */
.footer__divider {
  border: none;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  margin-bottom: 30px;
}

.footer__bottom {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
  color: #a9b4c0;
  font-size: 14px;
}

/**************************
AMENITIES

***************************/
.amenities {
  padding: 7% 0;
  background: #fff8f2;
}

.amenities__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

@media (max-width: 992px) {
  .amenities__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 576px) {
  .amenities__grid {
    grid-template-columns: 1fr;
  }
}
.amenities__card {
  background: #ffffff;
  border: 1px solid rgba(14, 24, 36, 0.08);
  border-radius: 10px;
  padding: 2.5rem 1.5rem;
  transition: background 0.25s ease;
  cursor: pointer;
}
.amenities__card:hover {
  background: #0e1824;
}
.amenities__card:hover .amenities__icon {
  color: #0e1824;
}
.amenities__card:hover .amenities__icon--teal {
  background: #ffffff;
}
.amenities__card:hover .amenities__icon--creme {
  background: #ffffff;
}
.amenities__card:hover .amenities__title {
  color: #ffffff;
}

.amenities__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  color: #ffffff;
  margin-bottom: 20px;
  transition: background 0.25s ease, color 0.25s ease;
}
.amenities__icon svg {
  width: 22px;
  height: 22px;
}

.amenities__icon--teal {
  background: #2f9e8f;
}

.amenities__icon--creme {
  background: #fec89d;
}

.amenities__title {
  font-size: 17px;
  font-weight: 700;
  color: #0e1824;
  margin-bottom: 0;
  transition: color 0.25s ease;
}

/**************************
GALLERY

***************************/
.gallery {
  padding: 90px 0;
  background: #ffffff;
  color: #0e1824;
}

.gallery__header {
  text-align: center;
  margin-bottom: 50px;
}

.gallery__eyebrow {
  font-family: "Inter Tight", Inter, system-ui, sans-serif;
  font-size: 14px;
  font-weight: 600;
  color: #0e1824;
  margin-bottom: 10px;
}

.gallery__title {
  text-align: center;
  margin-bottom: 0;
}

.gallery__title-accent {
  font-family: "Cormorant Infant", serif;
  font-style: italic;
  font-weight: 500;
  color: #fec89d;
}

.gallery__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 320px;
  gap: 16px;
}

.gallery__item {
  position: relative;
  overflow: hidden;
}

.gallery__link {
  display: block;
  position: relative;
  width: 100%;
  height: 100%;
}
.gallery__link img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}

/* --- Overlay (zatamnjenje + krug sa krstom) --- */
.gallery__overlay {
  position: absolute;
  inset: 0;
  background: rgba(14, 24, 36, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.gallery__item:hover .gallery__overlay {
  opacity: 1;
}

.gallery__overlay-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  border: 1.5px solid rgba(255, 255, 255, 0.85);
  background: rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  transform: scale(0.6);
  transition: transform 0.3s ease;
}
.gallery__overlay-icon svg {
  width: 22px;
  height: 22px;
}

.gallery__item:hover .gallery__overlay-icon {
  transform: scale(1);
}

/* Raspored kolona - prati referentnu sliku (red 1: 2-1-1, red 2: 1-1-2) */
.gallery__item:nth-child(1) {
  grid-column: span 2;
}

.gallery__item:nth-child(2) {
  grid-column: span 1;
}

.gallery__item:nth-child(3) {
  grid-column: span 1;
}

.gallery__item:nth-child(4) {
  grid-column: span 1;
}

.gallery__item:nth-child(5) {
  grid-column: span 1;
}

.gallery__item:nth-child(6) {
  grid-column: span 2;
}

@media (max-width: 768px) {
  .gallery__grid {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 220px;
  }
  .gallery__item:nth-child(1),
  .gallery__item:nth-child(6) {
    grid-column: span 2;
  }
  .gallery__item:nth-child(2),
  .gallery__item:nth-child(3),
  .gallery__item:nth-child(4),
  .gallery__item:nth-child(5) {
    grid-column: span 1;
  }
}
@media (max-width: 480px) {
  .gallery__grid {
    grid-template-columns: 1fr;
  }
  .gallery__item {
    grid-column: span 1 !important;
  }
}
/**************************
HERO

***************************/
.hero-cta {
  position: relative;
  min-height: 580px;
  display: flex;
  align-items: flex-end;
  background-image: url("/img/magdalena-1/DSC_7944.jpg");
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  overflow: hidden;
}

.hero-cta__overlay {
  position: absolute;
  inset: 0;
  background: rgba(14, 24, 36, 0.35);
  z-index: 0;
}

.hero-cta__container {
  position: relative;
  z-index: 1;
  padding-bottom: 60px;
}

.hero-cta__title {
  font-family: "Inter Tight", Inter, system-ui, sans-serif;
  font-size: clamp(28px, 4vw, 52px);
  font-weight: 700;
  line-height: 1.2;
  color: #ffffff;
  max-width: 1100px;
  margin: 0;
}

.hero-cta__title-accent {
  font-family: "Cormorant Infant", serif;
  font-style: italic;
  font-weight: 500;
  color: #fec89d;
}

.hero-cta__btn {
  position: absolute;
  right: 5%;
  bottom: 60px;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 110px;
  height: 110px;
  border-radius: 50%;
  background: #fec89d;
  color: #0e1824;
  font-family: "Inter Tight", Inter, system-ui, sans-serif;
  font-size: 15px;
  font-weight: 600;
  text-align: center;
  transition: transform 0.25s ease, background 0.25s ease;
}
.hero-cta__btn:hover {
  transform: scale(1.05);
}

@media (max-width: 768px) {
  .hero-cta {
    background-attachment: scroll;
    min-height: 420px;
    align-items: center;
  }
  .hero-cta__btn {
    position: static;
    margin-top: 30px;
    width: 90px;
    height: 90px;
    font-size: 13px;
  }
  .hero-cta__container {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
  }
}
/**************************
ROOMS (Smestaj)

***************************/
.rooms {
  padding: 90px 0;
  background: #ffffff;
  color: #0e1824;
}

.rooms__header {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 30px;
  margin-bottom: 50px;
}

.rooms__header-left {
  flex: 1 1 420px;
}

.rooms__eyebrow {
  font-family: "Inter Tight", Inter, system-ui, sans-serif;
  font-size: 14px;
  font-weight: 600;
  color: #0e1824;
  margin-bottom: 10px;
}

.rooms__title {
  margin-bottom: 0;
}

.rooms__header-right {
  flex: 1 1 320px;
  max-width: 420px;
}

.rooms__desc {
  color: #5a6472;
  line-height: 1.7;
  font-size: 15px;
}

.rooms__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

@media (max-width: 768px) {
  .rooms__grid {
    grid-template-columns: 1fr;
  }
}
/* --- Kartica --- */
.rooms__card {
  position: relative;
  display: block;
  border-radius: 10px;
  overflow: hidden;
  aspect-ratio: 16/10;
}
.rooms__card img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}
.rooms__card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(14, 24, 36, 0.05) 0%, rgba(14, 24, 36, 0.15) 45%, rgba(14, 24, 36, 0.55) 100%);
}
.rooms__card:hover img {
  transform: scale(1.06);
}

/* --- Gornji red: bedz + cena --- */
.rooms__card-top {
  position: absolute;
  top: 16px;
  left: 16px;
  right: 16px;
  z-index: 1;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
}

.rooms__badge {
  background: rgba(255, 255, 255, 0.9);
  color: #0e1824;
  font-family: "Inter Tight", Inter, system-ui, sans-serif;
  font-size: 13px;
  font-weight: 600;
  padding: 6px 14px;
  border-radius: 999px;
  white-space: nowrap;
}

.rooms__price {
  background: rgba(255, 255, 255, 0.9);
  color: #0e1824;
  font-family: "Inter Tight", Inter, system-ui, sans-serif;
  font-size: 13px;
  font-weight: 700;
  padding: 6px 14px;
  border-radius: 999px;
  white-space: nowrap;
}

.rooms__price-unit {
  font-weight: 400;
  color: #5a6472;
}

/* --- Donji deo: naslov + meta + dugme --- */
.rooms__card-bottom {
  position: absolute;
  left: 20px;
  bottom: 20px;
  right: 150px;
  z-index: 1;
}

.rooms__card-title {
  color: #ffffff;
  font-family: "Inter Tight", Inter, system-ui, sans-serif;
  font-size: clamp(18px, 2vw, 22px);
  font-weight: 700;
  margin-bottom: 8px;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.rooms__card-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.rooms__card-meta-item {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: #ffffff;
  font-size: 13px;
  font-weight: 500;
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.3);
}
.rooms__card-meta-item svg {
  width: 15px;
  height: 15px;
  flex-shrink: 0;
}

.rooms__card-btn {
  position: absolute;
  right: 16px;
  bottom: 16px;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #ffffff;
  color: #0e1824;
  font-family: "Inter Tight", Inter, system-ui, sans-serif;
  font-size: 13px;
  font-weight: 600;
  padding: 12px 18px;
  border-radius: 999px;
  white-space: nowrap;
  transition: background 0.25s ease, color 0.25s ease;
}
.rooms__card-btn svg {
  width: 15px;
  height: 15px;
}

.rooms__card:hover .rooms__card-btn {
  background: #2f9e8f;
  color: #ffffff;
}

@media (max-width: 480px) {
  .rooms__card-bottom {
    right: 20px;
  }
  .rooms__card-btn {
    display: none;
  }
}
/**************************
VARIJABLE (HEADER / HERO)
Napomena: $black, $white, $blue, $creme, $bcg vec postoje
gore u fajlu - ovde se samo koriste.
***************************/
/**************************
SITE HEADER

***************************/
.site-header {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 10;
  background: linear-gradient(to bottom, rgb(0, 0, 0) 0%, rgba(0, 0, 0, 0) 100%);
}

.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.site-header__inner .logo {
  display: inline-flex;
  align-items: center;
}
.site-header__inner .logo img {
  max-height: 8rem;
  width: auto;
  display: block;
}

.site-header__logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #ffffff;
  font-family: "Inter Tight", Inter, system-ui, sans-serif;
  font-size: 24px;
  font-weight: 700;
}

.site-header__logo-icon {
  width: 26px;
  height: 26px;
  color: #fec89d;
}

/* --- Navigacija - BEZ okvira/pill oko linkova, samo cist tekst --- */
.site-header__nav ul {
  display: flex;
  align-items: center;
  gap: 34px;
}

.site-header__nav a {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  color: #ffffff;
  font-family: "Inter Tight", Inter, system-ui, sans-serif;
  font-size: 15px;
  font-weight: 500;
  opacity: 0.85;
  transition: opacity 0.2s ease;
}
.site-header__nav a svg {
  width: 14px;
  height: 14px;
}
.site-header__nav a:hover {
  opacity: 1;
}
.site-header__nav a.is-active {
  opacity: 1;
  font-weight: 600;
}

.site-header__btn {
  display: inline-flex;
  align-items: center;
  background: #fec89d;
  color: #0e1824;
  font-family: "Inter Tight", Inter, system-ui, sans-serif;
  font-size: 14px;
  font-weight: 600;
  padding: 13px 26px;
  border-radius: 999px;
  white-space: nowrap;
  transition: opacity 0.2s ease;
}
.site-header__btn:hover {
  opacity: 0.85;
}

@media (max-width: 992px) {
  .site-header__nav {
    display: none;
  }
}
/**************************
HERO

***************************/
.hero {
  position: relative;
  height: 100vh;
  min-height: 600px;
  max-height: 900px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* --- Splide slider pozadina --- */
.hero__slider {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero__slider .splide__track,
.hero__slider .splide__list,
.hero__slider .splide__slide {
  height: 100%;
}

.hero__slide {
  position: relative;
  overflow: hidden;
}
.hero__slide img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
  transform: scale(1);
  transition: transform 10s ease;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: rgba(14, 24, 36, 0.4);
}

.hero__container {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
  text-align: center;
  width: 100%;
}

/* Ken Burns efekat - kad slajd postane aktivan (Splide dodaje "is-active"
   klasu), slika se zumira na 1.15 tokom 3s. Kad slajd nije aktivan,
   transform se odmah vraca na scale(1) bez tranzicije (nevidljivo je,
   jer je slajd sakriven pri "fade" tranziciji), tako da sledeci put
   kad postane aktivan opet krene zumiranje ispocetka. */
.hero__slide.is-active img {
  transform: scale(1.15);
}

.hero__slide:not(.is-active) img {
  transition: none;
}

/* Splide paginacija - stilizacija tackica */
.hero__slider .splide__pagination {
  bottom: 20px;
  z-index: 2;
}

.hero__slider .splide__pagination__page {
  background: rgba(255, 255, 255, 0.5);
  opacity: 1;
}
.hero__slider .splide__pagination__page.is-active {
  background: #fec89d;
  transform: none;
}

.hero__title {
  font-family: "Inter Tight", Inter, system-ui, sans-serif;
  font-size: clamp(32px, 5vw, 56px);
  font-weight: 700;
  line-height: 1.15;
  color: #ffffff;
  margin-bottom: 20px;
}

.hero__title-accent {
  font-family: "Cormorant Infant", serif;
  font-style: italic;
  font-weight: 500;
  color: #fec89d;
}

.hero__subtitle {
  font-size: 17px;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 0;
}

/**************************
HERO SECOND (staticna, bez slidera)

***************************/
.hero-second {
  position: relative;
  height: 50vh;
  min-height: 380px;
  max-height: 500px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-image: url("/img/magdalena-1/DSC_8045.jpg");
  background-size: cover;
  background-position: center;
  overflow: hidden;
}

.hero-second__overlay {
  position: absolute;
  inset: 0;
  z-index: 0;
  background: rgba(14, 24, 36, 0.45);
}

.hero-second__container {
  position: relative;
  z-index: 1;
  text-align: center;
}

.hero-second__title {
  font-family: "Inter Tight", Inter, system-ui, sans-serif;
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 700;
  line-height: 1.2;
  color: #ffffff;
  margin-bottom: 16px;
}

.hero-second__title-accent {
  font-family: "Cormorant Infant", serif;
  font-style: italic;
  font-weight: 500;
  color: #fec89d;
}

.hero-second__subtitle {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 0;
}

@media (max-width: 768px) {
  .hero-second {
    height: 40vh;
    min-height: 300px;
  }
}
/**************************
WELCOME (About + Video + Stats)

***************************/
.welcome {
  padding: 90px 0;
  background: #ffffff;
  color: #0e1824;
}

.welcome__top {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  margin-bottom: 50px;
}

@media (max-width: 768px) {
  .welcome__top {
    grid-template-columns: 1fr;
    gap: 30px;
  }
}
/* --- Leva strana: naslov + dugme --- */
.welcome__eyebrow {
  font-family: "Inter Tight", Inter, system-ui, sans-serif;
  font-size: 14px;
  font-weight: 600;
  color: #0e1824;
  margin-bottom: 10px;
}

.welcome__title {
  margin-bottom: 24px;
}

.welcome__title-accent {
  font-family: "Cormorant Infant", serif;
  font-style: italic;
  font-weight: 500;
  color: inherit;
  color: #fec89d;
}

.welcome__btn {
  display: inline-flex;
  align-items: center;
  background: #fec89d;
  color: #0e1824;
  font-family: "Inter Tight", Inter, system-ui, sans-serif;
  font-size: 14px;
  font-weight: 600;
  padding: 14px 28px;
  border-radius: 999px;
  transition: opacity 0.2s ease;
}
.welcome__btn:hover {
  opacity: 0.85;
}

/* --- Desna strana: opis + statistika --- */
.welcome__desc {
  color: #5a6472;
  line-height: 1.7;
  font-size: 15px;
  margin-bottom: 24px;
}

.welcome__divider {
  height: 1px;
  background: rgba(14, 24, 36, 0.1);
  margin-bottom: 24px;
}

.welcome__stats {
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
}

.welcome__stat {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.welcome__stat-number {
  font-family: "Inter Tight", Inter, system-ui, sans-serif;
  font-size: 32px;
  font-weight: 700;
  color: #0e1824;
}

.welcome__stat-label {
  font-size: 13px;
  color: #5a6472;
}

/* --- Slike ispod (sa video dugmetom na prvoj) --- */
.welcome__images {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

@media (max-width: 768px) {
  .welcome__images {
    grid-template-columns: 1fr;
  }
}
.welcome__image {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  aspect-ratio: 16/11;
  display: block;
}
.welcome__image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}

.welcome__image--video::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(14, 24, 36, 0.25);
  transition: background 0.25s ease;
}

.welcome__image--video:hover::after {
  background: rgba(14, 24, 36, 0.4);
}

.welcome__play {
  position: absolute;
  left: 24px;
  bottom: 24px;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  gap: 14px;
}

.welcome__play-icon {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: #fec89d;
  color: #0e1824;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: transform 0.25s ease;
}
.welcome__play-icon svg {
  width: 20px;
  height: 20px;
  margin-left: 2px;
}

.welcome__image--video:hover .welcome__play-icon {
  transform: scale(1.08);
}

.welcome__play-label {
  color: #ffffff;
  font-family: "Inter Tight", Inter, system-ui, sans-serif;
  font-size: 15px;
  font-weight: 600;
  text-shadow: 0 1px 6px rgba(0, 0, 0, 0.4);
}

/**************************
WHY CHOOSE US

***************************/
.why {
  padding: 90px 0;
  background: #fff8f2;
  color: #0e1824;
}

.why__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

@media (max-width: 768px) {
  .why__grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
}
.why__images {
  display: flex;
  gap: 8px;
  height: 460px;
  border-radius: 10px;
  overflow: hidden;
}

@media (max-width: 768px) {
  .why__images {
    height: 320px;
  }
}
.why__image-item {
  flex: 1 1 0;
  min-width: 0;
  overflow: hidden;
  cursor: pointer;
  transition: flex-grow 0.4s ease;
}
.why__image-item img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}
.why__image-item:hover {
  flex-grow: 2.2;
}
.why__image-item:hover img {
  transform: scale(1.05);
}

.why__eyebrow {
  font-family: "Inter Tight", Inter, system-ui, sans-serif;
  font-size: 14px;
  font-weight: 600;
  color: #5a6472;
  margin-bottom: 10px;
}

.why__title {
  margin-bottom: 16px;
}

.why__desc {
  color: #5a6472;
  line-height: 1.7;
  font-size: 15px;
  margin-bottom: 34px;
}

.why__list {
  display: flex;
  flex-direction: column;
  gap: 26px;
}

.why__item {
  display: flex;
  align-items: flex-start;
  gap: 18px;
}

.why__icon {
  width: 44px;
  height: 44px;
  min-width: 44px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
}
.why__icon svg {
  width: 20px;
  height: 20px;
}

.why__icon--teal {
  background: #2f9e8f;
}

.why__icon--creme {
  background: #fec89d;
}

.why__item-title {
  font-family: "Inter Tight", Inter, system-ui, sans-serif;
  font-size: 17px;
  font-weight: 700;
  color: #0e1824;
  margin-bottom: 6px;
}

.why__item-desc {
  color: #5a6472;
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 0;
}

/**************************
CONTACT

***************************/
.contact {
  padding: 90px 0;
  background: #ffffff;
  color: #0e1824;
}

.contact__header {
  text-align: center;
  margin-bottom: 50px;
}

.contact__eyebrow {
  font-family: "Inter Tight", Inter, system-ui, sans-serif;
  font-size: 14px;
  font-weight: 600;
  color: #5a6472;
  margin-bottom: 10px;
}

.contact__title {
  text-align: center;
  margin-bottom: 0;
}

.contact__title-accent {
  font-family: "Cormorant Infant", serif;
  font-style: italic;
  font-weight: 500;
  color: inherit;
  color: #fec89d;
}

/* --- Info kartice (4 kom) --- */
.contact__info-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  margin-bottom: 60px;
  border: 1px solid rgba(14, 24, 36, 0.1);
}

@media (max-width: 900px) {
  .contact__info-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 500px) {
  .contact__info-grid {
    grid-template-columns: 1fr;
  }
}
.contact__info-card {
  padding: 34px 28px;
  border-right: 1px solid rgba(14, 24, 36, 0.1);
  transition: background 0.25s ease;
}
.contact__info-card:last-child {
  border-right: none;
}
.contact__info-card:hover {
  background: #fff8f2;
}
.contact__info-card:hover .contact__info-icon {
  background: #0e1824;
  color: #ffffff;
}
.contact__info-card:hover .contact__info-value {
  color: #2f9e8f;
  font-weight: 600;
}

.contact__info-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: rgba(14, 24, 36, 0.06);
  color: #0e1824;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  transition: background 0.25s ease, color 0.25s ease;
}
.contact__info-icon svg {
  width: 24px;
  height: 24px;
}

.contact__info-title {
  font-family: "Inter Tight", Inter, system-ui, sans-serif;
  font-size: 18px;
  font-weight: 700;
  color: #0e1824;
  margin-bottom: 8px;
}

.contact__info-value {
  color: #5a6472;
  font-size: 14px;
  margin-bottom: 0;
  transition: color 0.25s ease;
}

/* --- Forma + mapa --- */
.contact__main {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  min-height: 460px;
}

@media (max-width: 900px) {
  .contact__main {
    grid-template-columns: 1fr;
  }
}
.contact__form-wrap {
  background: #fff8f2;
  padding: 40px;
}

.contact__form-title {
  font-family: "Inter Tight", Inter, system-ui, sans-serif;
  font-size: 22px;
  font-weight: 700;
  color: #0e1824;
  margin-bottom: 24px;
}

.contact__form-row {
  display: flex;
  gap: 16px;
  margin-bottom: 16px;
}

@media (max-width: 500px) {
  .contact__form-row {
    flex-direction: column;
  }
}
.contact__input,
.contact__textarea {
  width: 100%;
  background: #ffffff;
  border: 1px solid rgba(14, 24, 36, 0.15);
  border-radius: 4px;
  padding: 14px 16px;
  font-size: 14px;
  font-family: inherit;
  color: #0e1824;
}
.contact__input::-moz-placeholder, .contact__textarea::-moz-placeholder {
  color: #9aa4ae;
}
.contact__input::placeholder,
.contact__textarea::placeholder {
  color: #9aa4ae;
}
.contact__input:focus,
.contact__textarea:focus {
  outline: none;
  border-color: #2f9e8f;
}

.contact__textarea {
  resize: vertical;
  margin-bottom: 24px;
}

.contact__submit {
  display: inline-flex;
  align-items: center;
  background: #fec89d;
  color: #0e1824;
  font-family: "Inter Tight", Inter, system-ui, sans-serif;
  font-size: 14px;
  font-weight: 600;
  padding: 15px 30px;
  border: none;
  border-radius: 999px;
  cursor: pointer;
  transition: opacity 0.2s ease;
}
.contact__submit:hover {
  opacity: 0.85;
}

.contact__map {
  overflow: hidden;
}
.contact__map iframe {
  width: 100%;
  height: 100%;
  min-height: 380px;
  display: block;
}

/**************************
ROOMS PAGE (Smjestaj) - Flip Card

***************************/
.rooms-page {
  padding: 90px 0;
  background: #ffffff;
  color: #0e1824;
}

.rooms-page__header {
  text-align: center;
  margin-bottom: 50px;
}

.rooms-page__eyebrow {
  font-family: "Inter Tight", Inter, system-ui, sans-serif;
  font-size: 14px;
  font-weight: 600;
  color: #5a6472;
  margin-bottom: 10px;
}

.rooms-page__title {
  text-align: center;
  margin-bottom: 0;
}

.rooms-page__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

@media (max-width: 768px) {
  .rooms-page__grid {
    grid-template-columns: 1fr;
  }
}
/* ============================================================
   FLIP CARD
   ============================================================ */
.flip-card {
  aspect-ratio: 16/10;
  perspective: 1500px;
}

.flip-card__inner {
  position: relative;
  width: 100%;
  height: 100%;
  text-align: left;
  transition: transform 0.7s cubic-bezier(0.4, 0.2, 0.2, 1);
  transform-style: preserve-3d;
}

.flip-card:hover .flip-card__inner {
  transform: rotateY(180deg);
}

.flip-card__front,
.flip-card__back {
  position: absolute;
  inset: 0;
  backface-visibility: hidden;
  border-radius: 10px;
  overflow: hidden;
}

/* --- Prednja strana (slika + bedz + cena + naslov) --- */
.flip-card__front img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}
.flip-card__front::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(14, 24, 36, 0.05) 0%, rgba(14, 24, 36, 0.15) 45%, rgba(14, 24, 36, 0.55) 100%);
}

.flip-card__top {
  position: absolute;
  top: 16px;
  left: 16px;
  right: 16px;
  z-index: 1;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
}

.flip-card__badge,
.flip-card__price {
  background: rgba(255, 255, 255, 0.9);
  color: #0e1824;
  font-family: "Inter Tight", Inter, system-ui, sans-serif;
  font-size: 13px;
  font-weight: 600;
  padding: 6px 14px;
  border-radius: 999px;
  white-space: nowrap;
}

.flip-card__price {
  font-weight: 700;
}

.flip-card__price-unit {
  font-weight: 400;
  color: #5a6472;
}

.flip-card__bottom {
  position: absolute;
  left: 20px;
  bottom: 20px;
  right: 20px;
  z-index: 1;
}

.flip-card__title {
  color: #ffffff;
  font-family: "Inter Tight", Inter, system-ui, sans-serif;
  font-size: clamp(18px, 2vw, 22px);
  font-weight: 700;
  margin-bottom: 8px;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.flip-card__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.flip-card__meta-item {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: #ffffff;
  font-size: 13px;
  font-weight: 500;
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.3);
}
.flip-card__meta-item svg {
  width: 15px;
  height: 15px;
  flex-shrink: 0;
}

/* --- Zadnja strana (opis + dugme) --- */
.flip-card__back {
  transform: rotateY(180deg);
  background: #0e1824;
  padding: 36px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.flip-card__back-title {
  color: #ffffff;
  font-family: "Inter Tight", Inter, system-ui, sans-serif;
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 14px;
}

.flip-card__back-desc {
  color: rgba(255, 255, 255, 0.75);
  font-size: 14px;
  line-height: 1.7;
  margin-bottom: 24px;
}

.flip-card__back-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  align-self: flex-start;
  background: #fec89d;
  color: #0e1824;
  font-family: "Inter Tight", Inter, system-ui, sans-serif;
  font-size: 14px;
  font-weight: 600;
  padding: 13px 24px;
  border-radius: 999px;
  transition: opacity 0.2s ease;
}
.flip-card__back-btn svg {
  width: 16px;
  height: 16px;
}
.flip-card__back-btn:hover {
  opacity: 0.85;
}

/**************************
FAQ

***************************/
.faq {
  padding: 90px 0;
  background: #fff8f2;
  color: #0e1824;
}

.faq__grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 60px;
  align-items: start;
}

@media (max-width: 900px) {
  .faq__grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
}
/* --- Leva strana --- */
.faq__left {
  position: sticky;
  top: 100px;
}

@media (max-width: 900px) {
  .faq__left {
    position: static;
  }
}
.faq__eyebrow {
  font-family: "Inter Tight", Inter, system-ui, sans-serif;
  font-size: 14px;
  font-weight: 600;
  color: #5a6472;
  margin-bottom: 10px;
}

.faq__title {
  margin-bottom: 16px;
}

.faq__desc {
  color: #5a6472;
  line-height: 1.7;
  font-size: 15px;
  margin-bottom: 28px;
  max-width: 380px;
}

.faq__btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #2f9e8f;
  color: #ffffff;
  font-family: "Inter Tight", Inter, system-ui, sans-serif;
  font-size: 14px;
  font-weight: 600;
  padding: 14px 26px;
  border-radius: 999px;
  transition: opacity 0.2s ease;
}
.faq__btn svg {
  width: 16px;
  height: 16px;
}
.faq__btn:hover {
  opacity: 0.85;
}

/* --- Desna strana: akordeon --- */
.faq__right {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.faq__item {
  border: 1px solid rgba(14, 24, 36, 0.1);
  border-radius: 10px;
  overflow: hidden;
  background: #ffffff;
  transition: background 0.3s ease, border-color 0.3s ease;
}

.faq__item.is-active {
  background: #0e1824;
  border-color: #0e1824;
}

.faq__question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  background: none;
  border: none;
  padding: 24px 28px;
  text-align: left;
  cursor: pointer;
  font-family: "Inter Tight", Inter, system-ui, sans-serif;
  font-size: 16px;
  font-weight: 700;
  color: #0e1824;
  transition: color 0.3s ease;
}

.faq__item.is-active .faq__question {
  color: #ffffff;
}

.faq__icon {
  width: 18px;
  height: 18px;
  color: #fec89d;
  flex-shrink: 0;
  transition: transform 0.3s ease;
}

.faq__item.is-active .faq__icon {
  transform: rotate(135deg);
}

/* --- Animacija otvaranja/zatvaranja (grid-template-rows trik, bez JS-a za visinu) --- */
.faq__answer-wrap {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.35s ease;
}

.faq__item.is-active .faq__answer-wrap {
  grid-template-rows: 1fr;
}

.faq__answer-inner {
  overflow: hidden;
}

.faq__answer {
  padding: 0 28px 26px;
  color: rgba(255, 255, 255, 0.75);
  font-size: 14px;
  line-height: 1.7;
  margin-bottom: 0;
}