/* =============================================
   HOTEL LANE - Main Stylesheet
   Modern, responsive, SEO-friendly
   ============================================= */

/* ---- Google Fonts ---- */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,600;0,700;1,400&family=Inter:wght@300;400;500;600&display=swap');

/* ---- CSS Variables ---- */
:root {
  --green-900: #0d2b1e;
  --green-800: #1b4332;
  --green-700: #2d6a4f;
  --green-600: #40916c;
  --green-100: #d8f3dc;
  --green-50:  #f0faf2;
  --gold:      #c9973b;
  --gold-light:#e8c07a;
  --gold-dark: #a07530;
  --white:     #ffffff;
  --off-white: #fafaf8;
  --gray-50:   #f9fafb;
  --gray-100:  #f3f4f6;
  --gray-200:  #e5e7eb;
  --gray-300:  #d1d5db;
  --gray-400:  #9ca3af;
  --gray-500:  #6b7280;
  --gray-600:  #4b5563;
  --gray-700:  #374151;
  --gray-800:  #1f2937;
  --gray-900:  #111827;
  --text:      #1c2b1e;
  --text-muted:#6b7280;
  --border:    #e2e8e4;
  --shadow-sm: 0 1px 3px rgba(0,0,0,.08), 0 1px 2px rgba(0,0,0,.06);
  --shadow:    0 4px 16px rgba(0,0,0,.10);
  --shadow-lg: 0 10px 40px rgba(0,0,0,.14);
  --shadow-xl: 0 20px 60px rgba(0,0,0,.18);
  --radius-sm: 8px;
  --radius:    12px;
  --radius-lg: 20px;
  --radius-xl: 32px;
  --transition:.25s ease;
  --nav-h:     72px;
}

/* ---- Reset & Base ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  font-weight: 400;
  line-height: 1.65;
  color: var(--text);
  background: var(--off-white);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font: inherit; }
input, select, textarea { font: inherit; }
h1,h2,h3,h4,h5,h6 { font-family: 'Playfair Display', Georgia, serif; line-height: 1.25; color: var(--text); }

/* ---- Typography ---- */
h1 { font-size: clamp(2rem, 5vw, 3.5rem); font-weight: 700; }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.5rem); font-weight: 600; }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.75rem); font-weight: 600; }
h4 { font-size: 1.125rem; font-weight: 600; }
p { margin-bottom: 1rem; }
p:last-child { margin-bottom: 0; }

/* ---- Layout ---- */
.container { max-width: 1240px; margin: 0 auto; padding: 0 24px; }
.section { padding: 96px 0; }
.section-sm { padding: 64px 0; }
.section-header { text-align: center; margin-bottom: 56px; }
.section-header h2 { margin-bottom: 12px; }
.section-header p { color: var(--text-muted); font-size: 1.125rem; max-width: 560px; margin: 0 auto; }
.section-label {
  display: inline-block;
  font-family: 'Inter', sans-serif;
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 10px;
}

/* ---- Navigation ---- */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  height: var(--nav-h);
  display: flex; align-items: center;
  transition: background var(--transition), box-shadow var(--transition), backdrop-filter var(--transition);
}
.nav.transparent { background: transparent; }
.nav.scrolled {
  background: rgba(27,67,50,.97);
  backdrop-filter: blur(12px);
  box-shadow: 0 2px 20px rgba(0,0,0,.2);
}
.nav-inner {
  max-width: 1240px; margin: 0 auto; padding: 0 24px;
  width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 24px;
}
.nav-logo { display: flex; align-items: center; gap: 12px; }
.nav-logo img { height: 44px; width: auto; }
.nav-logo-text { color: #fff; }
.nav-logo-text strong { display: block; font-family: 'Playfair Display', serif; font-size: 1.25rem; line-height: 1; }
.nav-logo-text span { font-size: .7rem; letter-spacing: .1em; text-transform: uppercase; color: var(--gold-light); opacity: .9; }
.nav-links { display: flex; align-items: center; gap: 4px; }
.nav-links a {
  color: rgba(255,255,255,.88);
  font-size: .9rem; font-weight: 500;
  padding: 6px 14px; border-radius: 6px;
  transition: color var(--transition), background var(--transition);
}
.nav-links a:hover, .nav-links a.active { color: #fff; background: rgba(255,255,255,.12); }
.nav-right { display: flex; align-items: center; gap: 10px; }
.nav-lang {
  color: rgba(255,255,255,.8); font-size: .85rem; font-weight: 600;
  padding: 5px 12px; border: 1px solid rgba(255,255,255,.3); border-radius: 20px;
  transition: var(--transition);
}
.nav-lang:hover { background: rgba(255,255,255,.15); color: #fff; border-color: rgba(255,255,255,.5); }
.nav-book {
  background: var(--gold); color: var(--green-900) !important;
  font-weight: 600; font-size: .875rem; padding: 8px 20px; border-radius: 6px;
  transition: var(--transition);
}
.nav-book:hover { background: var(--gold-light) !important; }
.nav-burger {
  display: none; flex-direction: column; gap: 5px; padding: 6px; border-radius: 6px;
  transition: var(--transition);
}
.nav-burger span { display: block; width: 24px; height: 2px; background: #fff; border-radius: 2px; transition: var(--transition); }
.nav-burger:hover { background: rgba(255,255,255,.1); }

/* Mobile nav */
.nav-mobile {
  display: none; position: fixed; inset: 0; z-index: 999;
  background: var(--green-800);
  flex-direction: column; align-items: center; justify-content: center; gap: 24px;
  padding: 80px 24px 40px;
}
.nav-mobile.open { display: flex; }
.nav-mobile a {
  color: rgba(255,255,255,.88); font-size: 1.4rem; font-family: 'Playfair Display', serif;
  transition: color var(--transition);
}
.nav-mobile a:hover { color: var(--gold-light); }
.nav-mobile .nav-lang-mobile {
  margin-top: 16px; color: rgba(255,255,255,.6); font-size: 1rem;
  border: 1px solid rgba(255,255,255,.3); border-radius: 20px; padding: 8px 20px;
}
.nav-mobile-close {
  position: absolute; top: 20px; right: 24px;
  color: #fff; font-size: 1.5rem; padding: 8px; border-radius: 6px;
  transition: var(--transition);
}
.nav-mobile-close:hover { background: rgba(255,255,255,.1); }

/* ---- Hero ---- */
.hero {
  position: relative; min-height: 100svh;
  display: flex; align-items: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0; z-index: 0;
  background-size: cover; background-position: center; background-repeat: no-repeat;
}
.hero-bg::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(13,43,30,.72) 0%, rgba(27,67,50,.55) 50%, rgba(13,43,30,.40) 100%);
}
.hero-content {
  position: relative; z-index: 1;
  max-width: 1240px; margin: 0 auto; padding: 0 24px;
  padding-top: var(--nav-h);
  width: 100%;
}
.hero-text { max-width: 680px; }
.hero-text .section-label { color: var(--gold-light); }
.hero-text h1 { color: #fff; margin-bottom: 16px; }
.hero-text p { color: rgba(255,255,255,.85); font-size: 1.15rem; margin-bottom: 32px; max-width: 520px; }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 48px; }

/* Booking widget */
.booking-widget {
  background: rgba(255,255,255,.97);
  backdrop-filter: blur(8px);
  border-radius: var(--radius-lg);
  padding: 28px 32px;
  box-shadow: var(--shadow-xl);
  max-width: 860px;
  border: 1px solid rgba(255,255,255,.6);
}
.booking-widget h3 {
  font-size: 1rem; font-family: 'Inter', sans-serif;
  font-weight: 600; text-transform: uppercase; letter-spacing: .08em;
  color: var(--green-800); margin-bottom: 20px;
}
.booking-grid {
  display: grid; grid-template-columns: 1fr 1fr 1fr 1fr auto; gap: 16px; align-items: end;
}
.booking-field label {
  display: block; font-size: .8rem; font-weight: 600;
  text-transform: uppercase; letter-spacing: .06em;
  color: var(--gray-600); margin-bottom: 6px;
}
.booking-field input, .booking-field select {
  width: 100%; padding: 10px 14px; border: 1.5px solid var(--border);
  border-radius: var(--radius-sm); background: var(--white);
  font-size: .95rem; color: var(--text);
  transition: border-color var(--transition), box-shadow var(--transition);
  appearance: none;
}
.booking-field input:focus, .booking-field select:focus {
  outline: none; border-color: var(--green-700); box-shadow: 0 0 0 3px rgba(45,106,79,.12);
}
.booking-field .guests-inputs { display: flex; gap: 8px; }
.booking-field .guests-inputs input { width: 50%; }
.booking-nights {
  font-size: .8rem; color: var(--gray-500); margin-top: 6px;
  font-weight: 500;
}

/* ---- Buttons ---- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 12px 28px; border-radius: var(--radius-sm);
  font-weight: 600; font-size: .95rem; line-height: 1;
  transition: var(--transition); cursor: pointer;
  white-space: nowrap;
}
.btn-primary {
  background: var(--green-800); color: #fff;
  box-shadow: 0 2px 8px rgba(27,67,50,.25);
}
.btn-primary:hover { background: var(--green-700); box-shadow: 0 4px 16px rgba(27,67,50,.35); transform: translateY(-1px); }
.btn-accent {
  background: var(--gold); color: var(--green-900);
  box-shadow: 0 2px 8px rgba(201,151,59,.3);
}
.btn-accent:hover { background: var(--gold-light); box-shadow: 0 4px 16px rgba(201,151,59,.4); transform: translateY(-1px); }
.btn-outline-white {
  background: transparent; color: #fff;
  border: 2px solid rgba(255,255,255,.7);
}
.btn-outline-white:hover { background: rgba(255,255,255,.15); border-color: #fff; }
.btn-outline-green {
  background: transparent; color: var(--green-800);
  border: 2px solid var(--green-800);
}
.btn-outline-green:hover { background: var(--green-800); color: #fff; }
.btn-search {
  background: var(--green-800); color: #fff;
  padding: 12px 24px; border-radius: var(--radius-sm);
  font-size: .95rem; font-weight: 600; height: 44px;
  white-space: nowrap; border: none; cursor: pointer;
  transition: var(--transition); display: flex; align-items: center; gap: 6px;
}
.btn-search:hover { background: var(--green-700); }
.btn-sm { padding: 8px 18px; font-size: .875rem; }
.btn-lg { padding: 15px 36px; font-size: 1.05rem; }

/* ---- Features Bar ---- */
.features-bar {
  background: var(--green-800); color: #fff;
  padding: 28px 0;
}
.features-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 32px;
}
.feature-item {
  display: flex; align-items: center; gap: 14px;
}
.feature-icon {
  width: 44px; height: 44px; background: rgba(255,255,255,.12);
  border-radius: 10px; display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  color: var(--gold-light);
}
.feature-icon svg { width: 22px; height: 22px; }
.feature-text strong { display: block; font-size: .95rem; font-family: 'Inter', sans-serif; }
.feature-text span { font-size: .8rem; color: rgba(255,255,255,.65); }

/* ---- Cards ---- */
.card {
  background: var(--white); border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm); overflow: hidden;
  transition: transform var(--transition), box-shadow var(--transition);
  border: 1px solid var(--border);
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }

/* Room Card */
.room-card { display: flex; flex-direction: column; }
.room-card-img {
  position: relative; overflow: hidden; aspect-ratio: 16/10;
}
.room-card-img img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .5s ease;
}
.room-card:hover .room-card-img img { transform: scale(1.05); }
.room-card-badge {
  position: absolute; top: 12px; left: 12px;
  background: var(--green-800); color: #fff;
  font-size: .72rem; font-weight: 600; padding: 4px 10px; border-radius: 20px;
  letter-spacing: .05em; text-transform: uppercase;
}
.room-card-badge.apartment { background: var(--gold); color: var(--green-900); }
.room-card-badge.lux { background: var(--green-700); }
.room-card-body { padding: 20px 24px; flex: 1; display: flex; flex-direction: column; }
.room-card-body h3 { font-size: 1.15rem; margin-bottom: 8px; }
.room-card-meta {
  display: flex; gap: 16px; margin-bottom: 14px; flex-wrap: wrap;
}
.room-card-meta span {
  font-size: .8rem; color: var(--text-muted);
  display: flex; align-items: center; gap: 5px;
}
.room-card-meta svg { width: 14px; height: 14px; color: var(--green-600); }
.room-card-footer {
  margin-top: auto; padding-top: 16px;
  border-top: 1px solid var(--border);
  display: flex; align-items: center; justify-content: space-between; gap: 8px;
}
.room-price { }
.room-price small { display: block; font-size: .75rem; color: var(--text-muted); }
.room-price strong { font-size: 1.25rem; color: var(--green-800); font-family: 'Playfair Display', serif; }
.room-price span { font-size: .8rem; color: var(--text-muted); }

/* Destination Card */
.dest-card { position: relative; overflow: hidden; border-radius: var(--radius-lg); }
.dest-card-img { aspect-ratio: 4/3; overflow: hidden; }
.dest-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.dest-card:hover .dest-card-img img { transform: scale(1.07); }
.dest-card-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(0deg, rgba(13,43,30,.85) 0%, rgba(13,43,30,.2) 60%, transparent 100%);
  display: flex; flex-direction: column; justify-content: flex-end;
  padding: 24px;
}
.dest-card-overlay h3 { color: #fff; font-size: 1.25rem; margin-bottom: 6px; }
.dest-card-overlay p { color: rgba(255,255,255,.78); font-size: .85rem; line-height: 1.5; margin-bottom: 14px; }
.dest-card-link {
  display: inline-flex; align-items: center; gap: 6px;
  color: var(--gold-light); font-size: .85rem; font-weight: 600;
  transition: gap var(--transition);
}
.dest-card:hover .dest-card-link { gap: 10px; }

/* Offer Card */
.offer-card { display: flex; flex-direction: column; }
.offer-card-img { position: relative; overflow: hidden; aspect-ratio: 16/9; }
.offer-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.offer-card:hover .offer-card-img img { transform: scale(1.05); }
.offer-tag {
  position: absolute; top: 12px; right: 12px;
  background: var(--gold); color: var(--green-900);
  font-size: .72rem; font-weight: 700; padding: 4px 10px; border-radius: 20px;
  letter-spacing: .04em; text-transform: uppercase;
}
.offer-card-body { padding: 20px 24px; flex: 1; display: flex; flex-direction: column; }
.offer-card-body h3 { font-size: 1.1rem; margin-bottom: 8px; }
.offer-date { font-size: .8rem; color: var(--gold-dark); font-weight: 500; margin-bottom: 8px; display: flex; align-items: center; gap: 5px; }
.offer-card-body p { color: var(--text-muted); font-size: .9rem; margin-bottom: 14px; flex: 1; }
.offer-card-footer { display: flex; align-items: center; justify-content: space-between; margin-top: auto; }
.offer-price { font-size: .85rem; color: var(--text-muted); }
.offer-price strong { color: var(--green-800); font-size: 1.1rem; }

/* ---- Grid Layouts ---- */
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 28px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.grid-2-5 { display: grid; grid-template-columns: 1fr 1fr 1fr 1fr 1fr; gap: 28px; }

/* ---- About Section ---- */
.about-section { background: var(--white); }
.about-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.about-images { position: relative; }
.about-img-main { border-radius: var(--radius-lg); overflow: hidden; aspect-ratio: 4/5; box-shadow: var(--shadow-lg); }
.about-img-main img { width: 100%; height: 100%; object-fit: cover; }
.about-img-secondary {
  position: absolute; bottom: -24px; right: -24px;
  width: 55%; border-radius: var(--radius); overflow: hidden;
  aspect-ratio: 4/3; box-shadow: var(--shadow-xl);
  border: 4px solid var(--white);
}
.about-img-secondary img { width: 100%; height: 100%; object-fit: cover; }
.about-content .section-label { display: block; }
.about-content h2 { margin-bottom: 20px; }
.about-content p { color: var(--text-muted); margin-bottom: 16px; }
.about-stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; margin-top: 40px; }
.stat-item { text-align: center; padding: 20px 12px; background: var(--green-50); border-radius: var(--radius); border: 1px solid var(--green-100); }
.stat-item strong { display: block; font-family: 'Playfair Display', serif; font-size: 1.4rem; color: var(--green-800); }
.stat-item span { font-size: .78rem; color: var(--text-muted); text-transform: uppercase; letter-spacing: .05em; }

/* ---- Testimonials ---- */
.testimonials-section { background: var(--green-800); }
.testimonials-section .section-header h2 { color: #fff; }
.testimonials-section .section-header p { color: rgba(255,255,255,.7); }
.testimonials-section .section-label { color: var(--gold-light); }
.testimonials-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.testimonial-card {
  background: rgba(255,255,255,.08); border-radius: var(--radius-lg);
  padding: 28px; border: 1px solid rgba(255,255,255,.12);
  transition: var(--transition);
}
.testimonial-card:hover { background: rgba(255,255,255,.12); }
.testimonial-stars { color: var(--gold-light); font-size: 1rem; margin-bottom: 14px; letter-spacing: 2px; }
.testimonial-text { color: rgba(255,255,255,.85); font-style: italic; font-size: .95rem; line-height: 1.7; margin-bottom: 20px; }
.testimonial-author { display: flex; align-items: center; gap: 12px; }
.testimonial-avatar {
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--green-700); display: flex; align-items: center; justify-content: center;
  color: var(--gold-light); font-family: 'Playfair Display', serif; font-size: 1.1rem; font-weight: 600;
  flex-shrink: 0;
}
.testimonial-name { color: #fff; font-weight: 600; font-size: .9rem; }
.testimonial-location { color: rgba(255,255,255,.55); font-size: .8rem; }

/* ---- Contact Bar ---- */
.contact-bar { background: var(--green-900); padding: 48px 0; }
.contact-bar-inner { display: flex; align-items: center; justify-content: space-between; gap: 32px; flex-wrap: wrap; }
.contact-bar h2 { color: #fff; font-size: 1.75rem; }
.contact-bar p { color: rgba(255,255,255,.7); }
.contact-bar-links { display: flex; gap: 16px; flex-wrap: wrap; align-items: center; }
.contact-link {
  display: flex; align-items: center; gap: 8px;
  color: rgba(255,255,255,.85); font-size: .95rem;
  transition: color var(--transition);
}
.contact-link:hover { color: var(--gold-light); }
.contact-link svg { width: 18px; height: 18px; color: var(--gold); }

/* ---- Footer ---- */
.footer { background: var(--green-900); color: rgba(255,255,255,.75); padding: 64px 0 0; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px; padding-bottom: 48px; }
.footer-brand img { height: 40px; margin-bottom: 16px; }
.footer-brand p { font-size: .875rem; line-height: 1.7; color: rgba(255,255,255,.6); max-width: 280px; margin-bottom: 20px; }
.footer-social { display: flex; gap: 12px; }
.footer-social a {
  width: 38px; height: 38px; border-radius: 8px;
  background: rgba(255,255,255,.1); display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,.7); transition: var(--transition);
}
.footer-social a:hover { background: var(--gold); color: var(--green-900); }
.footer-social svg { width: 18px; height: 18px; }
.footer-col h4 {
  color: #fff; font-family: 'Inter', sans-serif; font-size: .85rem;
  font-weight: 600; letter-spacing: .08em; text-transform: uppercase;
  margin-bottom: 20px;
}
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul li a { font-size: .875rem; color: rgba(255,255,255,.6); transition: color var(--transition); }
.footer-col ul li a:hover { color: var(--gold-light); }
.footer-contact-item { display: flex; gap: 10px; align-items: flex-start; margin-bottom: 14px; font-size: .875rem; color: rgba(255,255,255,.65); }
.footer-contact-item svg { width: 16px; height: 16px; color: var(--gold); flex-shrink: 0; margin-top: 2px; }
.footer-contact-item a:hover { color: var(--gold-light); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.1);
  padding: 20px 0;
  display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 12px;
}
.footer-bottom p { font-size: .8rem; color: rgba(255,255,255,.45); }
.footer-bottom-links { display: flex; gap: 20px; }
.footer-bottom-links a { font-size: .8rem; color: rgba(255,255,255,.45); transition: color var(--transition); }
.footer-bottom-links a:hover { color: rgba(255,255,255,.8); }

/* ---- Page Hero (inner pages) ---- */
.page-hero {
  background: var(--green-800);
  padding: calc(var(--nav-h) + 48px) 0 64px;
  position: relative; overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute; inset: 0;
  background: url('../assets/logo/bg1-recepcija.webp') center/cover no-repeat;
  opacity: .15;
}
.page-hero-content { position: relative; z-index: 1; }
.page-hero h1 { color: #fff; margin-bottom: 10px; }
.page-hero p { color: rgba(255,255,255,.75); font-size: 1.05rem; max-width: 560px; }
.breadcrumb { display: flex; align-items: center; gap: 8px; margin-bottom: 12px; }
.breadcrumb a, .breadcrumb span { font-size: .85rem; color: rgba(255,255,255,.6); }
.breadcrumb a:hover { color: rgba(255,255,255,.9); }
.breadcrumb svg { width: 14px; height: 14px; color: rgba(255,255,255,.4); }

/* ---- Rooms Page ---- */
.rooms-filters {
  background: var(--white); border-bottom: 1px solid var(--border);
  padding: 20px 0; position: sticky; top: var(--nav-h); z-index: 100;
  box-shadow: var(--shadow-sm);
}
.rooms-filters-inner { display: flex; align-items: center; gap: 12px; flex-wrap: wrap; }
.filter-btn {
  padding: 7px 16px; border-radius: 20px; font-size: .85rem; font-weight: 500;
  border: 1.5px solid var(--border); background: var(--white); color: var(--text-muted);
  transition: var(--transition);
}
.filter-btn:hover, .filter-btn.active {
  border-color: var(--green-700); background: var(--green-800); color: #fff;
}
.rooms-search-bar {
  background: var(--green-50); border-radius: var(--radius-lg); padding: 24px 32px;
  margin-bottom: 40px; border: 1px solid var(--green-100);
  display: flex; gap: 16px; align-items: flex-end; flex-wrap: wrap;
}
.rooms-search-bar .booking-field { flex: 1; min-width: 160px; }
.rooms-count { color: var(--text-muted); font-size: .9rem; margin-bottom: 24px; }
.rooms-count strong { color: var(--green-800); }

/* ---- Room Detail Page ---- */
/* aspect-ratio sprečava CLS (Cumulative Layout Shift) */
.room-gallery-main {
  border-radius: var(--radius-lg); overflow: hidden;
  aspect-ratio: 16/9; margin-bottom: 12px;
  max-height: 460px;              /* sprečava previsoku sliku na wide monitorima */
  background: var(--gray-100);   /* placeholder boja dok se slika učitava */
  contain: layout;               /* poboljšava CLS skor */
}
.room-gallery-main img {
  width: 100%; height: 100%; object-fit: cover; cursor: pointer;
  display: block;
}
.room-gallery-thumbs { display: flex; gap: 8px; overflow-x: auto; padding-bottom: 4px; }
.room-gallery-thumbs img {
  width: 80px; height: 60px; object-fit: cover;
  border-radius: var(--radius-sm); cursor: pointer; flex-shrink: 0;
  border: 2px solid transparent; transition: border-color var(--transition);
  aspect-ratio: 4/3;   /* sprečava reflow pri učitavanju thumbova */
}
.room-gallery-thumbs img:hover, .room-gallery-thumbs img.active { border-color: var(--green-700); }
.room-detail-grid {
  display: grid; grid-template-columns: 3fr 2fr; gap: 48px; align-items: start;
  /* Sprečava da leva kolona raste neograničeno */
  min-width: 0;
}
.room-detail-grid > div:first-child { min-width: 0; }
.room-amenities-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; margin: 24px 0; }
.amenity-item {
  display: flex; align-items: center; gap: 10px;
  padding: 10px 14px; background: var(--green-50); border-radius: var(--radius-sm);
  font-size: .875rem; color: var(--text); border: 1px solid var(--green-100);
}
.amenity-item svg { width: 18px; height: 18px; color: var(--green-700); flex-shrink: 0; }

/* Booking Form */
.booking-form-card {
  background: var(--white); border-radius: var(--radius-lg);
  padding: 28px 32px; box-shadow: var(--shadow-lg);
  border: 1px solid var(--border); position: sticky; top: calc(var(--nav-h) + 20px);
}
.booking-form-card h3 { font-size: 1.2rem; margin-bottom: 4px; }
.booking-form-card .price-line {
  display: flex; align-items: baseline; gap: 6px;
  margin-bottom: 24px; padding-bottom: 20px; border-bottom: 1px solid var(--border);
}
.booking-form-card .price-line .price { font-size: 1.6rem; font-family: 'Playfair Display', serif; color: var(--green-800); font-weight: 700; }
.booking-form-card .price-line small { color: var(--text-muted); font-size: .85rem; }
.form-group { margin-bottom: 16px; }
.form-group label { display: block; font-size: .8rem; font-weight: 600; text-transform: uppercase; letter-spacing: .05em; color: var(--gray-600); margin-bottom: 6px; }
.form-group input, .form-group select, .form-group textarea {
  width: 100%; padding: 10px 14px; border: 1.5px solid var(--border);
  border-radius: var(--radius-sm); background: var(--white);
  font-size: .95rem; color: var(--text); transition: border-color var(--transition), box-shadow var(--transition);
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
  outline: none; border-color: var(--green-700); box-shadow: 0 0 0 3px rgba(45,106,79,.12);
}
.form-group textarea { resize: vertical; min-height: 80px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.form-total {
  background: var(--green-50); border: 1px solid var(--green-100);
  border-radius: var(--radius-sm); padding: 14px 16px; margin: 16px 0;
}
.form-total-row { display: flex; justify-content: space-between; font-size: .875rem; margin-bottom: 6px; color: var(--text-muted); }
.form-total-row.total { font-weight: 700; color: var(--green-800); font-size: 1rem; margin-top: 10px; padding-top: 10px; border-top: 1px solid var(--green-100); margin-bottom: 0; }
.form-submit { width: 100%; padding: 14px; font-size: 1rem; font-weight: 600; margin-top: 8px; border-radius: var(--radius-sm); }

/* ---- Destination Detail ---- */
/* Destinacije lista — alternating grid */
.dest-article-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 64px; align-items: center; margin-bottom: 72px;
}
.dest-article-grid > div { min-width: 0; }
.dest-article-img { border-radius: var(--radius-lg); overflow: hidden; aspect-ratio: 4/3; box-shadow: var(--shadow-lg); }
.dest-article-img img { width: 100%; height: 100%; object-fit: cover; display: block; }

/* Galerija destinacije */
.dest-gallery-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; }
.dest-gallery-grid img { border-radius: var(--radius-sm); aspect-ratio: 4/3; object-fit: cover; cursor: pointer; transition: transform var(--transition); display: block; }
.dest-gallery-grid img:hover { transform: scale(1.02); }

/* Ostale destinacije (horizontal scroll na mobu) */
.dest-others { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin-top: 16px; }
.dest-other-card {
  display: flex; align-items: center; gap: 12px;
  padding: 12px; border: 1px solid var(--border); border-radius: var(--radius);
  background: var(--white); text-decoration: none; transition: var(--transition);
}
.dest-other-card:hover { border-color: var(--green-600); box-shadow: var(--shadow-sm); }
.dest-other-card img { width: 64px; height: 48px; object-fit: cover; border-radius: var(--radius-sm); flex-shrink: 0; }
.dest-other-card span { font-size: .875rem; font-weight: 500; color: var(--text); line-height: 1.3; }

/* ---- Offer Detail ---- */
.offer-content-grid { display: grid; grid-template-columns: 3fr 2fr; gap: 48px; }
.offer-content h3 { color: var(--green-800); font-size: 1.2rem; margin: 20px 0 10px; }
.offer-content ul { padding-left: 20px; margin-bottom: 16px; }
.offer-content ul li { margin-bottom: 6px; color: var(--text-muted); font-size: .95rem; }
.offer-content p { color: var(--text-muted); }

/* ---- Contact Page ---- */
.contact-grid { display: grid; grid-template-columns: 2fr 3fr; gap: 64px; }
.contact-info-list { margin-bottom: 32px; }
.contact-info-item {
  display: flex; gap: 16px; align-items: flex-start;
  padding: 20px 0; border-bottom: 1px solid var(--border);
}
.contact-info-item:first-child { padding-top: 0; }
.contact-info-icon {
  width: 44px; height: 44px; background: var(--green-50); border-radius: 10px;
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
  color: var(--green-700);
}
.contact-info-icon svg { width: 20px; height: 20px; }
.contact-info-text h4 { font-size: .9rem; font-family: 'Inter', sans-serif; font-weight: 600; margin-bottom: 4px; }
.contact-info-text p, .contact-info-text a { font-size: .9rem; color: var(--text-muted); }
.contact-info-text a:hover { color: var(--green-700); }
.contact-map { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow); margin-top: 24px; }
.contact-map iframe { display: block; width: 100%; }
.contact-form-wrap { background: var(--white); border-radius: var(--radius-lg); padding: 36px; box-shadow: var(--shadow-sm); border: 1px solid var(--border); }
.contact-form-wrap h3 { margin-bottom: 24px; }

/* ---- About Page ---- */
.about-full-content { max-width: 800px; margin: 0 auto; }
.about-full-content h2 { color: var(--green-800); margin: 40px 0 16px; }
.about-full-content h2:first-child { margin-top: 0; }
.about-full-content p { color: var(--text-muted); font-size: 1.0rem; }
.about-full-content ul { padding-left: 20px; margin-bottom: 16px; }
.about-full-content ul li { margin-bottom: 8px; color: var(--text-muted); }
.about-team-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; margin-top: 48px; }
.team-card { text-align: center; }
.team-avatar { width: 80px; height: 80px; border-radius: 50%; background: var(--green-700); margin: 0 auto 14px; display: flex; align-items: center; justify-content: center; color: #fff; font-family: 'Playfair Display', serif; font-size: 1.5rem; }

/* ---- Confirmation/Cancellation ---- */
.result-page { min-height: calc(100vh - var(--nav-h)); display: flex; align-items: center; justify-content: center; padding: calc(var(--nav-h) + 40px) 24px 80px; }
.result-card { max-width: 560px; width: 100%; background: var(--white); border-radius: var(--radius-xl); padding: 48px 40px; text-align: center; box-shadow: var(--shadow-xl); }
.result-icon { width: 72px; height: 72px; border-radius: 50%; margin: 0 auto 24px; display: flex; align-items: center; justify-content: center; }
.result-icon.success { background: var(--green-100); color: var(--green-700); }
.result-icon.error { background: #fee2e2; color: #dc2626; }
.result-icon.warning { background: #fef3c7; color: #d97706; }
.result-icon svg { width: 36px; height: 36px; }
.result-card h1 { font-size: 1.75rem; margin-bottom: 10px; }
.result-card p { color: var(--text-muted); margin-bottom: 24px; }
.result-details { background: var(--gray-50); border-radius: var(--radius); padding: 20px; margin: 20px 0; text-align: left; }
.result-detail-row { display: flex; justify-content: space-between; padding: 8px 0; border-bottom: 1px solid var(--border); font-size: .875rem; }
.result-detail-row:last-child { border-bottom: none; }
.result-detail-row span:first-child { color: var(--text-muted); }
.result-detail-row span:last-child { font-weight: 500; }

/* ---- Lightbox ---- */
.lightbox {
  display: none; position: fixed; inset: 0; z-index: 9999;
  background: rgba(0,0,0,.92); align-items: center; justify-content: center;
}
.lightbox.open { display: flex; }
.lightbox img { max-width: 90vw; max-height: 85vh; object-fit: contain; border-radius: var(--radius); }
.lightbox-close {
  position: absolute; top: 20px; right: 24px; color: #fff; font-size: 1.5rem;
  padding: 8px 12px; border-radius: 6px; background: rgba(255,255,255,.1); z-index: 1;
  transition: var(--transition);
}
.lightbox-close:hover { background: rgba(255,255,255,.2); }
.lightbox-prev, .lightbox-next {
  position: absolute; top: 50%; transform: translateY(-50%);
  color: #fff; font-size: 1.2rem; padding: 12px 16px;
  background: rgba(255,255,255,.1); border-radius: 8px;
  transition: var(--transition);
}
.lightbox-prev { left: 20px; }
.lightbox-next { right: 20px; }
.lightbox-prev:hover, .lightbox-next:hover { background: rgba(255,255,255,.2); }

/* ---- Utilities ---- */
.text-center { text-align: center; }
.text-white { color: #fff !important; }
.text-gold { color: var(--gold); }
.text-green { color: var(--green-800); }
.text-muted { color: var(--text-muted); }
.bg-green { background: var(--green-800); }
.bg-off-white { background: var(--off-white); }
.bg-white { background: var(--white); }
.mt-4 { margin-top: 16px; }
.mt-6 { margin-top: 24px; }
.mt-8 { margin-top: 32px; }
.mb-4 { margin-bottom: 16px; }
.mb-6 { margin-bottom: 24px; }
.d-flex { display: flex; }
.align-center { align-items: center; }
.gap-2 { gap: 8px; }
.gap-4 { gap: 16px; }
.divider { border: none; border-top: 1px solid var(--border); margin: 32px 0; }
.show-all-wrap { text-align: center; margin-top: 48px; }
.alert { padding: 14px 18px; border-radius: var(--radius-sm); margin-bottom: 20px; font-size: .9rem; }
.alert-success { background: var(--green-50); color: var(--green-700); border: 1px solid var(--green-100); }
.alert-error { background: #fee2e2; color: #dc2626; border: 1px solid #fecaca; }
.alert-warning { background: #fef3c7; color: #92400e; border: 1px solid #fde68a; }

/* Spinner */
.spinner { display: inline-block; width: 20px; height: 20px; border: 2px solid rgba(255,255,255,.3); border-radius: 50%; border-top-color: #fff; animation: spin .6s linear infinite; }
@keyframes spin { to { transform: rotate(360deg); } }

/* ---- Responsive ---- */
@media (max-width: 1100px) {
  .about-inner { gap: 48px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
  .booking-grid { grid-template-columns: 1fr 1fr; }
  .booking-grid .btn-search { grid-column: 1/-1; }
}

@media (max-width: 992px) {
  :root { --nav-h: 64px; }
  .section { padding: 72px 0; }
  .nav-links, .nav-book { display: none; }
  .nav-burger { display: flex; }
  .features-grid { grid-template-columns: repeat(2, 1fr); gap: 24px; }
  .about-inner { grid-template-columns: 1fr; }
  .about-images { max-width: 480px; }
  .about-img-secondary { bottom: -16px; right: -16px; }
  .about-stats { grid-template-columns: repeat(4, 1fr); }
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .testimonials-grid { grid-template-columns: 1fr 1fr; }
  .room-detail-grid { grid-template-columns: 1fr; }
  .booking-form-card { position: static; }
  .offer-content-grid { grid-template-columns: 1fr; }
  .dest-gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .dest-article-grid { grid-template-columns: 1fr; gap: 24px; margin-bottom: 48px; }
  .dest-others { grid-template-columns: 1fr 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .hero { min-height: 90svh; }
  .booking-widget { padding: 20px; }
  .booking-grid { grid-template-columns: 1fr; gap: 12px; }
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .grid-2 { grid-template-columns: 1fr; }
  .grid-3 { grid-template-columns: 1fr; }
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .testimonials-grid { grid-template-columns: 1fr; }
  .about-stats { grid-template-columns: repeat(2, 1fr); }
  .contact-bar-inner { flex-direction: column; text-align: center; }
  .room-amenities-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; text-align: center; gap: 8px; }
  .result-card { padding: 32px 24px; }
  .rooms-search-bar { flex-direction: column; }
  .rooms-search-bar .booking-field { width: 100%; }
  .form-row { grid-template-columns: 1fr; }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { width: 100%; max-width: 280px; }
}

@media (max-width: 480px) {
  .container { padding: 0 16px; }
  .features-grid { grid-template-columns: 1fr 1fr; }
  .grid-4 { grid-template-columns: 1fr 1fr; }
  .about-img-secondary { display: none; }
  .about-stats { grid-template-columns: 1fr 1fr; }
  .dest-gallery-grid { grid-template-columns: 1fr 1fr; }
  .dest-others { grid-template-columns: 1fr; }
  .booking-form-card { padding: 20px 18px; }
}

/* ---- Footer: platne kartice (grupisano po Halkbank PDF uputstvu) ---- */
.footer-cards {
  display: flex; align-items: center; flex-wrap: wrap; gap: 16px;
  padding: 20px 0; border-top: 1px solid rgba(255,255,255,.1); border-bottom: 1px solid rgba(255,255,255,.1);
  margin-bottom: 16px;
}
.footer-cards-processor img { height: 32px; width: auto; border-radius: 6px; }
.footer-cards-processor img:hover { opacity: .9; }
.footer-cards-divider { width: 1px; height: 32px; background: rgba(255,255,255,.2); flex-shrink: 0; }
.footer-cards-gap { flex: 1; min-width: 40px; }
.footer-cards-group { display: flex; flex-direction: column; gap: 6px; }
.footer-cards-label { font-size: .7rem; text-transform: uppercase; letter-spacing: .08em; color: rgba(255,255,255,.45); }
.footer-cards-row { display: flex; gap: 8px; align-items: center; flex-wrap: wrap; }
/* Znaci prihvatanja: min 37x23px, max 180x113px */
.footer-cards-row img { height: 28px; width: auto; object-fit: contain; border-radius: 4px; }
/* Znaci programa (Verified by Visa, MC Secure Code): min 60px, max 155px */
.footer-cards-group:last-child .footer-cards-row img,
.footer-cards-group:last-child .footer-cards-row a img { height: 32px; min-width: 60px; max-width: 120px; width: auto; object-fit: contain; }
.footer-cards-row a { display: inline-flex; }

/* Footer company info */
.footer-company {
  padding: 12px 0; font-size: .78rem; color: rgba(255,255,255,.45); line-height: 1.6;
  border-bottom: 1px solid rgba(255,255,255,.08); margin-bottom: 4px;
}
.footer-company strong { color: rgba(255,255,255,.65); }
.footer-company a { color: rgba(255,255,255,.45); transition: color var(--transition); }
.footer-company a:hover { color: var(--gold-light); }

/* ---- Cookie Consent Banner ---- */
#cookie-banner {
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 9998;
  background: var(--green-900);
  border-top: 2px solid var(--gold);
  transform: translateY(100%);
  transition: transform .4s cubic-bezier(.4,0,.2,1);
  box-shadow: 0 -4px 24px rgba(0,0,0,.25);
}
#cookie-banner.visible { transform: translateY(0); }
.cookie-banner-inner {
  max-width: 1240px; margin: 0 auto; padding: 16px 24px;
  display: flex; align-items: center; gap: 24px; flex-wrap: wrap;
}
.cookie-banner-text { flex: 1; min-width: 200px; }
.cookie-banner-text strong { display: block; color: #fff; font-size: .95rem; margin-bottom: 4px; }
.cookie-banner-text p { font-size: .82rem; color: rgba(255,255,255,.65); margin: 0; line-height: 1.5; }
.cookie-banner-text a { color: var(--gold-light); text-decoration: underline; margin-left: 4px; }
.cookie-banner-actions { display: flex; gap: 10px; flex-shrink: 0; flex-wrap: wrap; }
.cookie-btn {
  padding: 9px 20px; border-radius: 6px; font-size: .875rem; font-weight: 600;
  cursor: pointer; border: none; transition: var(--transition); white-space: nowrap;
}
.cookie-btn-accept { background: var(--gold); color: var(--green-900); }
.cookie-btn-accept:hover { background: var(--gold-light); }
.cookie-btn-necessary {
  background: transparent; color: rgba(255,255,255,.75);
  border: 1px solid rgba(255,255,255,.3);
}
.cookie-btn-necessary:hover { background: rgba(255,255,255,.1); color: #fff; }

@media (max-width: 600px) {
  .footer-cards { gap: 12px; }
  .footer-cards-divider { display: none; }
  .footer-cards-gap { display: none; }
  .footer-cards-group { flex-direction: column; }
  .cookie-banner-inner { flex-direction: column; gap: 14px; }
  .cookie-banner-actions { width: 100%; }
  .cookie-btn { flex: 1; text-align: center; }
}

/* ---- Clickable card ---- */
[data-href] { cursor: pointer; }

/* ---- Mobile: sobe i destinacije 1 kolona ---- */
@media (max-width: 768px) {
  .grid-rooms { grid-template-columns: 1fr !important; gap: 16px; }
  .grid-dests { grid-template-columns: 1fr !important; gap: 16px; }
  /* Destinacije: prikaz side-by-side na mobu umjesto overlay */
  .grid-dests .dest-card-img { aspect-ratio: 16/7; }
}
@media (max-width: 480px) {
  .grid-rooms { gap: 14px; }
  .grid-dests { gap: 14px; }
}

/* ---- Animations ---- */
.fade-in { opacity: 0; transform: translateY(24px); transition: opacity .6s ease, transform .6s ease; }
.fade-in.visible { opacity: 1; transform: translateY(0); }

/* ---- Scrollbar ---- */
::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: var(--gray-100); }
::-webkit-scrollbar-thumb { background: var(--green-600); border-radius: 4px; }
::-webkit-scrollbar-thumb:hover { background: var(--green-700); }

/* ---- Print ---- */
@media print {
  .nav, .footer, .booking-form-card { display: none; }
  .page-hero { padding-top: 20px; }
}
