:root {
  --color-bg: #0d0c0b;
  --color-surface: #171512;
  --color-surface-alt: #1e1b17;
  --color-text: #f0ebe2;
  --color-text-muted: #a49a8c;
  --color-border: #2c2822;

  --color-primary: #5fae74;
  --color-primary-dark: #16281c;
  --color-accent: #d4a054;
  --color-accent-dark: #b8843f;
  --color-whatsapp: #25d366;
  --color-whatsapp-dark: #1da851;
  --color-viber: #7360f2;
  --color-viber-dark: #5c4bd1;
  --color-telegram: #29a9eb;
  --color-telegram-dark: #1b8fca;

  --radius: 16px;
  --radius-sm: 10px;
  --radius-btn: 12px;
  --shadow: 0 20px 50px rgba(0, 0, 0, 0.55);
  --shadow-sm: 0 8px 24px rgba(0, 0, 0, 0.4);
  --container-width: 1140px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; color-scheme: dark; }

body {
  margin: 0;
  font-family: "Inter", system-ui, -apple-system, Roboto, sans-serif;
  color: var(--color-text);
  background: var(--color-bg);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3 {
  font-family: "Fraunces", Georgia, "Times New Roman", serif;
  font-optical-sizing: auto;
  line-height: 1.15;
  letter-spacing: -0.01em;
  margin: 0 0 0.5em;
  color: var(--color-text);
}

h1 { font-size: clamp(2.4rem, 5.5vw, 3.8rem); font-weight: 600; }
h2 { font-size: clamp(1.8rem, 3.2vw, 2.4rem); font-weight: 600; text-align: center; }
h3 { font-size: 1.2rem; font-weight: 600; }

p { margin: 0 0 1em; }

a { color: var(--color-primary); text-decoration: none; }

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

.container {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 20px;
}

.icon { width: 22px; height: 22px; }
.icon-lg { width: 32px; height: 32px; color: var(--color-primary); }

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(13, 12, 11, 0.85);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid transparent;
  transition: box-shadow 0.2s ease, border-color 0.2s ease;
}
.site-header.is-scrolled {
  box-shadow: var(--shadow-sm);
  border-bottom-color: var(--color-border);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  color: var(--color-text);
}
.brand-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--color-primary);
  color: #fff;
  font-size: 0.75rem;
  letter-spacing: 0.02em;
}
.brand-name { font-family: "Fraunces", Georgia, serif; font-size: 1.15rem; }

.main-nav {
  display: none;
  gap: 28px;
}
.main-nav a {
  position: relative;
  color: var(--color-text);
  font-size: 0.95rem;
  font-weight: 500;
  padding-bottom: 3px;
}
.main-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: -1px;
  height: 2px;
  background: var(--color-primary);
  transition: right 0.25s ease;
}
.main-nav a:hover { color: var(--color-primary); }
.main-nav a:hover::after { right: 0; }

.header-actions {
  display: flex;
  align-items: center;
  gap: 14px;
}

.lang-switch {
  display: flex;
  border: 1px solid var(--color-border);
  border-radius: 999px;
  overflow: hidden;
}
.lang-btn {
  border: none;
  background: transparent;
  padding: 6px 12px;
  font-size: 0.8rem;
  font-weight: 600;
  cursor: pointer;
  color: var(--color-text-muted);
}
.lang-btn.is-active {
  background: var(--color-primary);
  color: #fff;
}

.nav-toggle {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 34px;
  height: 34px;
  border: none;
  background: transparent;
  cursor: pointer;
}
.nav-toggle span {
  display: block;
  height: 2px;
  background: var(--color-text);
  border-radius: 2px;
}

.main-nav.is-open {
  display: flex;
  flex-direction: column;
  position: absolute;
  top: 68px;
  left: 0;
  right: 0;
  background: var(--color-surface);
  padding: 16px 20px 24px;
  box-shadow: var(--shadow-sm);
  gap: 16px;
}

@media (min-width: 860px) {
  .main-nav { display: flex; position: static; box-shadow: none; padding: 0; background: none; }
  .nav-toggle { display: none; }
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 26px;
  border-radius: var(--radius-btn);
  font-weight: 600;
  font-size: 0.95rem;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
}
.btn:hover { transform: translateY(-2px); box-shadow: var(--shadow-sm); }

.btn-primary {
  background: var(--color-accent);
  color: #1a1510;
}
.btn-primary:hover { background: var(--color-accent-dark); }

.btn-outline {
  background: transparent;
  border-color: var(--color-primary);
  color: var(--color-text);
}
.btn-outline:hover { background: var(--color-primary); color: #fff; }

.btn-whatsapp {
  background: var(--color-whatsapp);
  color: #fff;
}
.btn-whatsapp:hover { background: var(--color-whatsapp-dark); }

.btn-viber {
  background: var(--color-viber);
  color: #fff;
}
.btn-viber:hover { background: var(--color-viber-dark); }

.btn-telegram {
  background: var(--color-telegram);
  color: #fff;
}
.btn-telegram:hover { background: var(--color-telegram-dark); }

.btn-block { width: 100%; }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  padding: 150px 0 90px;
  text-align: center;
  color: #fff;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: -1;
  /* Svetliji preliv — zatamnjenje je jače tek pri dnu, gde stoji tekst.
     Čitljivost se nadoknađuje senkom na samom tekstu. */
  background:
    linear-gradient(180deg, rgba(8,7,6,0.06) 0%, rgba(8,7,6,0.28) 45%, rgba(8,7,6,0.62) 100%),
    url("/images/ski-slope.jpg") center 65% / cover no-repeat;
}
/* Ocena gostiju — ispod hero slike, na tamnoj pozadini, da se ne gubi u fotografiji */
.rating-bar {
  background: var(--color-bg);
  text-align: center;
  padding: 26px 20px 0;
}
.rating-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  padding: 10px 20px;
  border-radius: 999px;
  font-size: 0.92rem;
  color: var(--color-text-muted);
  text-decoration: none;
  transition: border-color 0.15s ease, color 0.15s ease;
}
.rating-badge:hover { border-color: var(--color-accent); color: var(--color-text); }
.rating-score {
  font-family: "Fraunces", Georgia, serif;
  font-size: 1.15rem;
  color: var(--color-accent);
  font-weight: 600;
}
.hero h1 { color: #fff; text-shadow: 0 2px 14px rgba(0,0,0,0.85), 0 1px 3px rgba(0,0,0,0.6); }
.hero-subtitle {
  text-shadow: 0 1px 8px rgba(0,0,0,0.5);
  font-size: 1.15rem;
  max-width: 520px;
  margin: 0 auto 32px;
  color: rgba(255,255,255,0.9);
  /* Rezerviši prostor za dva reda — srpski podnaslov staje u jedan, engleski u dva,
     pa bi bez ovoga hero bio različite visine na / i /en/. */
  min-height: 3.3em;
}
.hero-cta {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px;
  margin-bottom: 40px;
}
.hero-stats {
  display: flex;
  justify-content: center;
  gap: 40px;
  list-style: none;
  padding: 0;
  margin: 0;
}
.hero-stats li {
  display: flex;
  flex-direction: column;
  align-items: center;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.85);
}
.hero-stats strong {
  font-family: "Fraunces", Georgia, serif;
  font-size: 1.6rem;
  color: #fff;
  text-shadow: 0 1px 10px rgba(0,0,0,0.8);
}
.hero-stats li span { text-shadow: 0 1px 8px rgba(0,0,0,0.8); }

@keyframes heroFadeUp {
  from { opacity: 0; transform: translateY(18px); }
  to { opacity: 1; transform: translateY(0); }
}
.hero-inner > * {
  animation: heroFadeUp 0.7s ease both;
}
.hero-inner > *:nth-child(2) { animation-delay: 0.06s; }
.hero-inner > *:nth-child(3) { animation-delay: 0.12s; }
.hero-inner > *:nth-child(4) { animation-delay: 0.18s; }
.hero-inner > *:nth-child(5) { animation-delay: 0.24s; }

/* ---------- Sections ---------- */
.section { padding: 100px 0; }
.section-alt { background: var(--color-surface-alt); }
.section-text {
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
  color: var(--color-text-muted);
  font-size: 1.05rem;
}
.section-subtitle {
  text-align: center;
  color: var(--color-text-muted);
  max-width: 600px;
  margin: -8px auto 40px;
}

/* ---------- Amenities ---------- */
.amenities-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 28px;
  margin-top: 44px;
}
.amenity-card {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: var(--shadow-sm);
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}
.amenity-card:hover { border-color: var(--color-primary); }
.amenity-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}
.amenity-card h3 { margin: 14px 0 6px; }
.amenity-card p { color: var(--color-text-muted); font-size: 0.92rem; margin: 0; }

/* ---------- Gallery ---------- */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 18px;
  margin-top: 40px;
}
.gallery-item {
  margin: 0;
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  background: var(--color-surface);
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}
.gallery-item:hover { border-color: var(--color-primary); }
.gallery-item:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}
.gallery-item img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  cursor: pointer;
  transition: transform 0.3s ease;
}
.gallery-item:hover img {
  transform: scale(1.04);
}
.gallery-item figcaption {
  padding: 10px 14px;
  font-size: 0.85rem;
  color: var(--color-text-muted);
}

/* ---------- Lightbox ---------- */
.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 1000;
  background: rgba(0,0,0,0.9);
  align-items: center;
  justify-content: center;
  padding: 24px;
}
.lightbox.is-open {
  display: flex;
}
.lightbox-content {
  margin: 0;
  max-width: min(90vw, 1000px);
  max-height: 90vh;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.lightbox-content img {
  max-width: 100%;
  max-height: 80vh;
  object-fit: contain;
  border-radius: var(--radius);
}
.lightbox-content figcaption {
  color: #fff;
  text-align: center;
  margin-top: 14px;
  font-size: 0.95rem;
}
.lightbox-close,
.lightbox-nav {
  position: fixed;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.3);
  color: #fff;
  border-radius: 50%;
  width: 44px;
  height: 44px;
  font-size: 1.3rem;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.15s ease;
}
.lightbox-close:hover,
.lightbox-nav:hover {
  background: rgba(255,255,255,0.25);
}
.lightbox-close {
  top: 20px;
  right: 20px;
}
.lightbox-prev {
  left: 20px;
  top: 50%;
  transform: translateY(-50%);
}
.lightbox-next {
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
}
@media (max-width: 640px) {
  .lightbox-close { top: 10px; right: 10px; }
  .lightbox-prev { left: 10px; }
  .lightbox-next { right: 10px; }
  .lightbox-nav, .lightbox-close { width: 38px; height: 38px; font-size: 1.1rem; }
}

/* ---------- Location ---------- */
.location-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
  margin-top: 32px;
}
.location-card {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  padding: 26px;
  box-shadow: var(--shadow-sm);
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}
.location-card:hover { border-color: var(--color-primary); }
.location-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}
.nearby-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.nearby-list li {
  display: flex;
  justify-content: space-between;
  padding: 10px 0;
  border-bottom: 1px solid var(--color-border);
  font-size: 0.95rem;
}
.nearby-list li:last-child { border-bottom: none; }
.nearby-dist { color: var(--color-text-muted); }

.location-rating-badge {
  display: block;
  text-align: center;
  color: var(--color-accent);
  font-weight: 600;
  margin: -8px 0 18px;
}
.location-card a { display: inline-block; margin-top: 8px; font-weight: 600; }

/* ---------- CTA section ---------- */
.cta-section {
  text-align: center;
  background: var(--color-primary-dark);
  color: #fff;
}
.cta-section h2 { color: #fff; }
.cta-section .section-subtitle { color: rgba(255,255,255,0.8); }
.cta-section .btn-outline { border-color: #fff; color: #fff; }
.cta-section .btn-outline:hover { background: #fff; color: var(--color-primary-dark); }

/* ---------- Contact ---------- */
.contact-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 40px;
  margin-top: 40px;
  align-items: start;
}
@media (max-width: 780px) {
  .contact-grid { grid-template-columns: 1fr; }
}

.contact-form {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  padding: 30px;
  box-shadow: var(--shadow-sm);
}
.form-row { margin-bottom: 18px; }
.form-row-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.form-row label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 6px;
  color: var(--color-text-muted);
}
.form-row input,
.form-row textarea {
  width: 100%;
  padding: 11px 14px;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
  font-size: 0.95rem;
  font-family: inherit;
  background: var(--color-surface-alt);
  color: var(--color-text);
}
.form-row input:focus,
.form-row textarea:focus {
  outline: 2px solid var(--color-primary);
  outline-offset: 1px;
}
.form-status {
  margin-top: 12px;
  font-size: 0.9rem;
}
.form-status.success { color: var(--color-primary); }
.form-status.error { color: #b3261e; }

.contact-side {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.contact-detail {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
  padding: 14px 18px;
  box-shadow: var(--shadow-sm);
  margin: 0;
  font-size: 0.92rem;
}

/* ---------- Footer ---------- */
.site-footer {
  background: var(--color-primary-dark);
  color: rgba(255,255,255,0.85);
  padding: 28px 0;
  font-size: 0.9rem;
}
.footer-inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 12px;
}
.footer-inner a { color: #fff; text-decoration: underline; }

/* ---------- Floating WhatsApp / Viber ---------- */
.float-contact {
  position: fixed;
  bottom: 22px;
  right: 22px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  z-index: 90;
}
.float-btn {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow);
}
.float-btn .icon { width: 28px; height: 28px; }
.float-whatsapp { background: var(--color-whatsapp); }
.float-whatsapp:hover { background: var(--color-whatsapp-dark); }
.float-viber { background: var(--color-viber); }
.float-viber:hover { background: var(--color-viber-dark); }
.float-telegram { background: var(--color-telegram); }
.float-telegram:hover { background: var(--color-telegram-dark); }

/* ---------- Scroll reveal ---------- */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  .hero-inner > * { animation: none; }
}

/* ==========================================================================
   Kopaonik sadržaj — /kopaonik, /kopaonik/leto, /kopaonik/zima i članci
   ========================================================================== */

.simple-header {
  background: rgba(13, 12, 11, 0.92);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--color-border);
}
.simple-header .header-inner {
  flex-wrap: wrap;
  gap: 12px 24px;
  height: auto;
  padding: 16px 0;
}
.simple-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 22px;
}
.simple-nav a {
  color: var(--color-text);
  font-size: 0.95rem;
  font-weight: 500;
}
.simple-nav a:hover { color: var(--color-primary); }

/* Prekidač jezika na sadržajnim stranicama — linkovi ka parnjaku, ne JS toggle */
.simple-header .header-inner { justify-content: space-between; }
.lang-switch a.lang-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 6px 12px;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--color-text-muted);
  text-decoration: none;
}
.lang-switch a.lang-btn.is-active { background: var(--color-primary); color: #fff; }
.lang-switch a.lang-btn:hover:not(.is-active) { color: var(--color-text); }

.breadcrumbs {
  font-size: 0.85rem;
  color: var(--color-text-muted);
  margin: 0 0 20px;
}
.breadcrumbs a { color: var(--color-text-muted); text-decoration: underline; }
.breadcrumbs a:hover { color: var(--color-primary); }

.article-hero { padding: 52px 0 36px; text-align: left; }
/* Minimalna visina: naslovi se između jezika prelamaju u različit broj redova,
   pa bi SR i EN verzija iste stranice inače imale različito visok hero. */
.article-hero { min-height: 330px; display: flex; align-items: center; }
.article-hero > .container { width: 100%; }
.article-hero h1 { text-align: left; max-width: 820px; margin-bottom: 0.35em; }
.article-lede {
  color: var(--color-text-muted);
  font-size: 1.1rem;
  max-width: 760px;
  margin: 0;
}
.article-meta {
  color: var(--color-text-muted);
  font-size: 0.85rem;
  margin-top: 16px;
}

/* Hero variant with a background photo — used on /kopaonik and /kopaonik/leto.
   Pass the image via inline style="--hero-photo: url('/images/...')" on the section. */
.article-hero--photo {
  position: relative;
  color: #fff;
  padding-top: 110px;
  padding-bottom: 70px;
  overflow: hidden;
  /* Fiksni minimum + vertikalno centriranje: hero ostaje iste visine bez obzira
     na dužinu uvodnog teksta (SR i EN se razlikuju po broju prelomljenih redova). */
  min-height: 420px;
}
.article-hero--photo::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  /* Svetliji preliv da se fotografija vidi; zatamnjenje je jače samo pri dnu,
     gde stoji tekst. Čitljivost se nadoknađuje senkom na samom tekstu. */
  background-image: linear-gradient(180deg, rgba(8, 7, 6, 0.15) 0%, rgba(8, 7, 6, 0.32) 45%, rgba(8, 7, 6, 0.72) 100%), var(--hero-photo);
  background-size: cover;
  background-position: center 60%;
}
.article-hero--photo h1 { color: #fff; text-shadow: 0 2px 14px rgba(0, 0, 0, 0.85), 0 1px 3px rgba(0, 0, 0, 0.6); }
.article-hero--photo .article-lede { color: #fff; text-shadow: 0 1px 10px rgba(0, 0, 0, 0.8); }
.article-hero--photo .breadcrumbs { color: rgba(255, 255, 255, 0.85); text-shadow: 0 1px 8px rgba(0, 0, 0, 0.8); }
.article-hero--photo .breadcrumbs a { color: #fff; }

/* Inline photos within article content */
.article-figure {
  margin: 1.8em 0;
}
.article-figure img {
  display: block;
  /* Ograniči po visini, ne po širini — portretne fotografije (npr. 1152x2560)
     bi inače na punoj širini teksta bile ogromne. Slika se ne seče. */
  width: auto;
  max-width: 100%;
  max-height: 480px;
  margin: 0 auto;
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
}
.article-figure figcaption {
  margin-top: 8px;
  font-size: 0.85rem;
  color: var(--color-text-muted);
  text-align: center;
}

.article-body { max-width: 760px; margin: 0 auto; }
.article-body h2 {
  text-align: left;
  font-size: clamp(1.5rem, 2.6vw, 1.9rem);
  margin-top: 2.3em;
}
.article-body > h2:first-child { margin-top: 0; }
.article-body h3 { margin-top: 1.7em; font-size: 1.15rem; }
.article-body h4 {
  font-family: "Fraunces", Georgia, serif;
  font-size: 1rem;
  font-weight: 600;
  margin: 1.3em 0 0.3em;
  color: var(--color-accent);
}
.article-body p { color: var(--color-text); }
.article-body ul, .article-body ol { padding-left: 1.3em; margin: 0 0 1.2em; }
.article-body li { margin-bottom: 0.45em; }
.article-body a { text-decoration: underline; text-underline-offset: 2px; }

.activity-facts {
  display: flex;
  flex-wrap: wrap;
  gap: 6px 20px;
  margin: 10px 0 14px;
  font-size: 0.85rem;
  color: var(--color-text-muted);
  list-style: none;
  padding: 0;
}
.activity-facts li strong { color: var(--color-text); }
.activity-tip {
  background: var(--color-surface);
  border-left: 3px solid var(--color-accent);
  padding: 10px 16px;
  border-radius: var(--radius-sm);
  font-size: 0.92rem;
  margin: 0 0 1.6em;
}
.activity-tip strong { color: var(--color-accent); }

.quick-facts {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  padding: 26px 28px;
  margin: 2.2em 0;
}
.quick-facts h2, .quick-facts h3 { margin-top: 0; text-align: left; }
.quick-facts dl { display: grid; grid-template-columns: max-content 1fr; gap: 10px 20px; margin: 0; }
.quick-facts dt { color: var(--color-text-muted); font-weight: 600; }
.quick-facts dd { margin: 0; }

.faq-item { border-bottom: 1px solid var(--color-border); padding: 16px 0; }
.faq-item:first-of-type { border-top: 1px solid var(--color-border); }
.faq-item summary {
  cursor: pointer;
  font-weight: 600;
  font-family: "Fraunces", Georgia, serif;
  font-size: 1.05rem;
  list-style: none;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after { content: "+"; float: right; color: var(--color-primary); font-weight: 400; }
.faq-item[open] summary::after { content: "\2212"; }
.faq-item p { margin: 12px 0 0; color: var(--color-text-muted); }

.stay-card {
  background: var(--color-primary-dark);
  color: #fff;
  border-radius: var(--radius);
  padding: 32px;
  margin: 2.4em 0 1em;
}
.stay-card h2, .stay-card h3 { color: #fff; text-align: left; margin-top: 0; }
.stay-card p { color: rgba(255, 255, 255, 0.85); }
.stay-card ul { color: rgba(255, 255, 255, 0.85); }
.stay-card .btn-outline { border-color: #fff; color: #fff; }
.stay-card .btn-outline:hover { background: #fff; color: var(--color-primary-dark); }

.related-links {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 16px;
  margin: 2em 0;
}
.related-links a {
  display: block;
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
  padding: 18px 20px;
  color: var(--color-text);
  font-weight: 600;
  text-decoration: none;
}
.related-links a:hover { border-color: var(--color-primary); color: var(--color-primary); }
.related-links span { display: block; font-weight: 400; color: var(--color-text-muted); font-size: 0.85rem; margin-top: 4px; }

/* Reusable "season hub" card grid — used on /kopaonik (Leto/Zima cards),
   /kopaonik/leto and, later, /kopaonik/zima (article cards), and the homepage
   "Istražite Kopaonik" teaser. Same component, three contexts. */
.season-hub-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 28px;
  margin-top: 44px;
}
.season-hub-card {
  position: relative;
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: var(--shadow-sm);
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}
.season-hub-card:hover { border-color: var(--color-primary); transform: translateY(-4px); box-shadow: var(--shadow); }
.season-hub-card h2, .season-hub-card h3 { text-align: left; font-size: 1.3rem; margin-bottom: 0.4em; }
.season-hub-card p { color: var(--color-text-muted); }
.season-hub-card a.season-hub-link { font-weight: 600; display: inline-block; margin-top: 4px; }

.season-hub-card--featured { border-color: var(--color-accent); }

.season-hub-card--disabled {
  opacity: 0.7;
}
.season-hub-card--disabled:hover {
  border-color: var(--color-border);
  transform: none;
  box-shadow: var(--shadow-sm);
}

.hub-badge {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  padding: 4px 10px;
  border-radius: 999px;
  margin-bottom: 10px;
}
.hub-badge--featured { background: var(--color-accent); color: #1a1510; }
.hub-badge--soon { background: var(--color-surface-alt); color: var(--color-text-muted); border: 1px solid var(--color-border); }

.simple-footer {
  background: var(--color-primary-dark);
  color: rgba(255, 255, 255, 0.85);
  padding: 28px 0;
  font-size: 0.9rem;
}
.simple-footer .footer-inner { display: flex; flex-wrap: wrap; justify-content: space-between; gap: 12px; }
.simple-footer a { color: #fff; text-decoration: underline; }

/* ==========================================================================
   Floating booking / contact CTA (sve stranice)
   ========================================================================== */

:root { --fcta-bar-height: 76px; }

@media (max-width: 859px) {
  body { padding-bottom: calc(var(--fcta-bar-height) + env(safe-area-inset-bottom)); }
  /* Postojeći plutajući WhatsApp/Viber/Telegram krug preklapa se sa novom donjom trakom
     na mobilnom — funkcija je pokrivena KONTAKT dugmetom u traci, pa se sakriva ovde. */
  .float-contact { display: none; }
}

.fcta-bar {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 95;
  display: flex;
  gap: 10px;
  padding: 10px 14px calc(10px + env(safe-area-inset-bottom));
  background: var(--color-surface);
  border-top: 1px solid var(--color-border);
  box-shadow: 0 -8px 24px rgba(0, 0, 0, 0.45);
}
.fcta-btn {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 48px;
  padding: 0 14px;
  border-radius: var(--radius-btn);
  border: 2px solid transparent;
  font-family: inherit;
  font-weight: 600;
  font-size: 0.88rem;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  cursor: pointer;
  text-decoration: none;
  transition: transform 0.15s ease, background 0.15s ease, border-color 0.15s ease;
}
.fcta-btn .icon { width: 20px; height: 20px; flex-shrink: 0; }
.fcta-btn:active { transform: scale(0.98); }
.fcta-btn:focus-visible { outline: 2px solid var(--color-primary); outline-offset: 2px; }

.fcta-primary { background: var(--color-accent); color: #1a1510; }
.fcta-primary:hover { background: var(--color-accent-dark); }

.fcta-secondary { background: transparent; border-color: var(--color-border); color: var(--color-text); }
.fcta-secondary:hover { border-color: var(--color-primary); color: var(--color-primary); }

.fcta-desktop {
  display: none;
}

@media (min-width: 860px) {
  .fcta-bar { display: none; }

  .fcta-desktop {
    position: fixed;
    right: 22px;
    bottom: 230px;
    z-index: 95;
    display: flex;
    align-items: center;
    gap: 10px;
  }
  .fcta-desktop-book {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 20px;
    border-radius: 999px;
    background: var(--color-accent);
    color: #1a1510;
    font-weight: 600;
    font-size: 0.9rem;
    text-decoration: none;
    box-shadow: var(--shadow-sm);
    border: 2px solid transparent;
    transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
  }
  .fcta-desktop-book:hover { background: var(--color-accent-dark); transform: translateY(-2px); box-shadow: var(--shadow); }
  .fcta-desktop-book:focus-visible { outline: 2px solid var(--color-primary); outline-offset: 2px; }
  .fcta-desktop-book .icon { width: 18px; height: 18px; }

  .fcta-desktop-contact {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--color-surface);
    border: 1px solid var(--color-border);
    color: var(--color-text);
    cursor: pointer;
    box-shadow: var(--shadow-sm);
    transition: transform 0.15s ease, border-color 0.15s ease, color 0.15s ease;
  }
  .fcta-desktop-contact:hover { border-color: var(--color-primary); color: var(--color-primary); transform: translateY(-2px); }
  .fcta-desktop-contact:focus-visible { outline: 2px solid var(--color-primary); outline-offset: 2px; }
  .fcta-desktop-contact .icon { width: 20px; height: 20px; }
}

/* Kontakt sheet (bottom sheet / modal) */
.fcta-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
  z-index: 998;
}
.fcta-overlay[hidden] { display: none; }

.fcta-sheet {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 999;
  margin: 0 auto;
  width: 100%;
  max-width: 420px;
  max-height: 80vh;
  overflow-y: auto;
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-bottom: none;
  border-radius: var(--radius) var(--radius) 0 0;
  padding: 20px 20px calc(20px + env(safe-area-inset-bottom));
  box-shadow: var(--shadow);
}
.fcta-sheet[hidden] { display: none; }

@media (min-width: 860px) {
  .fcta-sheet {
    left: auto;
    right: 22px;
    bottom: 22px;
    border-radius: var(--radius);
    border-bottom: 1px solid var(--color-border);
  }
}

.fcta-sheet-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 12px;
}
.fcta-sheet-header h2 { margin: 0; font-size: 1.15rem; }
.fcta-sheet-close {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: none;
  background: var(--color-surface-alt);
  color: var(--color-text);
  font-size: 1.1rem;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}
.fcta-sheet-close:hover { color: var(--color-primary); }
.fcta-sheet-close:focus-visible { outline: 2px solid var(--color-primary); outline-offset: 2px; }

.fcta-sheet-body { display: flex; flex-direction: column; gap: 8px; }
.fcta-sheet-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 13px 14px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--color-border);
  color: var(--color-text);
  text-decoration: none;
  font-weight: 500;
  font-size: 0.95rem;
  min-height: 48px;
  transition: border-color 0.15s ease, background 0.15s ease;
}
.fcta-sheet-item:hover { border-color: var(--color-primary); background: var(--color-surface-alt); }
.fcta-sheet-item:focus-visible { outline: 2px solid var(--color-primary); outline-offset: 2px; }
.fcta-sheet-item .icon { width: 22px; height: 22px; flex-shrink: 0; }
.fcta-sheet-item[hidden] { display: none; }

/* --- Zašto Konaci 119: brzo skenabilne prednosti --- */
.why-section { padding: 44px 0 8px; }
.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 14px;
  margin-top: 26px;
}
.why-item {
  display: flex;
  align-items: center;
  gap: 12px;
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
  padding: 14px 16px;
}
.why-icon { font-size: 1.35rem; line-height: 1; flex-shrink: 0; }
.why-text { font-size: 0.94rem; color: var(--color-text); line-height: 1.35; }
.why-text small { display: block; color: var(--color-text-muted); font-size: 0.82rem; margin-top: 2px; }

/* --- Ugrađena mapa: lazy iframe, bez third-party skripti --- */
.location-map {
  margin-top: 26px;
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  overflow: hidden;
  line-height: 0;
  background: var(--color-surface);
}
.location-map iframe { width: 100%; height: 360px; border: 0; display: block; }
@media (max-width: 640px) { .location-map iframe { height: 260px; } }

/* --- Napomena ispod forme + prošireni footer --- */
.form-note {
  margin-top: 14px;
  font-size: 0.86rem;
  color: var(--color-text-muted);
  line-height: 1.5;
}
.footer-contact {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 20px;
  margin: 10px 0 0;
  padding: 0;
  list-style: none;
  font-size: 0.9rem;
}
.footer-contact a { color: var(--color-text-muted); text-decoration: none; }
.footer-contact a:hover { color: var(--color-accent); }

/* --- Tabele u člancima (parking, cenovnici) --- */
.table-wrap {
  overflow-x: auto;                 /* uska tabela skroluje sama, stranica ne */
  margin: 22px 0;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
}
.data-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.94rem;
  min-width: 320px;
}
.data-table th,
.data-table td {
  padding: 11px 16px;
  text-align: left;
  border-bottom: 1px solid var(--color-border);
}
.data-table thead th {
  background: var(--color-surface-alt);
  color: var(--color-text);
  font-weight: 600;
  font-size: 0.86rem;
  letter-spacing: 0.02em;
}
.data-table tbody tr:last-child td { border-bottom: 0; }
.data-table td:last-child,
.data-table th:last-child { color: var(--color-text-muted); white-space: nowrap; }

/* --- Korisni linkovi u footeru (sve stranice) --- */
.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 20px;
  margin: 0 0 12px;
  padding: 0;
  list-style: none;
  font-size: 0.9rem;
}
.footer-links a { color: var(--color-text-muted); text-decoration: none; }
.footer-links a:hover { color: var(--color-accent); }
.simple-footer .footer-inner,
.site-footer .footer-inner { flex-wrap: wrap; }
