/*
Theme Name: VU Tara — Planinski Resort
Theme URI: https://vutara.rs
Author: HSS Hotel Solutions
Description: Premium WordPress tema za Vojnu Ustanovu Tara — luksuzni planinski resort dizajn.
Version: 2.0
Requires at least: 6.0
Requires PHP: 8.0
Text Domain: vutara
*/

/* ═══════════════════════════════════════════════════════════
   VU TARA — PREMIUM MOUNTAIN RESORT THEME
   Design System v2.0
   ═══════════════════════════════════════════════════════════ */

/* ── GOOGLE FONTS ──────────────────────────────────────────── */
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,600;1,300;1,400;1,600;1,700&family=Cormorant:ital,wght@0,400;0,600;1,400&family=Jost:ital,wght@0,200;0,300;0,400;0,500;1,200;1,300&display=swap');

/* ── DESIGN TOKENS ─────────────────────────────────────────── */
:root {
  /* Palette */
  --forest:     #0b1a0e;   /* darkest green — backgrounds */
  --pine:       #162b1b;   /* deep forest   — nav, footer */
  --fern:       #2a5232;   /* mid green     — accents */
  --sage:       #5a8a69;   /* light green   — borders */
  --gold:       #c9a96e;   /* warm gold     — primary accent */
  --gold-light: #e2c898;   /* gold hover    */
  --gold-dark:  #a07c45;   /* gold pressed  */
  --cream:      #f4efe6;   /* warm cream    — light bg */
  --cream-dark: #e8e1d4;   /* cream darker  — cards */
  --parchment:  #faf7f2;   /* almost white  — main bg */
  --white:      #ffffff;
  --ink:        #1a1a18;   /* near black    — headings */
  --stone:      #4a4a42;   /* dark grey     — body text */
  --smoke:      #8a8a80;   /* mid grey      — captions */
  --mist:       #c8c8c0;   /* light grey    — borders */

  /* Typography */
  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-accent:  'Cormorant', Georgia, serif;
  --font-body:    'Jost', system-ui, sans-serif;

  /* Spacing */
  --space-xs:  8px;
  --space-sm:  16px;
  --space-md:  32px;
  --space-lg:  64px;
  --space-xl:  120px;

  /* Motion */
  --ease-out:  cubic-bezier(0.16, 1, 0.3, 1);
  --ease-in:   cubic-bezier(0.4, 0, 1, 1);
  --ease-io:   cubic-bezier(0.45, 0, 0.55, 1);

  /* Shadows */
  --shadow-sm:  0 2px 12px rgba(11,26,14,0.08);
  --shadow-md:  0 8px 40px rgba(11,26,14,0.14);
  --shadow-lg:  0 24px 80px rgba(11,26,14,0.22);
  --shadow-gold: 0 4px 24px rgba(201,169,110,0.25);
}

/* ── RESET ─────────────────────────────────────────────────── */
*, *::before, *::after { margin:0; padding:0; box-sizing:border-box; }
html { scroll-behavior:smooth; overflow-x:hidden; }
body {
  font-family: var(--font-body);
  font-weight: 300;
  color: var(--stone);
  background: var(--parchment);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img { display:block; max-width:100%; }
a { text-decoration:none; color:inherit; }
button { cursor:pointer; border:none; background:none; font-family:inherit; }
ul, ol { list-style:none; }
html.menu-open body { overflow:hidden; }

/* ── SCROLL ANIMATIONS ─────────────────────────────────────── */
.reveal {
  opacity:0;
  transform: translateY(32px);
  transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out);
}
.reveal.in-view { opacity:1; transform:translateY(0); }
.reveal-left  { transform: translateX(-40px); }
.reveal-right { transform: translateX(40px);  }
.reveal-left.in-view, .reveal-right.in-view { transform:translateX(0); opacity:1; }

/* ── TYPOGRAPHY BASE ───────────────────────────────────────── */
h1,h2,h3,h4,h5,h6 {
  font-family: var(--font-display);
  font-weight: 400;
  color: var(--ink);
  line-height: 1.08;
}

/* ── LAYOUT ────────────────────────────────────────────────── */
.container {
  width: 100%;
  max-width: 1360px;
  margin: 0 auto;
  padding: 0 48px;
}
.container--narrow { max-width: 900px; }
.container--wide   { max-width: 1600px; padding:0 40px; }

/* ── SECTION LAYOUTS ───────────────────────────────────────── */
.section {
  padding: var(--space-xl) 0;
}
.section--cream  { background: var(--cream); }
.section--forest { background: var(--forest); }
.section--pine   { background: var(--pine);   }
.section--white  { background: var(--white);  }

.section-eyebrow {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 3.5px;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
  margin-bottom: 16px;
}
.section-heading {
  font-size: clamp(36px, 4.5vw, 60px);
  font-weight: 400;
  font-style: italic;
  color: var(--ink);
  line-height: 1.05;
}
.section-heading--light { color: var(--cream); }
.section-heading--gold  { color: var(--gold); }

.section-rule {
  width: 48px;
  height: 1px;
  background: var(--gold);
  margin: 24px 0;
}
.section-rule--center { margin: 24px auto; }

.section-lead {
  font-size: 17px;
  line-height: 1.75;
  color: var(--stone);
  max-width: 640px;
}
.section-lead--light { color: rgba(244,239,230,0.72); }

/* ── BUTTONS ───────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  padding: 16px 32px;
  border-radius: 2px;
  transition: all 0.3s var(--ease-out);
  white-space: nowrap;
}
.btn-gold {
  background: var(--gold);
  color: var(--forest);
}
.btn-gold:hover {
  background: var(--gold-light);
  transform: translateY(-1px);
  box-shadow: var(--shadow-gold);
}
.btn-outline {
  border: 1px solid var(--gold);
  color: var(--gold);
  background: transparent;
}
.btn-outline:hover {
  background: var(--gold);
  color: var(--forest);
}
.btn-outline--light {
  border-color: rgba(244,239,230,0.4);
  color: var(--cream);
}
.btn-outline--light:hover {
  background: rgba(244,239,230,0.1);
  border-color: var(--cream);
}
.btn-arrow::after {
  content: '→';
  font-size: 16px;
  transition: transform 0.3s var(--ease-out);
}
.btn-arrow:hover::after { transform: translateX(4px); }

/* Rezerviši (booking CTA) */
.btn-rezervisi {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: var(--gold);
  color: var(--forest);
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  padding: 18px 36px;
  border-radius: 2px;
  border: none;
  cursor: pointer;
  transition: all 0.3s var(--ease-out);
  white-space: nowrap;
  width: 100%;
}
.btn-rezervisi:hover {
  background: var(--gold-light);
  transform: translateY(-1px);
  box-shadow: var(--shadow-gold);
}

/* ══════════════════════════════════════════════════════════════
   NAVIGATION / HEADER
   ══════════════════════════════════════════════════════════════ */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 900;
  display: flex;
  align-items: stretch;
  transition: background 0.5s var(--ease-out), box-shadow 0.5s;
}
.site-header.scrolled {
  background: var(--pine);
  box-shadow: 0 2px 40px rgba(0,0,0,0.35);
}

/* Logo */
.header-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 20px 32px;
  background: var(--forest);
  flex-shrink: 0;
  border-bottom-right-radius: 0;
}
.header-logo-img { width: 48px; height: auto; flex-shrink:0; }
.header-logo-text {
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--cream);
  line-height: 1.4;
}

/* Nav bar */
.header-nav-bar {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 40px;
  background: rgba(11,26,14,0.6);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(201,169,110,0.12);
  transition: background 0.5s;
}
.site-header.scrolled .header-nav-bar {
  background: transparent;
  backdrop-filter: none;
  border-bottom-color: transparent;
}

.header-nav {
  display: flex;
  align-items: center;
  gap: 36px;
}
.nav-link {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(244,239,230,0.8);
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 28px 0;
  border-bottom: 2px solid transparent;
  transition: color 0.25s, border-color 0.25s;
}
.nav-link:hover,
.nav-link.active {
  color: var(--gold);
  border-bottom-color: var(--gold);
}
.nav-icon { width: 18px; height: 18px; opacity: 0.6; filter: brightness(0) invert(1); }
.nav-link:hover .nav-icon { opacity:1; }

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

.btn-lang {
  font-family: var(--font-body);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 1.5px;
  color: rgba(244,239,230,0.7);
  border: 1px solid rgba(201,169,110,0.3);
  width: 32px;
  height: 32px;
  border-radius: 2px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.25s;
}
.btn-lang:hover { color:var(--gold); border-color:var(--gold); }

.burger-btn {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
}
.burger-line {
  width: 22px;
  height: 1px;
  background: var(--cream);
  transition: all 0.3s var(--ease-out);
}
.burger-line--short { width: 16px; }

/* Mobile menu */
.mobile-menu {
  position: fixed;
  inset: 0;
  background: var(--forest);
  z-index: 9000;
  display: flex;
  flex-direction: column;
  padding: 80px 48px 48px;
  transform: translateX(100%);
  transition: transform 0.5s var(--ease-out);
}
.mobile-menu.open { transform: translateX(0); }
.mobile-menu-close {
  position: absolute;
  top: 24px; right: 24px;
  font-family: var(--font-body);
  font-size: 11px;
  letter-spacing: 2px;
  color: var(--smoke);
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
}
.mobile-menu-close::before { content:'✕'; font-size:18px; color:var(--gold); }
.mobile-nav { display:flex; flex-direction:column; gap:0; margin-top:24px; }
.mobile-nav-link {
  font-family: var(--font-display);
  font-size: 36px;
  font-weight: 300;
  font-style: italic;
  color: var(--cream);
  padding: 16px 0;
  border-bottom: 1px solid rgba(201,169,110,0.12);
  transition: color 0.25s, padding-left 0.25s;
}
.mobile-nav-link:hover { color:var(--gold); padding-left:12px; }
.mobile-menu-footer {
  margin-top: auto;
  font-size: 13px;
  color: var(--smoke);
  line-height: 1.8;
}

/* ══════════════════════════════════════════════════════════════
   HERO
   ══════════════════════════════════════════════════════════════ */
.hero {
  position: relative;
  height: 100vh;
  min-height: 700px;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

/* Background */
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-bg-img {
  width: 100%;
  height: 115%;
  object-fit: cover;
  transform: translateY(0);
  will-change: transform;
}
.hero-bg-gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    160deg,
    rgba(11,26,14,0.72) 0%,
    rgba(11,26,14,0.38) 50%,
    rgba(11,26,14,0.55) 100%
  );
}
.hero-bg-vignette {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, transparent 40%, rgba(11,26,14,0.5) 100%);
}

/* Slideshow */
.hero-slide {
  position: absolute;
  inset: 0;
  z-index: 0;
  opacity: 0;
  transition: opacity 1.5s var(--ease-io);
}
.hero-slide.active { opacity: 1; z-index: 1; }
.hero-slide img {
  width: 100%;
  height: 115%;
  object-fit: cover;
  transform: scale(1.05);
  transition: transform 8s linear;
}
.hero-slide.active img { transform: scale(1); }

/* Overlay on every slide */
.hero-slide::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    160deg,
    rgba(11,26,14,0.7) 0%,
    rgba(11,26,14,0.35) 55%,
    rgba(11,26,14,0.6) 100%
  );
}

/* Hero content */
.hero-content {
  position: relative;
  z-index: 10;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 120px 48px 200px;
  max-width: 780px;
}
.hero-eyebrow {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
  opacity: 0;
  transform: translateY(20px);
  animation: hero-fade-up 1s 0.4s var(--ease-out) forwards;
}
.hero-title {
  font-family: var(--font-display);
  font-size: clamp(52px, 7vw, 100px);
  font-weight: 300;
  font-style: italic;
  color: var(--cream);
  line-height: 0.95;
  opacity: 0;
  transform: translateY(24px);
  animation: hero-fade-up 1s 0.6s var(--ease-out) forwards;
  letter-spacing: -1px;
}
.hero-title em {
  font-style: normal;
  font-weight: 600;
  color: var(--gold);
}
.hero-subtitle {
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 300;
  color: rgba(244,239,230,0.7);
  margin-top: 24px;
  letter-spacing: 0.5px;
  line-height: 1.6;
  max-width: 480px;
  opacity: 0;
  animation: hero-fade-up 1s 0.8s var(--ease-out) forwards;
}
.hero-cta-row {
  display: flex;
  gap: 16px;
  margin-top: 40px;
  opacity: 0;
  animation: hero-fade-up 1s 1s var(--ease-out) forwards;
}

/* Hero slide counter */
.hero-counter {
  position: absolute;
  z-index: 10;
  bottom: 180px;
  right: 48px;
  display: flex;
  align-items: center;
  gap: 16px;
}
.hero-counter-num {
  font-family: var(--font-display);
  font-size: 13px;
  color: rgba(244,239,230,0.5);
  letter-spacing: 2px;
}
.hero-counter-num--current { color: var(--gold); font-size: 18px; }
.hero-counter-bar {
  width: 60px;
  height: 1px;
  background: rgba(201,169,110,0.3);
  position: relative;
}
.hero-counter-bar::after {
  content: '';
  position: absolute;
  left: 0; top: 0;
  height: 100%;
  background: var(--gold);
  width: 0%;
  transition: width 5s linear;
}
.hero-counter-bar.running::after { width: 100%; }

/* Hero arrows */
.hero-arrows {
  position: absolute;
  z-index: 10;
  bottom: 175px;
  right: 48px;
  display: flex;
  gap: 8px;
}
.hero-arrow-btn {
  width: 48px;
  height: 48px;
  border: 1px solid rgba(201,169,110,0.3);
  color: rgba(244,239,230,0.7);
  font-size: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 2px;
  transition: all 0.25s;
  cursor: pointer;
  background: rgba(11,26,14,0.3);
  backdrop-filter: blur(8px);
}
.hero-arrow-btn:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--forest);
}

/* Scroll cue */
.hero-scroll {
  position: absolute;
  z-index: 10;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  opacity: 0;
  animation: hero-fade-up 1s 1.4s var(--ease-out) forwards;
}
.hero-scroll-label {
  font-family: var(--font-body);
  font-size: 9px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: rgba(244,239,230,0.45);
}
.hero-scroll-line {
  width: 1px;
  height: 48px;
  background: linear-gradient(to bottom, rgba(201,169,110,0.6), transparent);
  animation: scroll-pulse 2.5s ease-in-out infinite;
}

@keyframes hero-fade-up {
  to { opacity:1; transform:translateY(0); }
}
@keyframes scroll-pulse {
  0%,100% { opacity:0.4; transform:scaleY(0.7); transform-origin:top; }
  50%      { opacity:1; transform:scaleY(1); }
}

/* ══════════════════════════════════════════════════════════════
   BOOKING FORM
   ══════════════════════════════════════════════════════════════ */
.bf-outer {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  z-index: 20;
}
.bf-wrap {
  max-width: 1360px;
  margin: 0 auto;
  padding: 0 48px;
  position: relative;
}
.bf-row {
  background: var(--pine);
  border-top: 1px solid rgba(201,169,110,0.2);
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr auto;
  align-items: stretch;
  overflow: visible;
  box-shadow: var(--shadow-lg);
}
.bf-field {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 18px 28px;
  border-right: 1px solid rgba(201,169,110,0.12);
  position: relative;
  cursor: pointer;
  transition: background 0.2s;
  min-width: 0;
}
.bf-field:hover { background: rgba(201,169,110,0.06); }
.bf-field--cta { border-right: none; cursor: default; padding: 0; }
.bf-label {
  font-family: var(--font-body);
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 6px;
}
.bf-value {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 300;
  color: var(--cream);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
}
.bf-chevron {
  color: var(--gold);
  font-size: 10px;
  flex-shrink: 0;
  transition: transform 0.25s;
}
.bf-field.open .bf-chevron { transform: rotate(180deg); }
.bf-promo-input {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 300;
  color: var(--cream);
  background: transparent;
  border: none;
  outline: none;
  width: 100%;
}
.bf-promo-input::placeholder { color: rgba(244,239,230,0.35); }

/* Dropdowns */
.bf-dropdown {
  display: none;
  position: absolute;
  bottom: calc(100% + 1px);
  left: 0;
  background: var(--pine);
  border: 1px solid rgba(201,169,110,0.2);
  border-bottom: none;
  min-width: 240px;
  box-shadow: 0 -16px 48px rgba(0,0,0,0.3);
  z-index: 500;
}
.bf-dropdown.open { display: block; }
.bf-dropdown-item {
  display: block;
  padding: 14px 20px;
  font-family: var(--font-display);
  font-size: 17px;
  color: var(--cream);
  border-bottom: 1px solid rgba(201,169,110,0.08);
  transition: background 0.15s, color 0.15s;
  cursor: pointer;
}
.bf-dropdown-item:hover { background: rgba(201,169,110,0.08); color: var(--gold); }

/* Calendar picker */
.bf-cal {
  display: none;
  position: absolute;
  bottom: calc(100% + 1px);
  left: 0;
  background: var(--pine);
  border: 1px solid rgba(201,169,110,0.2);
  border-bottom: none;
  padding: 24px;
  width: 280px;
  box-shadow: 0 -16px 48px rgba(0,0,0,0.3);
  z-index: 500;
}
.bf-cal.open { display: block; }
.bf-cal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
}
.bf-cal-title {
  font-family: var(--font-display);
  font-size: 15px;
  font-style: italic;
  color: var(--cream);
  letter-spacing: 0.5px;
}
.bf-cal-nav {
  width: 28px; height: 28px;
  border: 1px solid rgba(201,169,110,0.25);
  color: var(--gold);
  font-size: 14px;
  border-radius: 2px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.15s;
}
.bf-cal-nav:hover { background: rgba(201,169,110,0.1); }
.bf-cal-grid { display: grid; grid-template-columns: repeat(7,1fr); gap: 2px; }
.bf-cal-day-name {
  font-size: 9px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--smoke);
  text-align: center;
  padding: 4px 0 8px;
}
.bf-cal-day {
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  color: rgba(244,239,230,0.65);
  border-radius: 1px;
  cursor: pointer;
  transition: background 0.15s, color 0.15s;
}
.bf-cal-day:hover:not(.bf-cal-empty):not(.bf-cal-disabled) {
  background: rgba(201,169,110,0.15);
  color: var(--gold);
}
.bf-cal-day.bf-cal-selected { background: var(--gold); color: var(--forest); }
.bf-cal-day.bf-cal-today:not(.bf-cal-selected) { color: var(--gold); font-weight: 500; }
.bf-cal-day.bf-cal-empty,
.bf-cal-day.bf-cal-disabled { pointer-events: none; color: rgba(244,239,230,0.2); }

/* Guests dropdown */
.bf-guests {
  display: none;
  position: absolute;
  bottom: calc(100% + 1px);
  left: 0;
  background: var(--pine);
  border: 1px solid rgba(201,169,110,0.2);
  border-bottom: none;
  padding: 20px;
  min-width: 240px;
  box-shadow: 0 -16px 48px rgba(0,0,0,0.3);
  z-index: 500;
}
.bf-guests.open { display: block; }
.bf-guest-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 0;
  border-bottom: 1px solid rgba(201,169,110,0.08);
}
.bf-guest-row:last-child { border-bottom: none; }
.bf-guest-label {
  font-family: var(--font-display);
  font-size: 15px;
  color: var(--cream);
}
.bf-guest-sub {
  font-size: 11px;
  color: var(--smoke);
  display: block;
}
.bf-guest-counter { display:flex; align-items:center; gap:12px; }
.bf-guest-btn {
  width: 28px; height: 28px;
  border: 1px solid rgba(201,169,110,0.3);
  color: var(--gold);
  font-size: 16px;
  border-radius: 2px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.15s;
}
.bf-guest-btn:hover { background: rgba(201,169,110,0.1); }
.bf-guest-count {
  font-family: var(--font-display);
  font-size: 20px;
  color: var(--cream);
  min-width: 20px;
  text-align: center;
}

/* ══════════════════════════════════════════════════════════════
   WELCOME / INTRO SECTION
   ══════════════════════════════════════════════════════════════ */
.welcome-section {
  padding: var(--space-xl) 0;
  background: var(--parchment);
}
.welcome-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.welcome-text { }
.welcome-quote {
  font-family: var(--font-display);
  font-size: clamp(28px, 3.5vw, 44px);
  font-weight: 300;
  font-style: italic;
  color: var(--ink);
  line-height: 1.25;
  margin-bottom: 32px;
}
.welcome-quote strong { color: var(--fern); font-weight: 600; font-style: normal; }
.welcome-body {
  font-size: 16px;
  line-height: 1.85;
  color: var(--stone);
  margin-bottom: 32px;
}
.welcome-stats {
  display: flex;
  gap: 40px;
  padding-top: 32px;
  border-top: 1px solid var(--mist);
}
.welcome-stat-num {
  font-family: var(--font-display);
  font-size: 44px;
  font-weight: 300;
  color: var(--gold);
  line-height: 1;
}
.welcome-stat-label {
  font-size: 11px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--smoke);
  margin-top: 4px;
}
.welcome-visual {
  position: relative;
}
.welcome-img-main {
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
  border-radius: 2px;
}
.welcome-img-accent {
  position: absolute;
  bottom: -40px;
  left: -40px;
  width: 52%;
  aspect-ratio: 1/1;
  object-fit: cover;
  border: 6px solid var(--parchment);
  border-radius: 2px;
  box-shadow: var(--shadow-md);
}
.welcome-badge {
  position: absolute;
  top: 32px; right: -20px;
  background: var(--gold);
  color: var(--forest);
  padding: 20px;
  text-align: center;
  width: 110px;
}
.welcome-badge-num {
  font-family: var(--font-display);
  font-size: 36px;
  font-weight: 600;
  line-height: 1;
  display: block;
}
.welcome-badge-text {
  font-family: var(--font-body);
  font-size: 9px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  display: block;
  margin-top: 4px;
}

/* ══════════════════════════════════════════════════════════════
   HOTELS SECTION
   ══════════════════════════════════════════════════════════════ */
.hotels-section {
  padding: var(--space-xl) 0;
  background: var(--cream);
}
.hotels-header { text-align:center; margin-bottom:60px; }
.hotels-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
.hotel-card {
  position: relative;
  aspect-ratio: 4/3;
  border-radius: 2px;
  overflow: hidden;
  display: block;
  text-decoration: none;
}
.hotel-card--featured { grid-column: span 2; aspect-ratio: 21/8; }
.hotel-card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s var(--ease-out);
}
.hotel-card:hover .hotel-card-img { transform: scale(1.04); }
.hotel-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(11,26,14,0.8) 0%, rgba(11,26,14,0.1) 60%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 40px;
  transition: background 0.5s;
}
.hotel-card:hover .hotel-card-overlay {
  background: linear-gradient(to top, rgba(11,26,14,0.9) 0%, rgba(11,26,14,0.25) 60%);
}
.hotel-card-eyebrow {
  font-family: var(--font-body);
  font-size: 10px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 8px;
}
.hotel-card-name {
  font-family: var(--font-display);
  font-size: clamp(24px, 3vw, 40px);
  font-weight: 300;
  font-style: italic;
  color: var(--cream);
  line-height: 1.1;
}
.hotel-card-meta {
  font-family: var(--font-body);
  font-size: 12px;
  color: rgba(244,239,230,0.6);
  letter-spacing: 0.5px;
  margin-top: 8px;
}
.hotel-card-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 20px;
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.35s, transform 0.35s;
}
.hotel-card:hover .hotel-card-cta { opacity:1; transform:translateY(0); }

/* ══════════════════════════════════════════════════════════════
   ROOMS SECTION (homepage preview)
   ══════════════════════════════════════════════════════════════ */
.rooms-section {
  padding: var(--space-xl) 0;
  background: var(--forest);
}
.rooms-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 60px;
}
.rooms-header-right { text-align:right; }

/* Room card */
.room-card {
  position: relative;
  overflow: hidden;
  border-radius: 2px;
  display: block;
  text-decoration: none;
  background: var(--pine);
}
.room-card-img-wrap {
  position: relative;
  aspect-ratio: 3/2;
  overflow: hidden;
}
.room-card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s var(--ease-out);
}
.room-card:hover .room-card-img { transform: scale(1.06); }
.room-card-badge {
  position: absolute;
  top: 16px; left: 16px;
  background: var(--gold);
  color: var(--forest);
  font-family: var(--font-body);
  font-size: 9px;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 5px 10px;
  border-radius: 1px;
}
.room-card-body {
  padding: 24px 28px 32px;
}
.room-card-name {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 400;
  font-style: italic;
  color: var(--cream);
  margin-bottom: 12px;
}
.room-card-meta {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}
.room-meta-item {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  color: var(--smoke);
  letter-spacing: 0.3px;
}
.room-meta-icon {
  width: 14px; height: 14px;
  filter: brightness(0) invert(1);
  opacity: 0.4;
}
.room-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 28px;
  border-top: 1px solid rgba(201,169,110,0.1);
}
.room-price-from {
  font-size: 10px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--smoke);
}
.room-price-num {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 300;
  color: var(--gold);
  line-height: 1.2;
}
.room-card-btns { display:flex; gap:8px; }
.btn-saznaj {
  font-family: var(--font-body);
  font-size: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--smoke);
  border: 1px solid rgba(201,169,110,0.2);
  padding: 10px 16px;
  border-radius: 2px;
  transition: all 0.25s;
  display: inline-block;
}
.btn-saznaj:hover { color: var(--cream); border-color: rgba(201,169,110,0.5); }
.btn-rezervisi-sm {
  font-family: var(--font-body);
  font-size: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--forest);
  background: var(--gold);
  padding: 10px 16px;
  border-radius: 2px;
  transition: background 0.25s;
  display: inline-block;
}
.btn-rezervisi-sm:hover { background: var(--gold-light); }

/* Grid layout for rooms */
.rooms-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.rooms-grid--2col { grid-template-columns: repeat(2, 1fr); }

/* ══════════════════════════════════════════════════════════════
   FEATURE BAND (Full-width image + text overlay)
   ══════════════════════════════════════════════════════════════ */
.feature-band {
  position: relative;
  height: 600px;
  overflow: hidden;
  display: flex;
  align-items: center;
}
.feature-band-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.feature-band-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(11,26,14,0.85) 0%, rgba(11,26,14,0.2) 60%, transparent 100%);
}
.feature-band-content {
  position: relative;
  z-index: 1;
  max-width: 560px;
  padding: 0 48px;
}
.feature-band--right .feature-band-overlay {
  background: linear-gradient(270deg, rgba(11,26,14,0.85) 0%, rgba(11,26,14,0.2) 60%, transparent 100%);
}
.feature-band--right .feature-band-content {
  margin-left: auto;
}

/* ══════════════════════════════════════════════════════════════
   OFFERS / PACKAGES SECTION
   ══════════════════════════════════════════════════════════════ */
.offers-section { padding: var(--space-xl) 0; background: var(--parchment); }
.offers-header { margin-bottom: 60px; }

.ponuda-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }

.ponuda-card {
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: inherit;
  background: var(--white);
  border-radius: 2px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform 0.4s var(--ease-out), box-shadow 0.4s;
}
.ponuda-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-md);
}
.ponuda-img-wrap {
  position: relative;
  height: 260px;
  overflow: hidden;
}
.ponuda-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s var(--ease-out);
}
.ponuda-card:hover .ponuda-img { transform: scale(1.06); }
.ponuda-badge {
  position: absolute;
  top: 0; left: 0;
  background: var(--forest);
  color: var(--gold);
  font-family: var(--font-body);
  font-size: 9px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  padding: 8px 14px;
}
.ponuda-body {
  padding: 28px 28px 36px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex: 1;
}
.ponuda-icon { font-size: 28px; }
.ponuda-title {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 400;
  font-style: italic;
  color: var(--ink);
  line-height: 1.15;
}
.ponuda-rule { width: 32px; height: 1px; background: var(--gold); }
.ponuda-desc {
  font-size: 14px;
  line-height: 1.75;
  color: var(--stone);
}
.ponuda-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: auto;
  padding-top: 16px;
  border-top: 1px solid var(--cream-dark);
}
.ponuda-price {
  font-family: var(--font-display);
  font-size: 22px;
  color: var(--gold-dark);
}
.ponuda-cta {
  font-family: var(--font-body);
  font-size: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--fern);
  display: flex;
  align-items: center;
  gap: 6px;
  transition: gap 0.25s;
}
.ponuda-card:hover .ponuda-cta { gap: 10px; }

/* ══════════════════════════════════════════════════════════════
   AMENITIES / FEATURES GRID
   ══════════════════════════════════════════════════════════════ */
.amenities-section { padding: var(--space-xl) 0; background: var(--pine); }
.amenities-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: rgba(201,169,110,0.1);
  margin-top: 60px;
}
.amenity-item {
  background: var(--pine);
  padding: 40px 32px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: background 0.3s;
}
.amenity-item:hover { background: rgba(201,169,110,0.06); }
.amenity-icon-wrap {
  width: 52px; height: 52px;
  border: 1px solid rgba(201,169,110,0.25);
  border-radius: 2px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
}
.amenity-name {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 400;
  color: var(--cream);
  font-style: italic;
}
.amenity-desc { font-size: 13px; color: var(--smoke); line-height: 1.6; }

/* ══════════════════════════════════════════════════════════════
   ROOM DETAIL PAGE
   ══════════════════════════════════════════════════════════════ */
.room-hero {
  position: relative;
  height: 70vh;
  min-height: 480px;
  overflow: hidden;
}
.room-hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.room-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(11,26,14,0.4) 0%, rgba(11,26,14,0.6) 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 80px 48px;
}
.room-hero-eyebrow {
  font-size: 10px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
}
.room-hero-title {
  font-family: var(--font-display);
  font-size: clamp(40px, 6vw, 72px);
  font-weight: 300;
  font-style: italic;
  color: var(--cream);
  line-height: 1;
}
.room-hero-meta {
  display: flex;
  gap: 32px;
  margin-top: 20px;
  flex-wrap: wrap;
}
.room-hero-meta-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: rgba(244,239,230,0.75);
}
.room-hero-meta-icon {
  width: 16px; height: 16px;
  filter: brightness(0) invert(1);
  opacity: 0.65;
}

/* Room layout */
.room-layout {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 60px;
  padding: 80px 0;
  align-items: start;
}
.room-content { }
.room-section-title {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 400;
  font-style: italic;
  color: var(--ink);
  margin-bottom: 20px;
}
.room-desc {
  font-size: 16px;
  line-height: 1.85;
  color: var(--stone);
}
.room-amenities-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin-top: 32px;
}
.room-amenity {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 16px;
  background: var(--cream);
  border-radius: 2px;
}
.room-amenity-icon { width: 20px; height: 20px; }
.room-amenity-name { font-size: 14px; color: var(--stone); }

/* Gallery */
.room-gallery { display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px; margin-top: 40px; }
.room-gallery-img { width:100%; aspect-ratio:4/3; object-fit:cover; border-radius:1px; cursor:pointer; transition: opacity 0.25s; }
.room-gallery-img:hover { opacity: 0.85; }

/* Sidebar (booking) */
.room-sidebar {
  position: sticky;
  top: 100px;
  background: var(--white);
  border: 1px solid var(--mist);
  border-radius: 2px;
  overflow: hidden;
  box-shadow: var(--shadow-md);
}
.room-sidebar-header {
  background: var(--pine);
  padding: 28px;
}
.room-sidebar-price-from {
  font-size: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--smoke);
}
.room-sidebar-price-num {
  font-family: var(--font-display);
  font-size: 40px;
  font-weight: 300;
  color: var(--gold);
  line-height: 1.1;
}
.room-sidebar-body { padding: 28px; }
.room-sidebar-detail {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 0;
  border-bottom: 1px solid var(--cream-dark);
}
.room-sidebar-detail:last-of-type { border-bottom: none; }
.room-sidebar-detail-label {
  font-size: 11px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--smoke);
}
.room-sidebar-detail-value {
  font-family: var(--font-display);
  font-size: 17px;
  color: var(--ink);
}
.room-sidebar-cta { padding: 0 28px 28px; }

/* ══════════════════════════════════════════════════════════════
   ACCOMMODATION LISTING PAGE
   ══════════════════════════════════════════════════════════════ */
.page-hero {
  position: relative;
  height: 55vh;
  min-height: 420px;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  padding-bottom: 100px;
}
.page-hero-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.page-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(11,26,14,0.8) 0%, rgba(11,26,14,0.25) 60%);
}
.page-hero-content { position: relative; z-index: 1; }
.page-hero-title {
  font-family: var(--font-display);
  font-size: clamp(44px, 6vw, 80px);
  font-weight: 300;
  font-style: italic;
  color: var(--cream);
  line-height: 1;
}

/* Filter bar */
.filter-bar {
  background: var(--white);
  border-bottom: 1px solid var(--cream-dark);
  padding: 0;
  position: sticky;
  top: 88px;
  z-index: 50;
}
.filter-bar-inner {
  display: flex;
  align-items: center;
  gap: 0;
  overflow-x: auto;
}
.filter-btn {
  font-family: var(--font-body);
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--smoke);
  padding: 18px 24px;
  border-bottom: 2px solid transparent;
  cursor: pointer;
  white-space: nowrap;
  transition: color 0.2s, border-color 0.2s;
}
.filter-btn:hover { color: var(--fern); }
.filter-btn.active { color: var(--fern); border-bottom-color: var(--gold); }

/* Rooms listing */
.smestaj-section { padding: var(--space-xl) 0; }
.smestaj-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}

/* ══════════════════════════════════════════════════════════════
   SOBA CARD (listing page version)
   ══════════════════════════════════════════════════════════════ */
.soba-wrap {
  background: var(--white);
  border-radius: 2px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  transition: box-shadow 0.4s, transform 0.4s var(--ease-out);
}
.soba-wrap:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}
.soba-img-wrap { position: relative; height: 260px; overflow: hidden; }
.soba-img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.7s var(--ease-out);
}
.soba-wrap:hover .soba-img { transform: scale(1.04); }
.soba-featured-badge {
  position: absolute;
  top: 16px; right: 16px;
  background: var(--gold);
  color: var(--forest);
  font-size: 9px;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 5px 10px;
}
.soba-body { padding: 28px 28px 0; }
.soba-naziv {
  font-family: var(--font-display);
  font-size: 26px;
  font-weight: 400;
  font-style: italic;
  color: var(--ink);
  margin-bottom: 12px;
}
.soba-meta {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}
.soba-meta-item { display:flex; align-items:center; gap:6px; }
.soba-meta-icon { width: 14px; height: 14px; opacity: 0.4; }
.soba-meta-text { font-size: 13px; color: var(--smoke); }
.soba-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 28px 24px;
  margin-top: 16px;
  border-top: 1px solid var(--cream-dark);
}
.soba-btns { display: flex; gap: 8px; }
.btn-saznaj--full {
  font-family: var(--font-body);
  font-size: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--stone);
  border: 1px solid var(--mist);
  padding: 10px 16px;
  border-radius: 2px;
  transition: all 0.25s;
}
.btn-saznaj--full:hover { color: var(--fern); border-color: var(--sage); }
.btn-rezervisi-soba {
  font-family: var(--font-body);
  font-size: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--forest);
  background: var(--gold);
  padding: 10px 18px;
  border-radius: 2px;
  transition: background 0.25s;
}
.btn-rezervisi-soba:hover { background: var(--gold-light); }

/* ══════════════════════════════════════════════════════════════
   FOOTER
   ══════════════════════════════════════════════════════════════ */
.site-footer {
  background: var(--forest);
  border-top: 1px solid rgba(201,169,110,0.15);
}
.footer-top {
  padding: 80px 0 60px;
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 60px;
}
.footer-brand {}
.footer-logo-wrap {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 24px;
}
.footer-logo-img { width: 42px; height: auto; }
.footer-logo-text {
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--cream);
  line-height: 1.4;
}
.footer-tagline {
  font-family: var(--font-display);
  font-size: 18px;
  font-style: italic;
  color: rgba(244,239,230,0.5);
  margin-bottom: 20px;
  line-height: 1.4;
}
.footer-contact-item {
  font-size: 13px;
  color: var(--smoke);
  margin-bottom: 6px;
  line-height: 1.6;
}
.footer-contact-item a { color: var(--smoke); transition: color 0.2s; }
.footer-contact-item a:hover { color: var(--gold); }
.footer-social { display:flex; gap:12px; margin-top:20px; }
.footer-social-btn {
  width: 36px; height: 36px;
  border: 1px solid rgba(201,169,110,0.2);
  border-radius: 2px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: border-color 0.25s, background 0.25s;
}
.footer-social-btn:hover { border-color: var(--gold); background: rgba(201,169,110,0.08); }
.footer-social-btn img { width: 16px; height: 16px; filter: brightness(0) invert(0.7); }
.footer-social-btn:hover img { filter: brightness(0) saturate(100%) invert(73%) sepia(55%) saturate(400%) hue-rotate(8deg); }

.footer-col-title {
  font-family: var(--font-body);
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 24px;
}
.footer-nav-link {
  display: block;
  font-size: 14px;
  color: var(--smoke);
  margin-bottom: 12px;
  transition: color 0.2s, padding-left 0.2s;
}
.footer-nav-link:hover { color: var(--cream); padding-left: 4px; }

.footer-bottom {
  border-top: 1px solid rgba(201,169,110,0.1);
  padding: 24px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.footer-copyright {
  font-size: 12px;
  color: rgba(201,169,110,0.35);
  letter-spacing: 0.5px;
}
.footer-grb { width: 32px; height: auto; filter: brightness(0) invert(0.3); }

/* ══════════════════════════════════════════════════════════════
   OFFERS / PACKAGES PAGE
   ══════════════════════════════════════════════════════════════ */
.offer-detail-section { padding: var(--space-xl) 0; }
.offer-detail-grid {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 60px;
  align-items: start;
}
.offer-includes {
  background: var(--cream);
  border-radius: 2px;
  padding: 32px;
  margin-top: 32px;
}
.offer-include-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 10px 0;
  border-bottom: 1px solid rgba(201,169,110,0.15);
  font-size: 15px;
  color: var(--stone);
}
.offer-include-item::before {
  content: '✓';
  color: var(--fern);
  font-weight: 600;
  flex-shrink: 0;
}

/* ══════════════════════════════════════════════════════════════
   RESPONSIVE
   ══════════════════════════════════════════════════════════════ */
/* ══════════════════════════════════════════════════════════════
   RATE CARDS (cenovnik / rate planovi)
   ══════════════════════════════════════════════════════════════ */
.rate-card {
  background: var(--white);
  border-radius: 2px;
  padding: 28px;
  border: 1px solid var(--mist);
  display: flex;
  flex-direction: column;
  gap: 0;
  position: relative;
  transition: box-shadow 0.3s var(--ease-out), transform 0.3s var(--ease-out);
  overflow: hidden;
}
.rate-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}
.rate-card--featured {
  border-color: var(--gold);
  border-width: 2px;
}
.rate-card--featured::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold-dark), var(--gold-light));
}
.rate-featured-badge {
  font-family: var(--font-body);
  font-size: 9px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--forest);
  background: var(--gold);
  padding: 5px 10px;
  display: inline-block;
  margin-bottom: 16px;
  align-self: flex-start;
  border-radius: 1px;
}
.rate-board-tag {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--cream-dark);
  margin-bottom: 16px;
}
.rate-board-icon { font-size: 28px; flex-shrink: 0; }
.rate-board-label {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 400;
  font-style: italic;
  color: var(--ink);
  line-height: 1.1;
}
.rate-board-code {
  font-size: 11px;
  color: var(--smoke);
  letter-spacing: 0.5px;
  margin-top: 2px;
}
.rate-name {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 400;
  color: var(--ink);
  margin-bottom: 12px;
  line-height: 1.2;
}
.rate-desc {
  font-size: 14px;
  line-height: 1.7;
  color: var(--stone);
  margin-bottom: 16px;
  flex: 1;
}
.rate-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 20px;
}
.rate-features li {
  font-size: 13px;
  color: var(--stone);
  display: flex;
  align-items: flex-start;
  gap: 8px;
  line-height: 1.5;
}
.rate-feature-icon {
  color: var(--gold);
  font-size: 14px;
  flex-shrink: 0;
  margin-top: 1px;
}
.rate-cancel {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--fern);
  background: rgba(42,82,50,0.06);
  border-radius: 2px;
  padding: 8px 12px;
  margin-bottom: 16px;
}
.rate-pms-code {
  font-size: 11px;
  color: var(--smoke);
  letter-spacing: 0.5px;
}
.rate-footer {
  margin-top: auto;
  padding-top: 16px;
  border-top: 1px solid var(--cream-dark);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 8px;
}
.rate-book-btn {
  font-family: var(--font-body);
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--fern);
  display: flex;
  align-items: center;
  gap: 6px;
  transition: gap 0.2s, color 0.2s;
}
.rate-book-btn:hover { color: var(--gold); gap: 10px; }

/* ══════════════════════════════════════════════════════════════
   PKG ROW (cenovnik — horizontalni red za paket)
   ══════════════════════════════════════════════════════════════ */
.pkg-row {
  display: grid;
  grid-template-columns: 280px 1fr 220px;
  gap: 0;
  background: var(--white);
  border: 1px solid var(--mist);
  border-radius: 2px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: box-shadow 0.3s, transform 0.3s var(--ease-out);
}
.pkg-row:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}
.pkg-row-img {
  position: relative;
  overflow: hidden;
  min-height: 260px;
}
.pkg-row-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease-out);
}
.pkg-row:hover .pkg-row-img img { transform: scale(1.04); }
.pkg-row-body {
  padding: 32px 36px;
  display: flex;
  flex-direction: column;
  gap: 0;
  border-right: 1px solid var(--cream-dark);
}
.pkg-row-header {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
}
.pkg-row-title {
  font-family: var(--font-display);
  font-size: 26px;
  font-weight: 400;
  font-style: italic;
  color: var(--ink);
  line-height: 1.1;
}
.pkg-row-desc {
  font-size: 14px;
  line-height: 1.75;
  color: var(--stone);
  margin: 8px 0 16px;
}
.pkg-row-includes {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 5px;
  margin-bottom: 16px;
}
.pkg-row-includes li {
  font-size: 13px;
  color: var(--stone);
  padding-left: 16px;
  position: relative;
  line-height: 1.5;
}
.pkg-row-includes li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--fern);
  font-size: 11px;
  font-weight: 600;
}
.pkg-row-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: auto;
}
.pkg-meta-tag {
  font-size: 11px;
  color: var(--smoke);
  background: var(--cream);
  padding: 4px 10px;
  border-radius: 1px;
  letter-spacing: 0.3px;
}
.pkg-row-cta {
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: var(--parchment);
}
.pkg-row-price-label {
  font-size: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--smoke);
  margin-bottom: 6px;
}
.pkg-row-price {
  font-family: var(--font-display);
  font-size: 34px;
  font-weight: 300;
  color: var(--gold-dark);
  line-height: 1.1;
}
.pkg-row-price-unit {
  font-size: 12px;
  color: var(--smoke);
  margin-bottom: 4px;
}

/* ══════════════════════════════════════════════════════════════
   AKTIVNOSTI CARDS
   ══════════════════════════════════════════════════════════════ */
.akt-card {
  background: var(--white);
  border-radius: 2px;
  padding: 32px;
  border: 1px solid var(--mist);
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  gap: 0;
  transition: box-shadow 0.3s, transform 0.3s var(--ease-out);
}
.akt-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}
.akt-card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
}
.akt-icon { font-size: 36px; }
.akt-tip {
  font-size: 9px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--forest);
  background: var(--cream);
  padding: 4px 8px;
  border-radius: 1px;
  display: block;
  margin-bottom: 4px;
  text-align: right;
}
.akt-trajanje {
  font-size: 12px;
  color: var(--smoke);
  display: block;
  text-align: right;
}
.akt-naziv {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 400;
  font-style: italic;
  color: var(--ink);
  margin-bottom: 4px;
  line-height: 1.1;
}
.akt-kratko {
  font-size: 12px;
  color: var(--gold-dark);
  letter-spacing: 0.5px;
  margin-bottom: 12px;
  font-weight: 500;
}
.akt-rule {
  width: 32px;
  height: 1px;
  background: var(--gold);
  margin-bottom: 14px;
}
.akt-opis {
  font-size: 14px;
  line-height: 1.75;
  color: var(--stone);
  margin-bottom: 20px;
  flex: 1;
}
.akt-features {
  list-style: none;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6px;
}
.akt-features li {
  font-size: 12px;
  color: var(--stone);
  padding-left: 14px;
  position: relative;
  line-height: 1.5;
}
.akt-features li::before {
  content: '·';
  position: absolute;
  left: 4px;
  color: var(--gold);
  font-weight: 700;
}

/* ══════════════════════════════════════════════════════════════
   HELPER: vutara_booking_url_with_rate
   ══════════════════════════════════════════════════════════════ */

/* ══════════════════════════════════════════════════════════════
   RESPONSIVE — new components
   ══════════════════════════════════════════════════════════════ */
@media (max-width: 1200px) {
  .pkg-row { grid-template-columns: 220px 1fr 200px; }
}
@media (max-width: 900px) {
  .pkg-row { grid-template-columns: 1fr; }
  .pkg-row-img { min-height: 200px; }
  .pkg-row-cta { border-right: none; border-top: 1px solid var(--cream-dark); }
  .rest-row { grid-template-columns: 1fr !important; }
  .rest-row > div[style*="order:2"] { order: 0 !important; }
  .rest-row > div[style*="order:1"] { order: 0 !important; }
  .akt-features { grid-template-columns: 1fr; }
}

@media (max-width: 1200px) {
  .container { padding: 0 32px; }
  .bf-row { grid-template-columns: 1fr 1fr 1fr auto; }
  .bf-field--promo { display: none; }
  .amenities-grid { grid-template-columns: repeat(2, 1fr); }
  .ponuda-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 40px; }
}

@media (max-width: 900px) {
  .container { padding: 0 24px; }
  .header-nav { display: none; }
  .burger-btn { display: flex; }
  .welcome-inner { grid-template-columns: 1fr; }
  .welcome-img-accent, .welcome-badge { display: none; }
  .hotels-grid { grid-template-columns: 1fr; }
  .hotel-card--featured { grid-column: span 1; aspect-ratio: 4/3; }
  .rooms-grid { grid-template-columns: 1fr; }
  .smestaj-grid { grid-template-columns: 1fr; }
  .room-layout { grid-template-columns: 1fr; }
  .room-sidebar { position: static; }
  .offer-detail-grid { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .rooms-header { flex-direction: column; gap: 24px; }
  .rooms-header-right { text-align: left; }
  .bf-row { grid-template-columns: 1fr 1fr; gap: 0; }
  .bf-field--cta { grid-column: span 2; border-right: none; border-top: 1px solid rgba(201,169,110,0.12); }
  .ponuda-grid { grid-template-columns: 1fr; }
}

@media (max-width: 600px) {
  :root { --space-xl: 80px; }
  .container { padding: 0 20px; }
  .hero-content { padding: 100px 24px 180px; }
  .hero-cta-row { flex-direction: column; }
  .bf-row { grid-template-columns: 1fr; }
  .bf-field--cta { grid-column: span 1; }
  .bf-field { border-right: none; border-bottom: 1px solid rgba(201,169,110,0.12); }
  .footer-top { grid-template-columns: 1fr; gap: 32px; }
  .amenities-grid { grid-template-columns: 1fr 1fr; }
  .room-amenities-grid { grid-template-columns: 1fr; }
  .room-gallery { grid-template-columns: repeat(2, 1fr); }
  .header-logo-text { display: none; }
}

/* ══════════════════════════════════════════════════════════════
   ROOM AVAILABILITY CALENDAR  (#room-availability-cal)
   ══════════════════════════════════════════════════════════════ */
.room-availability-cal {
  background: var(--white);
  border: 1px solid var(--mist);
  border-radius: 2px;
  overflow: hidden;
}
.rac-loading {
  padding: 32px;
  text-align: center;
  color: var(--smoke);
  font-size: 14px;
}
.rac-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 20px;
  background: var(--pine);
  border-bottom: 1px solid rgba(201,169,110,0.15);
}
.rac-title {
  font-family: var(--font-display);
  font-size: 17px;
  font-style: italic;
  color: var(--cream);
  letter-spacing: 0.3px;
}
.rac-nav {
  width: 32px; height: 32px;
  border: 1px solid rgba(201,169,110,0.3);
  color: var(--gold);
  font-size: 18px;
  border-radius: 2px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  background: transparent;
  transition: background 0.15s;
}
.rac-nav:hover { background: rgba(201,169,110,0.1); }

.rac-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 1px;
  background: var(--cream-dark);
  border-bottom: 1px solid var(--cream-dark);
}
.rac-day-name {
  background: var(--cream);
  padding: 8px 4px;
  text-align: center;
  font-size: 10px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--smoke);
}
.rac-day {
  background: var(--white);
  padding: 6px 4px;
  min-height: 56px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
  position: relative;
  transition: background 0.15s;
}
.rac-empty { background: var(--cream); }
.rac-day.rac-free       { background: #f0faf0; }
.rac-day.rac-taken      { background: #fdf2f2; }
.rac-day.rac-unknown    { background: var(--white); }
.rac-day.rac-past       { background: var(--cream); opacity: 0.5; }
.rac-day.rac-selected   { background: var(--pine) !important; }
.rac-day.rac-inrange    { background: rgba(42,82,50,0.08); }
.rac-day.rac-minstay    { background: #fffbf0; }

.rac-day.rac-free:hover:not(.rac-past)   { background: #d4f0d4; }
.rac-day.rac-unknown:hover:not(.rac-past) { background: var(--cream); }

.rac-num {
  font-size: 13px;
  color: var(--stone);
  font-weight: 400;
  line-height: 1;
}
.rac-day.rac-taken    .rac-num { color: #c0392b; }
.rac-day.rac-free     .rac-num { color: var(--fern); }
.rac-day.rac-selected .rac-num { color: var(--gold); font-weight: 500; }
.rac-day.rac-past     .rac-num { color: var(--mist); }

.rac-price {
  font-size: 10px;
  color: var(--gold-dark);
  letter-spacing: 0.3px;
  line-height: 1;
}
.rac-day.rac-selected .rac-price { color: rgba(201,169,110,0.7); }

.rac-ms {
  font-size: 9px;
  background: #f5e6c8;
  color: #8a6020;
  padding: 1px 3px;
  border-radius: 1px;
  letter-spacing: 0.3px;
}

/* Taken cross overlay */
.rac-day.rac-taken::after {
  content: '';
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    -45deg,
    transparent,
    transparent 4px,
    rgba(192,57,43,0.06) 4px,
    rgba(192,57,43,0.06) 5px
  );
  pointer-events: none;
}

/* Legend */
.rac-legend {
  display: flex;
  gap: 20px;
  padding: 12px 20px;
  background: var(--cream);
  border-top: 1px solid var(--cream-dark);
  flex-wrap: wrap;
}
.rac-leg-item {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  color: var(--smoke);
  letter-spacing: 0.3px;
}
.rac-leg-dot {
  width: 12px; height: 12px;
  border-radius: 1px;
  flex-shrink: 0;
}
.rac-leg-dot.rac-free   { background: #d4f0d4; border: 1px solid #a8d5a8; }
.rac-leg-dot.rac-taken  { background: #fad7d7; border: 1px solid #e8a0a0; }
.rac-leg-dot.rac-minstay{ background: #f5e6c8; border: 1px solid #d4b070; }

@media (max-width: 600px) {
  .rac-day { min-height: 44px; padding: 4px 2px; }
  .rac-num { font-size: 11px; }
  .rac-price { display: none; }
}
