:root {
  color-scheme: light;
  --bg: #f7f1e7;
  --surface: rgba(255,255,255,0.88);
  --surface-strong: #ffffff;
  --text: #1f1f1b;
  --muted: #6f6a61;
  --accent: #1c6f8b;
  --accent-soft: #a8dbe3;
  --border: rgba(31,31,27,0.12);
  --shadow: 0 24px 70px rgba(15, 18, 19, 0.08);
  --radius: 28px;
  font-family: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: radial-gradient(circle at top, rgba(168,219,227,0.28), transparent 35%), #fbf4eb;
  color: var(--text);
  line-height: 1.65;
  min-height: 100vh;
}

img,
iframe {
  max-width: 100%;
  display: block;
}

button,
a {
  text-decoration: none;
}

.container {
  width: min(1120px, calc(100% - 2rem));
  margin: 0 auto;
}

.page-header {
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(14px);
  background: rgba(255,255,255,0.7);
  border-bottom: 1px solid rgba(255,255,255,0.8);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 0;
}

.brand {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  letter-spacing: 0.12em;
  color: var(--text);
}

.top-nav {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.top-nav a {
  color: var(--muted);
  font-size: 0.95rem;
  transition: color 0.25s ease;
}

.top-nav a:hover {
  color: var(--accent);
}

.header-actions {
  display: flex;
  gap: 0.85rem;
}

/* HERO - cistiji premium prikaz sa citljivim tekstom */

.hero {
  min-height: 92vh;
  display: grid;
  place-items: center;
  position: relative;
  padding: 5rem 0 6rem;
  color: #fff;

  background:
    linear-gradient(
      180deg,
      rgba(0, 0, 0, 0.08) 0%,
      rgba(0, 0, 0, 0.10) 42%,
      rgba(0, 0, 0, 0.54) 100%
    ),
    url('webp/suncani-breg-vrdnik-kompleks.webp');

  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(
      90deg,
      rgba(0, 0, 0, 0.10) 0%,
      rgba(0, 0, 0, 0.03) 45%,
      rgba(0, 0, 0, 0.08) 100%
    );
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 860px;
  text-align: center;
  padding: 0 1rem;
  transform: translateY(3.5rem);
}

.eyebrow {
  display: inline-flex;
  margin-bottom: 1rem;
  padding: 0.45rem 0.8rem;
  border-radius: 999px;
  font-size: 0.82rem;
  letter-spacing: 0.20em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.96);
  background: rgba(0,0,0,0.22);
  border: 1px solid rgba(255,255,255,0.22);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  text-shadow: 0 2px 10px rgba(0,0,0,0.50);
}

.hero h1 {
  margin: 0;
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.4rem, 4.7vw, 4.05rem);
  line-height: 1.03;
  letter-spacing: -0.035em;
  text-wrap: balance;
  text-shadow:
    0 2px 8px rgba(0,0,0,0.58),
    0 10px 32px rgba(0,0,0,0.52);
}

.hero-text {
  display: inline-block;
  margin: 1.35rem auto 2rem;
  max-width: 720px;
  padding: 0.75rem 1rem;
  border-radius: 18px;
  font-size: 1.04rem;
  line-height: 1.55;
  color: rgba(255,255,255,0.98);
  background: rgba(0,0,0,0.26);
  border: 1px solid rgba(255,255,255,0.18);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  text-shadow: 0 2px 10px rgba(0,0,0,0.55);
}

.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3rem;
  padding: 0 1.45rem;
  border-radius: 999px;
  font-weight: 600;
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease,
    background 0.25s ease,
    color 0.25s ease;
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 40px rgba(28, 111, 139, 0.18);
}

.btn-primary {
  background: var(--accent);
  color: #fff;
}

.btn-secondary {
  background: rgba(255,255,255,0.92);
  color: var(--text);
}

.btn-outline {
  border: 1px solid rgba(31,31,27,0.12);
  background: rgba(255,255,255,0.92);
  color: var(--text);
}

.section {
  padding: 5rem 0;
}

.section-label {
  display: inline-block;
  margin-bottom: 1rem;
  font-size: 0.85rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
}

.section h2 {
  margin: 0 0 1.35rem;
  font-size: clamp(2rem, 2.6vw, 3rem);
  line-height: 1.05;
}

.align-center {
  align-items: center;
}

.split-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 2.5rem;
}

.about-features,
.benefit-grid,
.testimonial-grid,
.card-grid,
.gallery-grid {
  display: grid;
  gap: 1.5rem;
}

.about-features {
  grid-template-columns: 1fr;
}

.feature-card,
.room-card,
.benefit-card,
.testimonial-card,
.map-card {
  background: var(--surface-strong);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.feature-card {
  padding: 1.5rem;
}

.feature-card h3,
.benefit-card h3 {
  margin-top: 0;
}

.feature-card p,
.benefit-card p,
.testimonial-card p,
.card-body p {
  margin: 0.85rem 0 0;
  color: var(--muted);
}

.card-grid {
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}

.room-card {
  overflow: hidden;
  background: #fff;
}

.room-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.card-body {
  padding: 1.5rem;
}

.card-body h3 {
  margin: 0 0 0.45rem;
}

.card-body ul {
  margin: 1rem 0 0;
  padding-left: 1.15rem;
  color: var(--muted);
}

.card-body li {
  margin-bottom: 0.55rem;
}

.wellness {
  background: rgba(255,255,255,0.84);
}

.wellness-visual img {
  width: 100%;
  height: 100%;
  min-height: 420px;
  object-fit: cover;
  border-radius: var(--radius);
}

.wellness-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.9rem;
}

.wellness-list li {
  padding: 1rem 1.1rem;
  border-radius: 20px;
  background: rgba(28,111,139,0.08);
  color: var(--text);
}

.gallery-grid {
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  grid-auto-rows: 220px;
  grid-auto-flow: dense;
}

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

.gallery-grid img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 26px;
}

.benefit-grid {
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
}

.benefit-card {
  padding: 1.7rem;
}

.benefit-card p {
  margin-top: 0.9rem;
}

.testimonial-grid {
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}

.testimonial-card {
  padding: 2rem;
  border-radius: var(--radius);
  background: rgba(255,255,255,0.96);
}

.testimonial-card strong {
  display: block;
  margin-top: 1.35rem;
  color: var(--text);
}

.contact {
  background: linear-gradient(180deg, rgba(255,255,255,0.98), #f8f1e6);
}

.contact-list {
  display: grid;
  gap: 1rem;
  margin-top: 1.5rem;
}

.contact-list div {
  display: grid;
  gap: 0.25rem;
  padding: 1.35rem 1.25rem;
  border-radius: 22px;
  background: var(--surface);
  border: 1px solid var(--border);
}

.contact-list a,
.contact-list span {
  color: var(--accent);
}

.map-card iframe {
  width: 100%;
  min-height: 360px;
  border: 0;
  border-radius: 26px;
}

.sticky-cta {
  position: fixed;
  left: 50%;
  bottom: 1rem;
  transform: translateX(-50%);
  display: flex;
  gap: 0.85rem;
  padding: 0.75rem 1rem;
  background: rgba(255,255,255,0.96);
  box-shadow: 0 30px 60px rgba(15, 18, 19, 0.12);
  border-radius: 999px;
  z-index: 30;
}

.sticky-cta a {
  min-width: 110px;
}

@media (max-width: 920px) {
  .split-grid,
  .page-header .header-inner {
    grid-template-columns: 1fr;
  }

  .top-nav {
    justify-content: center;
  }

  .top-nav a {
    font-size: 0.92rem;
  }
}

@media (max-width: 720px) {
  .hero {
    min-height: 80vh;
    padding-top: 4rem;
  }

  .hero-content {
    padding: 0 1rem;
    transform: translateY(2rem);
  }

  .header-inner {
    flex-direction: column;
    align-items: stretch;
  }

  .header-actions {
    justify-content: center;
  }

  .section {
    padding: 3.5rem 0;
  }

  .card-grid {
    grid-template-columns: 1fr;
  }

  .gallery-grid {
    grid-auto-rows: 180px;
  }

  .gallery-grid img:nth-child(1) {
    grid-column: auto;
  }

  .sticky-cta {
    width: calc(100% - 2rem);
    left: 1rem;
    transform: none;
    justify-content: space-between;
  }
}

@media (max-width: 520px) {
  .hero h1 {
    font-size: 2.25rem;
  }

  .hero-text {
    font-size: 0.96rem;
    padding: 0.7rem 0.85rem;
  }

  .section h2 {
    font-size: 2rem;
  }
}

/* Booking CTA - HotelSync */
.booking-highlight {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  position: relative;
}

.booking-highlight::after {
  content: "Direktna rezervacija";
  position: absolute;
  top: -28px;
  right: 0;
  padding: 5px 9px;
  border-radius: 999px;
  background: #fffaf3;
  color: #8a5b32;
  font-size: 11px;
  font-weight: 800;
  line-height: 1;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.16);
  white-space: nowrap;
}

.btn-booking {
  background: linear-gradient(135deg, #8a5b32, #bc8552);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.22);
  box-shadow: 0 12px 28px rgba(138, 91, 50, 0.28);
}

.btn-booking:hover {
  background: linear-gradient(135deg, #744b29, #a87445);
  transform: translateY(-2px);
  box-shadow: 0 16px 34px rgba(138, 91, 50, 0.34);
}

.sticky-cta .btn-booking {
  background: #8a5b32;
  color: #fff;
}

@media (max-width: 680px) {
  .booking-highlight::after {
    display: none;
  }

  .sticky-cta {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 6px;
  }

  .sticky-cta .btn {
    padding: 10px 8px;
    font-size: 12px;
    text-align: center;
  }
}

