@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;500;600&family=Jost:wght@300;400;500;600&display=swap');

:root {
  --ink:         #faf6ee;
  --panel:       #f0e6d2;
  --gold:        #b8863a;
  --gold-light:  #c99a3d;
  --gold-tint:   rgba(184,134,58,0.12);
  --gold-border: rgba(184,134,58,0.40);
  --text:        #1b3a63;
  --text-soft:   rgba(27,58,99,0.85);
  --text-muted:  rgba(27,58,99,0.55);
  --border-soft: rgba(27,58,99,0.14);

  /* Uporabljeno samo znotraj .hero (temna fotografija v ozadju) */
  --hero-text:       #fbf8f2;
  --hero-text-soft:  rgba(255,255,255,0.88);
  --hero-text-muted: rgba(255,255,255,0.58);
}

* { margin:0; padding:0; box-sizing:border-box; }
html { scroll-behavior:smooth; }
html, body { width:100%; height:100%; }
body {
  font-family:'Jost', sans-serif;
  background:var(--ink);
}

/* ---------- Scroll-reveal ---------- */
.reveal {
  opacity:0; transform:translateY(28px);
  transition:opacity .8s cubic-bezier(.16,.8,.3,1), transform .8s cubic-bezier(.16,.8,.3,1);
}
.reveal.in-view { opacity:1; transform:translateY(0); }
.reveal-stagger > * {
  opacity:0; transform:translateY(24px);
  transition:opacity .7s cubic-bezier(.16,.8,.3,1), transform .7s cubic-bezier(.16,.8,.3,1);
}
.reveal-stagger.in-view > * { opacity:1; transform:translateY(0); }
.reveal-stagger.in-view > *:nth-child(1) { transition-delay:.03s; }
.reveal-stagger.in-view > *:nth-child(2) { transition-delay:.09s; }
.reveal-stagger.in-view > *:nth-child(3) { transition-delay:.15s; }
.reveal-stagger.in-view > *:nth-child(4) { transition-delay:.21s; }
.reveal-stagger.in-view > *:nth-child(5) { transition-delay:.27s; }
.reveal-stagger.in-view > *:nth-child(6) { transition-delay:.33s; }
.reveal-stagger.in-view > *:nth-child(7) { transition-delay:.39s; }
.reveal-stagger.in-view > *:nth-child(8) { transition-delay:.45s; }
.reveal-stagger.in-view > *:nth-child(9) { transition-delay:.51s; }
.reveal-stagger.in-view > *:nth-child(10) { transition-delay:.57s; }
.reveal-stagger.in-view > *:nth-child(11) { transition-delay:.63s; }
.reveal-stagger.in-view > *:nth-child(12) { transition-delay:.69s; }
.reveal-stagger.in-view > *:nth-child(n+13) { transition-delay:.75s; }

/* ---------- Announcement bar ---------- */
.announcement-bar {
  position:relative; z-index:50;
  display:flex; align-items:center; justify-content:center;
  background:var(--gold); color:#1a1408;
  padding:11px 52px; text-align:center;
}
.announcement-bar[hidden] { display:none; }
.announcement-bar p { font-size:12.5px; letter-spacing:0.3px; font-weight:500; }
.announcement-bar button {
  position:absolute; right:16px; top:50%; transform:translateY(-50%);
  background:none; border:none; color:#1a1408; cursor:pointer;
  padding:6px; display:flex; opacity:0.75; transition:opacity .2s ease;
}
.announcement-bar button:hover, .announcement-bar button:focus-visible { opacity:1; }
.announcement-bar button svg { width:14px; height:14px; display:block; }

/* ---------- Back to top ---------- */
.back-to-top {
  position:fixed; right:24px; bottom:calc(24px + var(--cookie-offset, 0px)); z-index:55;
  width:44px; height:44px; display:flex; align-items:center; justify-content:center;
  background:var(--panel); border:1px solid var(--gold-border); color:var(--gold-light);
  cursor:pointer; transition:border-color .2s ease, background .2s ease, transform .2s ease, bottom .2s ease;
}
.back-to-top[hidden] { display:none; }
.back-to-top svg { width:18px; height:18px; }
.back-to-top:hover, .back-to-top:focus-visible { border-color:var(--gold); background:var(--gold-tint); transform:translateY(-2px); }
.back-to-top.pressed { transform:scale(.88); border-color:var(--gold); background:var(--gold-tint); }

/* ---------- Sticky nav (shown after scrolling past the hero) ---------- */
.sticky-nav {
  position:fixed; top:0; left:0; right:0; z-index:45;
  display:flex; align-items:center; justify-content:space-between;
  padding:8px 64px;
  background:rgba(250,246,238,0.95); backdrop-filter:blur(8px);
  border-bottom:1px solid var(--border-soft);
  transform:translateY(-100%); transition:transform .3s ease;
  box-shadow:0 4px 20px -8px rgba(27,58,99,0.15);
}
.sticky-nav.visible { transform:translateY(0); }

/* Keeps section tops clear of the fixed sticky nav when jumping to an
   in-page anchor (nav links, footer links, back-to-top targets). */
#domov, #o-nas, #galerija, #dogodki, #boni, #mnenja, #kontakt { scroll-margin-top:124px; }
.sticky-nav-logo { display:flex; align-items:center; }
.sticky-nav-logo img { height:92px; width:auto; display:block; }
.sticky-nav-links { display:flex; gap:28px; }
.sticky-nav-links a {
  color:var(--text); text-decoration:none; white-space:nowrap;
  font-size:11.5px; letter-spacing:1px; font-weight:600; text-transform:uppercase;
  transition:color .2s ease;
}
.sticky-nav-links a:hover { color:var(--gold); }
.sticky-nav-right { display:flex; align-items:center; gap:10px; }
.sticky-nav-call {
  display:flex; align-items:center; justify-content:center;
  width:34px; height:34px; border:1px solid var(--gold-border); color:var(--gold-light);
  transition:border-color .2s ease, background .2s ease;
}
.sticky-nav-call svg { width:15px; height:15px; }
.sticky-nav-call:hover { border-color:var(--gold); background:var(--gold-tint); }

/* ---------- Site header (normal top bar, above the hero) ---------- */
.site-header {
  position:relative; z-index:20;
  display:flex; align-items:center; justify-content:space-between;
  gap:24px; padding:10px 64px;
  background:var(--ink);
  border-bottom:1px solid var(--border-soft);
}
.logo { display:flex; align-items:center; text-decoration:none; transition:transform .25s ease; }
.logo:hover, .logo:focus-visible { transform:scale(1.03); }
.logo-img { height:66px; width:auto; display:block; }
.site-header .logo-img { height:128px; }

.header-nav-group { display:flex; align-items:center; gap:36px; }

nav { display:flex; gap:34px; }
nav a {
  position:relative;
  color:var(--text); text-decoration:none; white-space:nowrap;
  font-size:12.5px; letter-spacing:1.2px; font-weight:600; text-transform:uppercase;
  padding-bottom:4px;
  transition:color .2s ease;
}
nav a::after {
  content:''; position:absolute; left:0; right:100%; bottom:0; height:1px;
  background:var(--gold); transition:right .25s ease;
}
nav a:hover, nav a:focus-visible { color:var(--gold); }
nav a:hover::after, nav a:focus-visible::after { right:0; }

.header-utils { display:flex; align-items:center; gap:16px; }
.social-icon {
  display:flex; align-items:center; justify-content:center;
  width:32px; height:32px; color:var(--text-muted);
  transition:color .2s ease;
}
.social-icon svg { width:17px; height:17px; }
.social-icon:hover, .social-icon:focus-visible { color:var(--gold); }

.lang-switch { position:relative; }
.lang-switch-btn {
  display:flex; align-items:center; gap:7px;
  border:1px solid var(--gold-border); background:transparent; color:var(--text-muted);
  font-family:'Jost', sans-serif; font-size:11.5px; letter-spacing:1px; font-weight:500;
  padding:8px 12px; cursor:pointer; transition:border-color .2s ease, color .2s ease;
}
.lang-switch-btn svg { width:11px; height:11px; transition:transform .2s ease; }
.lang-switch-btn[aria-expanded="true"] svg { transform:rotate(180deg); }
.lang-switch-btn:hover, .lang-switch-btn:focus-visible { border-color:var(--gold); color:var(--gold-light); }

.lang-switch-menu {
  position:absolute; top:calc(100% + 8px); right:0; z-index:30;
  list-style:none; min-width:150px;
  background:var(--panel); border:1px solid var(--gold-border);
  box-shadow:0 16px 32px -12px rgba(27,58,99,0.18);
}
.lang-switch-menu[hidden] { display:none; }
.lang-switch-menu:not([hidden]) { animation:dropIn .22s cubic-bezier(.16,.8,.3,1); transform-origin:top right; }
@keyframes dropIn { from { opacity:0; transform:translateY(-8px) scaleY(.96); } to { opacity:1; transform:translateY(0) scaleY(1); } }
.lang-switch-menu button {
  display:flex; align-items:center; gap:10px; width:100%; text-align:left;
  background:none; border:none; color:var(--text-soft);
  font-family:'Jost', sans-serif; font-size:13px; font-weight:300;
  padding:11px 16px; cursor:pointer; transition:background .2s ease, color .2s ease;
}
.lang-switch-menu button:hover, .lang-switch-menu button:focus-visible { background:var(--gold-tint); color:var(--gold-light); }
.lang-switch-menu button[aria-current="true"] { color:var(--gold); font-weight:500; }

.flag {
  display:inline-block; width:20px; height:14px; flex-shrink:0;
  border-radius:2px; overflow:hidden; box-shadow:0 0 0 1px rgba(0,0,0,0.15);
}
.flag svg, span.flag svg { display:block; width:100%; height:100%; }
.lang-switch-btn .flag { width:18px; height:13px; }

.book-btn {
  display:flex; align-items:center; gap:9px;
  border:1px solid var(--gold); color:var(--gold-light);
  padding:13px 22px; font-size:12px; letter-spacing:1.6px; font-weight:500;
  text-decoration:none; transition:background .2s ease, color .2s ease, box-shadow .2s ease;
}
.book-btn svg { width:14px; height:14px; }
.book-btn:hover, .book-btn:focus-visible {
  background:var(--gold); color:#1a1408;
  box-shadow:0 6px 18px -6px rgba(184,134,58,0.6);
}

/* ---------- Hero (split: image panel + text panel, à la Casa Popo) ---------- */
.hero-split {
  position:relative; display:flex; align-items:stretch;
  min-height:calc(100vh - 83px);
}
.hero-media { position:relative; flex:1 1 50%; overflow:hidden; min-height:480px; }
.hero-media .hero-bg {
  position:absolute; top:-40px; left:0; right:0; bottom:-40px; z-index:0; will-change:transform;
  background:
    radial-gradient(ellipse 900px 520px at 50% -8%, rgba(184,134,58,0.30), transparent 62%),
    linear-gradient(165deg, #0c1a2c 0%, #16294a 34%, #1b3a63 64%, #2d4d78 100%);
}
.hero-media .hero-photo {
  position:absolute; top:-40px; left:0; right:0; bottom:-40px; z-index:0; will-change:transform;
  width:100%; height:calc(100% + 80px);
  object-fit:cover; object-position:center 62%; display:block;
}
.hero-media .hero-slide { opacity:0; transition:opacity 1.1s ease; pointer-events:none; }
.hero-media .hero-slide.is-active { opacity:1; }
.hero-media .overlay {
  position:absolute; inset:0; z-index:1;
  background:linear-gradient(180deg, rgba(0,0,0,0.12) 0%, rgba(0,0,0,0) 35%, rgba(0,0,0,0.30) 100%);
}

.content {
  position:relative; z-index:5; flex:1 1 50%;
  display:flex; flex-direction:column; align-items:flex-start; justify-content:center;
  text-align:left; padding:64px 80px; background:var(--ink);
}

.badge {
  display:inline-flex; align-items:center; gap:9px;
  background:var(--gold-tint); border:1px solid var(--gold-border);
  color:var(--text); font-size:12px; letter-spacing:2px; font-weight:500;
  padding:9px 20px; margin-bottom:22px;
  opacity:0; animation:riseIn .8s ease-out .2s forwards;
  transition:border-color .2s ease, background .2s ease, transform .2s ease;
}
.badge:hover { border-color:var(--gold); background:rgba(184,134,58,0.2); transform:translateY(-2px); }
.badge svg { width:13px; height:13px; animation:twinkle 3.2s ease-in-out infinite; }
@keyframes twinkle { 0%,100% { opacity:1; } 50% { opacity:.55; } }

.hero-eyebrow {
  opacity:0; animation:riseIn .8s ease-out .3s forwards;
}

h1 {
  font-family:'Playfair Display', serif; font-weight:600;
  font-size:clamp(44px, 6.4vw, 88px); color:var(--text); line-height:1.02;
  margin-bottom:22px; letter-spacing:0.5px;
  opacity:0; animation:riseIn .9s ease-out .4s forwards;
}

.divider {
  width:64px; height:1px; background:var(--gold);
  margin-bottom:28px; opacity:0; animation:riseIn .8s ease-out .6s forwards;
}

p.subtitle {
  color:var(--text-soft); font-size:18px; line-height:1.65; font-weight:300;
  max-width:520px; margin-bottom:42px;
  opacity:0; animation:riseIn .8s ease-out .75s forwards;
}

.cta-row {
  display:flex; gap:18px; flex-wrap:wrap; justify-content:flex-start;
  opacity:0; animation:riseIn .8s ease-out .95s forwards;
}
.btn {
  padding:17px 34px; font-size:12.5px; letter-spacing:1.8px; font-weight:500;
  font-family:inherit; line-height:1.2;
  text-decoration:none; text-align:center; display:inline-block;
  border:0; background:transparent; color:inherit; cursor:pointer;
  -webkit-appearance:none; appearance:none;
  transition:transform .25s ease, background .25s ease, color .25s ease, border-color .25s ease, box-shadow .25s ease;
}
.btn:hover, .btn:focus-visible { transform:translateY(-2px); }
.btn-gold { background:var(--gold); color:#1a1408; box-shadow:0 10px 24px -10px rgba(184,134,58,0.55); }
.btn-gold:hover { background:var(--gold-light); box-shadow:0 14px 28px -8px rgba(184,134,58,0.65); }
.btn-outline { border:1px solid var(--text-soft); color:var(--text); }
.btn-outline:hover { background:rgba(27,58,99,0.06); border-color:var(--text); }

a:focus-visible, button:focus-visible { outline:2px solid var(--gold); outline-offset:3px; }

@keyframes riseIn { from { opacity:0; transform:translateY(16px); } to { opacity:1; transform:translateY(0); } }

/* ---------- Section heads (shared) ---------- */
.section-head { text-align:center; max-width:640px; margin:0 auto 56px; padding:0 24px; }
.section-head h2 {
  font-family:'Playfair Display', serif; font-weight:500;
  font-size:clamp(30px, 3.6vw, 44px); color:var(--text); line-height:1.15; margin-bottom:16px;
}
.section-sub { color:var(--text-muted); font-size:15.5px; line-height:1.7; font-weight:300; margin-top:18px; }
.divider-sm.center { margin-left:auto; margin-right:auto; }

/* ---------- About ---------- */
.about {
  display:flex; align-items:center; gap:72px;
  background:var(--ink); padding:120px 64px;
  max-width:1280px; margin:0 auto;
}
.about-content { flex:1 1 55%; }
.about .eyebrow { font-size:12px; letter-spacing:3px; font-weight:500; color:var(--gold); margin-bottom:14px; }
.about h2 {
  font-family:'Playfair Display', serif; font-weight:500;
  font-size:clamp(32px, 3.4vw, 44px); color:var(--text); line-height:1.15; margin-bottom:20px;
}
.about .lead { color:var(--text); font-size:19px; line-height:1.6; font-weight:400; margin-bottom:20px; }
.about p { color:var(--text-soft); font-size:15.5px; line-height:1.8; font-weight:300; margin-bottom:18px; }
.about p.signoff { color:var(--gold-light); font-style:italic; font-size:16px; margin-top:8px; }
.about-media { flex:1 1 40%; display:flex; align-items:center; justify-content:center; }
.about-media svg { width:100%; max-width:340px; height:auto; }

/* ---------- Gallery (enotna mreža) ---------- */
.gallery { background:var(--panel); padding:100px 64px; border-top:1px solid var(--border-soft); border-bottom:1px solid var(--border-soft); }
.gallery-subtitle {
  font-family:'Playfair Display', serif; font-weight:500;
  font-size:clamp(19px, 2.1vw, 24px); letter-spacing:0.3px;
  color:var(--gold-light); text-align:center;
  max-width:1080px; margin:0 auto 22px;
}
.gallery-grid + .gallery-subtitle { margin-top:56px; }
.gallery-grid {
  display:grid; grid-template-columns:repeat(4, 1fr); gap:14px;
  max-width:1080px; margin:0 auto;
}
.gallery-item {
  display:block; width:100%;
  position:relative; overflow:hidden; border-radius:4px;
  border:none; padding:0; background:var(--ink); cursor:zoom-in;
  box-shadow:0 1px 3px rgba(0,0,0,0.08);
  transition:transform .3s ease, box-shadow .3s ease;
}
.gallery-item:hover, .gallery-item:focus-visible { transform:translateY(-3px); box-shadow:0 16px 32px -14px rgba(27,58,99,0.35); }
.gallery-item img { width:100%; height:auto; display:block; aspect-ratio:1 / 1; object-fit:cover; transition:transform .5s ease; }
.gallery-item:hover img, .gallery-item:focus-visible img { transform:scale(1.06); }
.gallery-item::after {
  content:''; position:absolute; inset:0;
  background:linear-gradient(180deg, transparent 55%, rgba(20,16,8,0.55) 100%);
  opacity:0; transition:opacity .3s ease;
}
.gallery-item:hover::after, .gallery-item:focus-visible::after { opacity:1; }
.gallery-item-zoom {
  position:absolute; top:50%; left:50%; z-index:1;
  transform:translate(-50%,-50%) scale(0.75); opacity:0;
  width:38px; height:38px; display:flex; align-items:center; justify-content:center;
  border:1px solid rgba(255,255,255,0.75); border-radius:50%; color:#fff;
  transition:opacity .25s ease, transform .25s ease;
}
.gallery-item-zoom svg { width:16px; height:16px; }
.gallery-item:hover .gallery-item-zoom, .gallery-item:focus-visible .gallery-item-zoom { opacity:1; transform:translate(-50%,-50%) scale(1); }

/* ---------- Lightbox ---------- */
.lightbox {
  position:fixed; inset:0; z-index:200;
  display:flex; align-items:center; justify-content:center;
  background:rgba(12,10,7,0.94);
  padding:64px 24px;
  animation:lightboxIn .25s ease;
}
.lightbox[hidden] { display:none; }
@keyframes lightboxIn { from{opacity:0;} to{opacity:1;} }
.lightbox-figure { margin:0; display:flex; flex-direction:column; align-items:center; gap:14px; max-width:100%; }
.lightbox-figure img { max-width:min(1100px, 88vw); max-height:78vh; width:auto; height:auto; display:block; box-shadow:0 30px 80px -20px rgba(0,0,0,0.6); }
.lightbox-counter { color:rgba(255,255,255,0.6); font-size:12px; letter-spacing:1.5px; }
.lightbox-close, .lightbox-nav {
  position:absolute; display:flex; align-items:center; justify-content:center;
  width:44px; height:44px; border-radius:50%;
  border:1px solid rgba(255,255,255,0.25); background:rgba(255,255,255,0.06); color:#fff;
  cursor:pointer; transition:border-color .2s ease, background .2s ease, transform .2s ease;
}
.lightbox-close svg, .lightbox-nav svg { width:18px; height:18px; }
.lightbox-close:hover, .lightbox-nav:hover, .lightbox-close:focus-visible, .lightbox-nav:focus-visible {
  border-color:var(--gold); background:rgba(184,134,58,0.18); transform:translateY(-1px);
}
.lightbox-close { top:20px; right:20px; }
.lightbox-nav { top:50%; transform:translateY(-50%); }
.lightbox-nav:hover, .lightbox-nav:focus-visible { transform:translateY(-50%) translateY(-1px); }
.lightbox-prev { left:16px; }
.lightbox-next { right:16px; }

/* ---------- Gift vouchers ---------- */
.vouchers { background:var(--panel); padding:56px 64px; border-bottom:1px solid var(--border-soft); }
.vouchers-inner {
  max-width:920px; margin:0 auto;
  display:flex; align-items:center; gap:28px; flex-wrap:wrap;
}
.vouchers-icon { width:38px; height:38px; flex-shrink:0; transition:transform .35s ease; }
.vouchers-inner:hover .vouchers-icon { transform:rotate(-8deg) scale(1.08); }
.vouchers-text { flex:1 1 320px; }
.vouchers-text h2 { font-family:'Playfair Display', serif; font-weight:500; font-size:22px; color:var(--text); margin-bottom:6px; }
.vouchers-text p { color:var(--text-muted); font-size:14px; line-height:1.6; font-weight:300; }

/* ---------- Events ---------- */
.events { background:var(--panel); padding:120px 64px; border-bottom:1px solid var(--border-soft); }
.events-grid {
  display:grid; grid-template-columns:repeat(4, minmax(0,1fr)); gap:24px;
  max-width:1180px; margin:0 auto 48px;
}
.event-card {
  background:var(--ink); border:1px solid var(--border-soft);
  padding:34px 24px; text-align:center;
  transition:border-color .2s ease, transform .2s ease;
}
.event-card:hover { border-color:var(--gold-border); transform:translateY(-3px); }
.event-icon {
  display:flex; align-items:center; justify-content:center;
  width:54px; height:54px; border-radius:50%; margin:0 auto 18px;
  background:var(--gold-tint); border:1px solid var(--gold-border);
}
.event-icon svg { width:24px; height:24px; color:var(--gold); }
.event-card h3 { font-family:'Playfair Display', serif; font-weight:500; font-size:17px; color:var(--text); margin-bottom:10px; }
.event-card p { color:var(--text-muted); font-size:13.5px; line-height:1.6; font-weight:300; }
.events-cta { display:flex; justify-content:center; gap:16px; flex-wrap:wrap; }

/* ---------- Reviews ---------- */
.reviews { background:var(--ink); padding:120px 64px; }
.rating-row { display:flex; justify-content:center; gap:22px; flex-wrap:wrap; margin-bottom:56px; }
.rating-badge {
  display:flex; align-items:center; gap:14px;
  border:1px solid var(--gold-border); background:var(--gold-tint);
  padding:16px 26px; text-decoration:none;
  transition:border-color .2s ease, background .2s ease, transform .2s ease, box-shadow .2s ease;
}
.rating-badge:hover { transform:translateY(-3px); box-shadow:0 14px 28px -14px rgba(27,58,99,0.3); }
.rating-badge:hover, .rating-badge:focus-visible { border-color:var(--gold); background:rgba(184,134,58,0.16); }
.rating-badge svg { width:26px; height:26px; flex-shrink:0; }
.rating-info { display:flex; flex-direction:column; gap:3px; }
.rating-info strong { color:var(--text); font-size:16px; font-weight:600; display:flex; align-items:center; gap:8px; }
.rating-info em { color:var(--text-muted); font-size:12px; font-style:normal; letter-spacing:0.3px; }
.star-rating { display:inline-flex; align-items:center; gap:2px; vertical-align:middle; }
.star-rating svg { width:12px; height:12px; }
.star-rating .rs-on { fill:var(--gold); }
.star-rating .rs-off { fill:rgba(27,58,99,0.2); }
.star-half { position:relative; display:inline-block; width:12px; height:12px; }
.star-half svg { position:absolute; top:0; left:0; width:12px; height:12px; }
.star-half .rs-on { clip-path:inset(0 50% 0 0); }

.reviews-grid {
  display:grid; grid-template-columns:repeat(3, minmax(0,1fr)); gap:26px;
  max-width:1180px; margin:0 auto;
}
.review-card {
  background:var(--panel); border:1px solid var(--border-soft);
  padding:32px 30px; transition:border-color .2s ease, transform .2s ease;
}
.review-card:hover { border-color:var(--gold-border); transform:translateY(-3px); }
.quote-icon { width:26px; height:26px; opacity:0.85; margin-bottom:16px; }
.review-card p { color:var(--text-soft); font-size:15px; line-height:1.7; font-weight:300; font-style:italic; margin-bottom:22px; }
.review-foot { display:flex; align-items:center; justify-content:space-between; padding-top:16px; border-top:1px solid var(--border-soft); }
.review-foot .source { color:var(--text-muted); font-size:12px; letter-spacing:0.3px; }

.reviews-cta { text-align:center; margin-top:48px; color:var(--text-muted); font-size:14px; font-weight:300; }
.reviews-cta a { color:var(--gold); text-decoration:none; border-bottom:1px solid var(--gold-border); transition:border-color .2s ease; }
.reviews-cta a:hover { border-color:var(--gold); }

/* ---------- Privacy / policy page ---------- */
.policy-main { max-width:720px; margin:0 auto; padding:20px 24px 80px; }
.policy-block { padding:32px 0; border-bottom:1px solid var(--border-soft); }
.policy-block:last-of-type { border-bottom:none; }
.policy-block h2 {
  font-family:'Playfair Display', serif; font-weight:500; font-size:20px;
  color:var(--gold-light); margin-bottom:14px;
}
.policy-block p { color:var(--text-soft); font-size:14.5px; line-height:1.8; font-weight:300; margin-bottom:10px; }
.policy-block p:last-child { margin-bottom:0; }
.policy-block a { color:var(--gold); text-decoration:none; border-bottom:1px solid var(--gold-border); }
.policy-block a:hover { border-color:var(--gold); }
.policy-block ul { list-style:none; margin:12px 0; }
.policy-block li {
  color:var(--text-soft); font-size:14.5px; line-height:1.8; font-weight:300;
  padding-left:18px; position:relative; margin-bottom:6px;
}
.policy-block li::before { content:'—'; position:absolute; left:0; color:var(--gold); }
.policy-updated { text-align:center; color:var(--text-muted); font-size:12.5px; margin-top:12px; }

/* ---------- Gift voucher form (bon.php) ---------- */
.bon-main { max-width:640px; margin:0 auto; padding:20px 24px 90px; }
.bon-alert {
  background:var(--gold-tint); border:1px solid var(--gold-border);
  color:var(--text); font-size:14px; line-height:1.6; font-weight:400;
  padding:14px 16px; border-radius:8px; margin-bottom:26px;
}
.bon-alert a { color:var(--gold); }
.bon-form { display:flex; flex-direction:column; gap:22px; }
.bon-row { display:flex; gap:18px; flex-wrap:wrap; }
.bon-row .bon-field { flex:1 1 220px; }
.bon-field { display:flex; flex-direction:column; gap:7px; }
.bon-field label {
  font-size:12.5px; letter-spacing:0.5px; text-transform:uppercase;
  color:var(--gold-light); font-weight:500;
}
.bon-field .req { color:var(--gold); }
.bon-field .opt { text-transform:none; letter-spacing:0; color:var(--text-muted); font-weight:300; }
.bon-field input,
.bon-field select,
.bon-field textarea {
  width:100%; font-family:'Jost', sans-serif; font-size:15px; color:var(--text);
  background:var(--ink); border:1px solid var(--gold-border); border-radius:8px;
  padding:12px 14px; transition:border-color .2s ease, box-shadow .2s ease;
}
.bon-field textarea { resize:vertical; min-height:110px; }
.bon-field input:focus,
.bon-field select:focus,
.bon-field textarea:focus {
  outline:none; border-color:var(--gold);
  box-shadow:0 0 0 3px var(--gold-tint);
}
.bon-field.has-error input,
.bon-field.has-error select,
.bon-field.has-error textarea { border-color:#c0392b; }
.bon-field ::placeholder { color:var(--text-muted); }
.bon-note { font-size:12.5px; line-height:1.6; color:var(--text-muted); font-weight:300; }
.bon-note a { color:var(--gold); }
.bon-form .btn { align-self:center; min-width:280px; margin-top:6px; }
.bon-hp { position:absolute; left:-9999px; width:1px; height:1px; overflow:hidden; }

.bon-thanks { text-align:center; }
.bon-thanks-lead { color:var(--text-soft); font-size:14.5px; font-weight:300; margin-bottom:22px; }
.bon-thanks-contact { display:flex; gap:16px; flex-wrap:wrap; justify-content:center; }
.bon-thanks-contact .btn { min-width:190px; text-align:center; }

@media (max-width:520px) {
  .bon-form .btn, .bon-thanks-contact .btn { align-self:stretch; width:100%; }
}

/* ---------- 404 page ---------- */
.notfound-page { display:flex; flex-direction:column; min-height:100vh; }
.notfound {
  flex:1; display:flex; flex-direction:column; align-items:center; justify-content:center;
  text-align:center; padding:40px 24px;
}
.notfound-logo { display:block; height:260px; width:auto; margin:0 auto 28px; opacity:0.9; }
.notfound-code {
  font-family:'Playfair Display', serif; font-weight:600; color:var(--gold);
  font-size:clamp(64px, 12vw, 120px); line-height:1; margin-bottom:8px;
}
.notfound h1 { font-family:'Playfair Display', serif; font-weight:500; font-size:clamp(24px, 3vw, 32px); color:var(--text); margin-bottom:16px; }
.notfound-sub { color:var(--text-muted); font-size:14.5px; line-height:1.7; font-weight:300; margin-bottom:36px; }
.notfound-actions { display:flex; gap:16px; flex-wrap:wrap; justify-content:center; }
.notfound-actions .btn { min-width:190px; text-align:center; }

.notfound-links-label {
  margin:48px 0 16px; color:var(--text-muted); font-size:12.5px;
  letter-spacing:0.5px; text-transform:uppercase; font-weight:400;
}
.notfound-links {
  display:flex; flex-wrap:wrap; justify-content:center; gap:10px;
  max-width:520px;
}
.notfound-links a {
  color:var(--text-soft); text-decoration:none; font-size:12px; letter-spacing:0.6px;
  border:1px solid var(--gold-border); padding:8px 16px; border-radius:999px;
  transition:background .2s ease, border-color .2s ease, color .2s ease;
  white-space:nowrap;
}
.notfound-links a:hover, .notfound-links a:focus-visible { background:var(--gold-tint); border-color:var(--gold); color:var(--gold-light); }

.notfound-contact {
  display:flex; flex-wrap:wrap; justify-content:center; align-items:center; gap:10px;
  margin-top:36px; color:var(--text-muted); font-size:13px; font-weight:300;
}
.notfound-contact a { color:var(--gold-light); text-decoration:none; }
.notfound-contact a:hover, .notfound-contact a:focus-visible { text-decoration:underline; }

/* ---------- Full menu page ---------- */
body.menu-page { background:var(--ink); }

.menu-page-header {
  position:relative; z-index:auto;
  display:flex; align-items:center; justify-content:space-between;
  padding:14px 64px;
  background:linear-gradient(180deg, rgba(184,134,58,0.06) 0%, transparent 100%);
  border-bottom:1px solid var(--border-soft);
}
.menu-page-header .logo-img { height:92px; }
.header-left, .header-right { display:flex; align-items:center; gap:32px; }
.back-link {
  display:flex; align-items:center; gap:8px;
  color:var(--text-soft); text-decoration:none; font-size:13px; letter-spacing:0.3px;
  padding:8px 14px; border:1px solid transparent; border-radius:999px;
  transition:color .2s ease, border-color .2s ease, background .2s ease;
}
.back-link svg { width:16px; height:16px; }
.back-link:hover, .back-link:focus-visible { color:var(--gold-light); border-color:var(--gold-border); background:var(--gold-tint); }

.menu-hero {
  position:relative; text-align:center; padding:96px 24px 44px;
  background:radial-gradient(ellipse 640px 320px at 50% -40px, rgba(184,134,58,0.16), transparent 72%);
}
.menu-hero-icon { width:30px; height:30px; margin-bottom:18px; opacity:0.9; }
.menu-hero .eyebrow { font-size:12px; letter-spacing:3px; font-weight:500; color:var(--gold); margin-bottom:12px; }
.menu-hero h1 { font-family:'Playfair Display', serif; font-weight:600; font-size:clamp(36px,5vw,56px); color:var(--text); }
.menu-hero-sub { color:var(--text-muted); font-size:14.5px; line-height:1.7; font-weight:300; margin-top:18px; max-width:520px; margin-left:auto; margin-right:auto; }

.menu-pdf-link {
  display:inline-flex; align-items:center; gap:9px; margin-top:24px;
  color:var(--gold-light); text-decoration:none; font-size:12.5px; letter-spacing:0.6px;
  border:1px solid var(--gold-border); padding:11px 20px; transition:border-color .2s ease, background .2s ease;
}
.menu-pdf-link svg { width:15px; height:15px; }
.menu-pdf-link:hover, .menu-pdf-link:focus-visible { border-color:var(--gold); background:var(--gold-tint); }

.menu-toc {
  position:sticky; top:0; z-index:20;
  display:flex; flex-wrap:wrap; justify-content:center; gap:10px;
  padding:16px 24px; margin-bottom:20px;
  background:rgba(250,246,238,0.92); backdrop-filter:blur(6px);
  border-bottom:1px solid var(--border-soft);
}
.menu-toc a {
  color:var(--text-soft); text-decoration:none; font-size:12px; letter-spacing:0.6px;
  border:1px solid var(--gold-border); padding:8px 16px; border-radius:999px;
  transition:background .2s ease, border-color .2s ease, color .2s ease;
  white-space:nowrap;
}
.menu-toc a:hover, .menu-toc a:focus-visible { background:var(--gold-tint); border-color:var(--gold); color:var(--gold-light); }

.menu-main { max-width:900px; margin:0 auto; padding:20px 24px 40px; }
.menu-section { padding:48px 0; border-bottom:1px solid var(--border-soft); scroll-margin-top:70px; }
.menu-section:last-child { border-bottom:none; }
.menu-section-head { text-align:center; margin-bottom:32px; }
.menu-section-head h2 { font-family:'Playfair Display', serif; font-weight:500; font-size:clamp(26px,3vw,34px); color:var(--text); }

.mgroup-title {
  font-family:'Playfair Display', serif; font-weight:500; font-size:16px; color:var(--gold-light);
  margin:32px 0 14px; padding-bottom:8px; border-bottom:1px solid var(--border-soft);
}
.mgroup-title em { color:var(--text-muted); font-style:italic; font-size:12px; font-weight:300; }

.mline { padding:14px 0; border-bottom:1px solid rgba(27,58,99,0.08); }
.mline:last-child { border-bottom:none; }
.mline-top { display:flex; align-items:baseline; gap:8px; }
.mname { color:var(--text); font-size:15px; font-weight:500; }
.mdots { flex:1; border-bottom:1px dotted var(--border-soft); margin-bottom:5px; }
.mprice { color:var(--gold-light); font-size:14.5px; font-weight:500; white-space:nowrap; }
.mline-sub { color:var(--text-muted); font-size:12.5px; line-height:1.6; font-weight:300; font-style:italic; margin-top:4px; }

.mgroup-compact .mline-compact {
  display:flex; align-items:baseline; gap:8px; padding:9px 0;
  border-bottom:1px solid rgba(27,58,99,0.08); font-size:14px;
}
.mgroup-compact .mline-compact .mname { font-size:14px; font-weight:400; }
.mgroup-compact .mline-compact .mname em { color:var(--text-muted); font-style:italic; font-weight:300; font-size:12.5px; }
.mgroup-2col { columns:2; column-gap:40px; }
.mgroup-2col .mline-compact { break-inside:avoid; }

.mnote { color:var(--text-muted); font-size:12.5px; line-height:1.7; font-style:italic; margin-top:20px; text-align:center; }
.menu-allergens { max-width:640px; margin-left:auto; margin-right:auto; }
.menu-allergens strong { color:var(--text-soft); font-style:normal; }

@media (max-width:720px) {
  .menu-page-header { padding:12px 20px; flex-wrap:wrap; gap:12px; }
  .menu-page-header .logo-img { height:56px; }
  .header-left, .header-right { gap:12px; }
  .back-link span { display:none; }
  .back-link { padding:8px; }
  .menu-toc { position:static; }
  .mgroup-2col { columns:1; }
  .header-utils .social-icon { display:none; }
  .menu-hero { padding:64px 20px 36px; }
}

/* ---------- Contact / footer ---------- */
.contact { display:flex; background:var(--ink); }
.contact-panel {
  flex:0 0 46%; max-width:640px; padding:80px 64px;
  display:flex; flex-direction:column; justify-content:center;
  background:var(--panel);
  border-right:1px solid var(--gold-border);
}
.eyebrow { font-size:12px; letter-spacing:3px; font-weight:500; color:var(--gold); margin-bottom:14px; }
.contact-panel h2 {
  font-family:'Playfair Display', serif; font-weight:500;
  font-size:clamp(32px, 3.4vw, 42px); color:var(--text); line-height:1.15; margin-bottom:20px;
}
.divider-sm {
  width:0; height:1px; background:var(--gold); margin-bottom:34px;
  transition:width .9s cubic-bezier(.16,.8,.3,1) .15s;
}
.reveal.in-view .divider-sm { width:56px; }

.info-list { list-style:none; margin-bottom:32px; }
.info-list li {
  display:flex; align-items:flex-start; gap:14px;
  font-size:15px; color:var(--text-soft); line-height:1.7; margin-bottom:18px;
}
.icon-badge {
  display:flex; align-items:center; justify-content:center;
  width:34px; height:34px; border-radius:50%; flex-shrink:0;
  background:var(--gold-tint); border:1px solid var(--gold-border);
  transition:background .25s ease, transform .25s ease;
}
.icon-badge svg { width:15px; height:15px; color:var(--gold); transition:color .25s ease; }
.info-list li:hover .icon-badge { background:var(--gold); transform:scale(1.1); }
.info-list li:hover .icon-badge svg { color:#1a1408; }
.info-list .muted { color:var(--text-muted); }
.info-list a {
  color:var(--gold-light); text-decoration:none;
  border-bottom:1px solid transparent; transition:border-color .2s ease, color .2s ease;
}
.info-list a:hover, .info-list a:focus-visible { color:var(--gold); border-color:var(--gold-border); }


.cta-row2 { display:flex; gap:16px; flex-wrap:wrap; }
.btn-icon { display:inline-flex; align-items:center; gap:10px; }
.btn-icon svg { width:15px; height:15px; }
.btn-sm { padding:16px 26px; font-size:12px; }

.contact-map { flex:1; min-height:400px; position:relative; isolation:isolate; }
.contact-map .leaflet-container { width:100%; height:100%; font-family:'Jost', sans-serif; }
.zs-marker svg { filter:drop-shadow(0 4px 8px rgba(0,0,0,0.45)); }

/* ---------- Site footer ---------- */
.site-footer { background:var(--panel); border-top:1px solid var(--border-soft); }
.footer-inner {
  max-width:1180px; margin:0 auto; padding:64px 64px 40px;
  display:grid; grid-template-columns:1.4fr 1fr 1fr; gap:40px;
}
.footer-logo { height:120px; width:auto; margin-bottom:14px; }
.footer-brand p { color:var(--text-muted); font-size:13.5px; font-weight:300; margin-bottom:18px; max-width:280px; }
.footer-social { display:flex; gap:14px; }
.footer-social a { display:inline-flex; color:var(--text-soft); transition:color .2s ease, transform .2s ease; }
.footer-social a:hover { color:var(--gold); transform:translateY(-2px); }
.footer-social svg { width:18px; height:18px; }

.footer-col { display:flex; flex-direction:column; gap:12px; }
.footer-col h4 { font-family:'Playfair Display', serif; font-weight:500; font-size:15px; color:var(--gold-light); margin-bottom:4px; }
.footer-col a, .footer-col span { color:var(--text-muted); font-size:13.5px; font-weight:300; text-decoration:none; }
.footer-col a:hover { color:var(--gold); }

.footer-bottom {
  border-top:1px solid var(--border-soft); padding:20px 64px;
  text-align:center; color:var(--text-muted); font-size:12px;
}

/* ---------- Cookie banner ---------- */
.cookie-banner {
  position:fixed; left:50%; bottom:22px; z-index:60;
  transform:translateX(-50%);
  width:min(560px, calc(100% - 32px));
  display:flex; align-items:center; gap:16px;
  background:rgba(240,230,210,0.92); backdrop-filter:blur(14px); -webkit-backdrop-filter:blur(14px);
  border:1px solid var(--gold-border);
  padding:16px 20px; box-shadow:0 24px 60px -18px rgba(27,58,99,0.4);
  animation:cookieRise .5s cubic-bezier(.16,.8,.3,1);
}
.cookie-banner[hidden] { display:none; }
.cookie-banner .icon-badge { flex-shrink:0; }
.cookie-banner p { color:var(--text-muted); font-size:12.5px; line-height:1.6; font-weight:300; flex:1 1 320px; }
.cookie-banner a { color:var(--gold); }
.cookie-banner .btn-sm { padding:11px 22px; font-size:11px; white-space:nowrap; flex-shrink:0; }
@keyframes cookieRise {
  from { opacity:0; transform:translateX(-50%) translateY(20px); }
  to   { opacity:1; transform:translateX(-50%) translateY(0); }
}

/* ---------- Mobile nav toggle & drawer ---------- */
.nav-toggle {
  display:none; align-items:center; justify-content:center;
  width:38px; height:38px; flex-shrink:0;
  border:1px solid var(--gold-border); color:var(--gold-light);
  background:transparent; cursor:pointer; transition:border-color .2s ease, background .2s ease;
}
.nav-toggle svg { width:18px; height:18px; }
.nav-toggle:hover, .nav-toggle:focus-visible { border-color:var(--gold); background:var(--gold-tint); }

.mobile-nav[hidden] { display:none; }
.mobile-nav { position:fixed; inset:0; z-index:90; }
.mobile-nav-backdrop {
  position:absolute; inset:0; background:rgba(8,12,18,0.55);
  opacity:0; transition:opacity .3s ease;
}
.mobile-nav-panel {
  position:absolute; top:0; right:0; bottom:0; width:min(320px, 86vw);
  background:var(--panel); box-shadow:-20px 0 50px -20px rgba(27,58,99,0.4);
  display:flex; flex-direction:column; gap:26px; padding:26px 24px;
  transform:translateX(100%); transition:transform .35s cubic-bezier(.16,.8,.3,1);
  overflow-y:auto;
}
.mobile-nav.open .mobile-nav-backdrop { opacity:1; }
.mobile-nav.open .mobile-nav-panel { transform:translateX(0); }

.mobile-nav-head { display:flex; align-items:center; justify-content:space-between; }
.mobile-nav-logo { height:40px; width:auto; }
.mobile-nav-close {
  display:flex; align-items:center; justify-content:center;
  width:36px; height:36px; border:1px solid var(--gold-border); color:var(--text-soft);
  background:transparent; cursor:pointer; transition:border-color .2s ease, color .2s ease;
}
.mobile-nav-close svg { width:16px; height:16px; }
.mobile-nav-close:hover, .mobile-nav-close:focus-visible { border-color:var(--gold); color:var(--gold); }

.mobile-nav-links { display:flex; flex-direction:column; gap:2px; }
.mobile-nav-links a {
  color:var(--text); text-decoration:none;
  font-family:'Playfair Display', serif; font-size:19px; font-weight:500;
  padding:13px 4px; border-bottom:1px solid var(--border-soft);
  transition:color .2s ease, padding-left .2s ease;
}
.mobile-nav-links a:hover, .mobile-nav-links a:focus-visible { color:var(--gold); padding-left:8px; }

.mobile-nav-call { justify-content:center; text-align:center; }
.mobile-nav-social { display:flex; gap:14px; justify-content:center; margin-top:auto; }
.mobile-nav-social a { color:var(--text-muted); transition:color .2s ease; }
.mobile-nav-social a:hover { color:var(--gold); }
.mobile-nav-social svg { width:19px; height:19px; }

body.nav-open, body.lightbox-open { overflow:hidden; }

@media (min-width:1261px) {
  .mobile-nav { display:none !important; }
}

/* ---------- Responsive ----------
   Threshold is 1260px (not the more typical ~900px) because the full desktop
   nav — 6 links + socials + language switch + "Rezerviraj" button — needs
   up to ~1206px of content width in German (the longest of the 4 languages)
   before it wraps or overflows; anything narrower gets the hamburger menu. */
/* Header/nav only — the full desktop nav (6 links + socials + language switch
   + "Rezerviraj" button) needs up to ~1206px of content width in German (the
   longest of the 4 languages) before it wraps or overflows, so this stays
   wider than the content-stacking breakpoint below. */
@media (max-width:1260px) {
  .site-header { padding:10px 16px; }
  .site-header nav { display:none; }
  .sticky-nav-links { display:none; }
  .sticky-nav { padding:8px 20px; }
  .sticky-nav-logo img { height:56px; }
  #domov, #o-nas, #galerija, #dogodki, #boni, #mnenja, #kontakt { scroll-margin-top:88px; }
  .logo-img { height:48px; }
  .site-header .logo-img { height:80px; }
  .header-nav-group { gap:8px; }
  .book-btn span.label { display:none; }
  .book-btn { padding:11px; border-radius:50%; }
  .header-utils { gap:10px; }
  .header-utils .social-icon { display:none; }
  .nav-toggle { display:flex; }
}

/* Content sections — stacked/compact layout for tablet and phone widths. */
@media (max-width:900px) {
  .announcement-bar { padding:10px 44px 10px 16px; }
  .announcement-bar p { font-size:11.5px; }
  .back-to-top { right:16px; bottom:calc(16px + var(--cookie-offset, 0px)); width:40px; height:40px; }

  .hero-split { flex-direction:column; min-height:auto; }
  .hero-media { flex:none; height:280px; min-height:280px; }
  .content { padding:48px 24px; align-items:center; text-align:center; }
  .content .cta-row { justify-content:center; }
  .divider { margin-left:auto; margin-right:auto; }
  p.subtitle { font-size:16px; max-width:480px; }
  .cta-row { gap:14px; }
  .btn { padding:15px 24px; font-size:11.5px; }

  .contact { flex-direction:column; }
  .contact-panel {
    flex:none; max-width:none; padding:56px 28px;
    border-right:none; border-bottom:1px solid var(--gold-border);
  }
  .contact-map { height:420px; min-height:420px; }

  .about { flex-direction:column; padding:80px 28px; gap:44px; }
  .about-media { order:-1; }
  .about-media svg { max-width:220px; }

  .gallery { padding:64px 20px; }
  .gallery-grid { grid-template-columns:repeat(3, 1fr); gap:10px; max-width:720px; }
  .gallery-grid + .gallery-subtitle { margin-top:44px; }
  .lightbox { padding:80px 12px; }
  .lightbox-close { top:10px; right:10px; width:38px; height:38px; }
  .lightbox-prev { left:6px; }
  .lightbox-next { right:6px; }
  .lightbox-nav { width:38px; height:38px; }

  .vouchers { padding:40px 24px; }
  .vouchers-inner { flex-direction:column; text-align:center; }
  /* flex-basis:320px on .vouchers-text targets the desktop row layout's
     width; in this column layout the main axis is vertical, so that same
     basis would force a 320px-tall block instead — reset it here. */
  .vouchers-text { flex-basis:auto; }

  .reviews { padding:80px 24px; }
  .reviews-grid { grid-template-columns:1fr; gap:20px; }
  .rating-badge { padding:14px 20px; }

  .events { padding:64px 24px; }
  .events-grid { grid-template-columns:repeat(2, minmax(0,1fr)); gap:16px; }

  .footer-inner { grid-template-columns:1fr; gap:32px; padding:48px 28px 32px; text-align:center; }
  .footer-brand p { margin-left:auto; margin-right:auto; }
  .footer-social { justify-content:center; }
  .footer-bottom { padding:18px 24px; }

  .cookie-banner {
    bottom:14px; width:calc(100% - 24px); padding:16px;
    flex-direction:column; align-items:stretch; text-align:center;
  }
  .cookie-banner .icon-badge { margin:0 auto; }
  /* flex-basis:320px on .cookie-banner p targets the desktop row layout's
     width; in this column layout the main axis is vertical, so that same
     basis would force a 320px-tall paragraph instead — reset it here. */
  .cookie-banner p { flex-basis:auto; }
}

/* Telefoni — galerija v 2 stolpca (mora biti za pravilom 900px). */
@media (max-width:560px) {
  .gallery-grid { grid-template-columns:repeat(2, 1fr); max-width:420px; }
}

@media (prefers-reduced-motion: reduce) {
  .badge, .hero-eyebrow, h1, .divider, p.subtitle, .cta-row { animation:none; opacity:1; }
  .badge svg { animation:none; }
  html { scroll-behavior:auto; }
  .reveal, .reveal-stagger > * {
    opacity:1; transform:none; transition:none;
  }
  .divider-sm { width:56px; transition:none; }
  .hero-bg, .hero-photo { transform:none !important; }
}
