:root {
  --ground: #FFF6EC;
  --surface: #FFFFFF;
  --surface-2: #FFEBD6;
  --ink: #2A1B3D;
  --ink-2: #6E5F7E;
  --line: #EBD9C8;
  --accent: #FFC531;
  --accent-deep: #E8AA00;
  --accent-ink: #2A1B3D;
  --coral: #FF5D73;
  --teal: #1FA98F;
  --focus: #3A86FF;
  --shadow: 0 10px 30px rgba(42, 27, 61, .10);
  --radius: 18px;
  --display: "Baloo 2", "Nunito", "Segoe UI", system-ui, sans-serif;
  --body: "Nunito", "Segoe UI", system-ui, -apple-system, sans-serif;
  color-scheme: light;
}
@media (prefers-color-scheme: dark) {
  :root:not([data-theme="light"]) {
    --ground: #1B1326; --surface: #271B36; --surface-2: #32244A; --ink: #FBF3F7; --ink-2: #B9A9CB;
    --line: #3F2F58; --accent-ink: #1B1326; --shadow: 0 10px 30px rgba(0, 0, 0, .35); color-scheme: dark;
  }
}
:root[data-theme="dark"] {
  --ground: #1B1326; --surface: #271B36; --surface-2: #32244A; --ink: #FBF3F7; --ink-2: #B9A9CB;
  --line: #3F2F58; --accent-ink: #1B1326; --shadow: 0 10px 30px rgba(0, 0, 0, .35); color-scheme: dark;
}

* { box-sizing: border-box; }
[hidden] { display: none !important; }
html { scroll-behavior: smooth; scroll-padding-top: 96px; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } *, *::before, *::after { animation: none !important; transition: none !important; } }
body {
  margin: 0; background: var(--ground); color: var(--ink);
  font-family: var(--body); font-size: 17px; line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}
h1, h2, h3 { font-family: var(--display); font-weight: 600; line-height: 1.1; margin: 0; text-wrap: balance; letter-spacing: -.01em; }
h1 { font-size: clamp(2.5rem, 5.8vw, 4.4rem); font-weight: 800; letter-spacing: -.02em; }
h2 { font-size: clamp(1.7rem, 3.2vw, 2.4rem); }
h3 { font-size: 1.35rem; }
p { margin: 0; }
a { color: inherit; }
button { font: inherit; color: inherit; }
:focus-visible { outline: 3px solid var(--focus); outline-offset: 2px; border-radius: 6px; }
.muted { color: var(--ink-2); }
.hint { color: var(--ink-2); font-size: .92rem; margin-top: 14px; }
.skip { position: absolute; left: -999px; top: 8px; background: var(--accent); color: var(--accent-ink); padding: 8px 12px; border-radius: 8px; }
.skip:focus { left: 8px; z-index: 100; }

/* Buttons */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 11px 20px; border-radius: 999px; border: 2px solid transparent;
  font-weight: 800; text-decoration: none; cursor: pointer; transition: transform .12s ease, background .15s ease, border-color .15s ease;
  white-space: nowrap;
}
.btn:active { transform: translateY(1px); }
.btn-primary { background: var(--accent); color: var(--accent-ink); }
.btn-primary:hover { background: var(--accent-deep); }
.btn-ghost { background: transparent; border-color: var(--line); color: var(--ink); }
.btn-ghost:hover { border-color: var(--ink-2); }
.btn-lg { padding: 15px 28px; font-size: 1.05rem; }
.btn[disabled] { opacity: .5; cursor: not-allowed; }

/* Header */
.site-header {
  position: sticky; top: 0; z-index: 20; display: flex; align-items: center; gap: 28px;
  padding: 8px clamp(16px, 4vw, 48px); background: color-mix(in srgb, var(--ground) 86%, transparent);
  backdrop-filter: blur(10px); border-bottom: 1px solid var(--line);
}
.brand { display: flex; align-items: center; gap: 10px; text-decoration: none; margin-right: auto; }
.brand-mark { font-size: 1.5rem; }
.brand-name { font-family: var(--display); font-weight: 700; font-size: 1.35rem; }
.brand-logo { display: block; height: 75px; width: auto; }
.brand-logo-lg { height: 96px; margin-bottom: 10px; }
@media (max-width: 760px) { .brand-logo { height: 62px; } }
.site-nav { display: flex; gap: 22px; font-weight: 700; }
.site-nav a { text-decoration: none; color: var(--ink-2); }
.site-nav a:hover { color: var(--ink); }
@media (max-width: 760px) { .site-nav { display: none; } }

/* Layout */
main { display: flow-root; }
.section { padding: clamp(32px, 4.5vw, 60px) clamp(16px, 4vw, 48px); }
.section > * { max-width: 1084px; margin-left: auto; margin-right: auto; }
.section-tinted { max-width: none; background: var(--surface-2); }
.section-tinted > * { max-width: 1084px; margin-left: auto; margin-right: auto; }
.section-head { margin-bottom: 26px; display: grid; gap: 10px; }
.section-head p { max-width: 62ch; }
.section-head p { color: var(--ink-2); font-size: 1.08rem; }

/* Hero */
.hero {
  display: grid; grid-template-columns: minmax(0, 1.15fr) minmax(0, .85fr); gap: clamp(24px, 5vw, 64px); align-items: center;
  padding: clamp(28px, 4.5vw, 56px) clamp(16px, 4vw, 48px) clamp(28px, 4vw, 48px); max-width: 1180px; margin: 0 auto;
}
.eyebrow { text-transform: uppercase; letter-spacing: .12em; font-size: .8rem; font-weight: 800; color: var(--ink-2); margin-bottom: 18px; }
.lede { font-size: 1.2rem; font-weight: 600; color: var(--ink-2); max-width: 54ch; margin-top: 20px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 30px; }
.hero-facts { list-style: none; padding: 0; margin: 40px 0 0; display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.hero-facts li { display: grid; gap: 2px; padding-left: 14px; border-left: 3px solid var(--accent); }
.hero-facts strong { font-weight: 800; }
.hero-facts span { color: var(--ink-2); font-size: .92rem; }
.hero-art { position: relative; min-height: 380px; }
.cast { position: relative; height: 100%; min-height: 380px; }
.cast-bubble {
  position: absolute; display: grid; place-items: center; border-radius: 50%; font-size: 4rem;
  box-shadow: var(--shadow); border: 5px solid var(--surface); animation: bob 5s ease-in-out infinite;
}
.cast-bubble:nth-child(2) { animation-delay: -1.5s; } .cast-bubble:nth-child(3) { animation-delay: -3s; }
.cast-bubble:nth-child(4) { animation-delay: -4s; } .cast-bubble:nth-child(5) { animation-delay: -.7s; }
@keyframes bob { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-9px); } }
.confetti { position: absolute; inset: 0; background-image:
  radial-gradient(circle at 12% 18%, var(--coral) 5px, transparent 6px),
  radial-gradient(circle at 88% 12%, var(--teal) 4px, transparent 5px),
  radial-gradient(circle at 70% 88%, var(--accent) 6px, transparent 7px),
  radial-gradient(circle at 20% 85%, #B57BEE 4px, transparent 5px),
  radial-gradient(circle at 50% 4%, var(--accent) 4px, transparent 5px),
  radial-gradient(circle at 95% 60%, var(--coral) 3px, transparent 4px),
  radial-gradient(circle at 5% 55%, var(--teal) 3px, transparent 4px); }
@media (max-width: 900px) {
  .hero { grid-template-columns: 1fr; }
  .hero-art { min-height: 260px; order: -1; }
  .cast { min-height: 260px; }
  .cast-bubble { font-size: 3rem; }
  .hero-facts { grid-template-columns: 1fr; }
}

/* Mascots */
.mascot-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 22px; }
.mascot-card {
  display: grid; grid-template-rows: auto 1fr auto; gap: 14px; padding: 22px; background: var(--surface);
  border-radius: var(--radius); border: 1px solid var(--line); position: relative; overflow: hidden;
}
.mascot-card::before { content: ""; position: absolute; inset: 0 0 auto 0; height: 6px; background: var(--mc); }
.mascot-face {
  width: 88px; height: 88px; border-radius: 50%; display: grid; place-items: center; font-size: 2.6rem;
  background: color-mix(in srgb, var(--mc) 22%, var(--surface)); overflow: hidden;
}
.mascot-face img { width: 100%; height: 100%; object-fit: cover; }
.mascot-card h3 { margin-top: 4px; }
.mascot-tag { font-weight: 700; color: var(--ink-2); }
.mascot-desc { color: var(--ink-2); font-size: .97rem; margin-top: 6px; }
.mascot-meta { display: flex; justify-content: flex-end; align-items: center; gap: 10px; }
.pill { display: inline-block; padding: 4px 10px; border-radius: 999px; background: var(--surface-2); font-size: .82rem; font-weight: 800; }

/* Packages */
.package-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 22px; }
.package-card { background: var(--surface); border-radius: var(--radius); padding: 26px; display: grid; gap: 10px; border: 1px solid var(--line); }
.package-card.is-featured { border-color: var(--accent); box-shadow: var(--shadow); }
.package-card .duration { font-weight: 800; color: var(--ink-2); font-variant-numeric: tabular-nums; }
.package-card .price { font-family: var(--display); font-size: 2.2rem; font-weight: 700; }
.package-card p { color: var(--ink-2); min-height: 3.2em; }
.package-card .btn { justify-self: start; margin-top: 6px; }

/* Steps */
.steps { list-style: none; padding: 0; margin: 0; display: grid; grid-template-columns: repeat(auto-fit, minmax(230px, 1fr)); gap: 26px; counter-reset: s; }
.steps li { display: flex; gap: 14px; align-items: flex-start; }
.step-n { flex: none; width: 38px; height: 38px; border-radius: 50%; display: grid; place-items: center; background: var(--accent); color: var(--accent-ink); font-family: var(--display); font-weight: 700; font-size: 1.1rem; }
.steps strong { display: block; margin-bottom: 4px; }
.steps p { color: var(--ink-2); font-size: .95rem; }

/* Booking */
.booking-layout { display: grid; grid-template-columns: minmax(0, 1fr) 300px; gap: 28px; align-items: start; }
@media (max-width: 860px) { .booking-layout { grid-template-columns: 1fr; } .summary { position: static !important; } }
.wizard { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); padding: clamp(18px, 3vw, 32px); }
.wizard-nav { list-style: none; padding: 0; margin: 0 0 26px; display: flex; gap: 6px; flex-wrap: wrap; }
.wizard-nav li { display: flex; align-items: center; gap: 8px; padding: 6px 12px 6px 6px; border-radius: 999px; font-weight: 800; font-size: .9rem; color: var(--ink-2); }
.wizard-nav li em { font-style: normal; }
.wizard-nav li span { width: 26px; height: 26px; border-radius: 50%; display: grid; place-items: center; background: var(--surface-2); font-size: .82rem; }
.wizard-nav li.is-current { color: var(--ink); background: var(--surface-2); }
.wizard-nav li.is-current span, .wizard-nav li.is-done span { background: var(--accent); color: var(--accent-ink); }
.wizard-step { border: 0; padding: 0; margin: 0; min-width: 0; }
.wizard-step legend { font-family: var(--display); font-size: 1.4rem; font-weight: 600; margin-bottom: 18px; padding: 0; }
.choice-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(150px, 1fr)); gap: 12px; }
.choice {
  display: grid; justify-items: center; gap: 6px; padding: 16px 10px; border-radius: 14px; border: 2px solid var(--line);
  background: var(--ground); cursor: pointer; text-align: center; transition: border-color .15s, transform .12s;
}
.choice:hover { transform: translateY(-2px); }
.choice input { position: absolute; opacity: 0; pointer-events: none; }
.choice .face { width: 56px; height: 56px; border-radius: 50%; display: grid; place-items: center; font-size: 1.8rem; background: color-mix(in srgb, var(--mc) 22%, var(--surface)); overflow: hidden; }
.choice .face img { width: 100%; height: 100%; object-fit: cover; }
.choice strong { font-size: .95rem; }
.choice small { color: var(--ink-2); }
.choice.is-selected { border-color: var(--accent); background: color-mix(in srgb, var(--accent) 14%, var(--surface)); }
.choice:has(input:focus-visible) { outline: 3px solid var(--focus); outline-offset: 2px; }

.field { display: grid; gap: 6px; font-weight: 700; font-size: .92rem; min-width: 0; margin-bottom: 16px; }
.field em { font-style: normal; font-weight: 400; color: var(--ink-2); }
.field input, .field select, .field textarea {
  font: inherit; font-weight: 600; color: var(--ink); background: var(--ground); border: 2px solid var(--line); border-radius: 10px;
  padding: 10px 12px; width: 100%; min-width: 0;
}
.field input:focus, .field select:focus, .field textarea:focus { border-color: var(--focus); outline: none; }
.field textarea { resize: vertical; }
.field-row { display: grid; grid-template-columns: repeat(auto-fit, minmax(170px, 1fr)); gap: 14px; }
.field-row .field-sm { max-width: 170px; }

.slots { margin-top: 4px; }
.slot-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(92px, 1fr)); gap: 8px; }
.slot { padding: 9px 6px; border-radius: 10px; border: 2px solid var(--line); background: var(--ground); font-weight: 800; font-variant-numeric: tabular-nums; cursor: pointer; }
.slot:hover:not([disabled]) { border-color: var(--ink-2); }
.slot[disabled] { opacity: .38; cursor: not-allowed; text-decoration: line-through; }
.slot.is-selected { background: var(--accent); border-color: var(--accent); color: var(--accent-ink); }
.slot-note { color: var(--ink-2); font-size: .92rem; margin-top: 10px; }

.review { display: grid; grid-template-columns: max-content 1fr; gap: 10px 20px; margin: 0; }
.review dt { color: var(--ink-2); font-weight: 700; }
.review dd { margin: 0; }
.form-error { margin: 16px 0 0; padding: 12px 14px; border-radius: 10px; background: color-mix(in srgb, var(--coral) 16%, var(--surface)); color: var(--ink); border-left: 4px solid var(--coral); font-weight: 700; }
.wizard-actions { display: flex; justify-content: flex-end; gap: 10px; margin-top: 26px; }

.summary { position: sticky; top: 106px; background: var(--surface-2); border-radius: var(--radius); padding: 22px; display: grid; gap: 14px; }
.summary-list { margin: 0; display: grid; gap: 10px; }
.summary-list div { display: grid; gap: 2px; }
.summary-list dt { font-size: .78rem; text-transform: uppercase; letter-spacing: .1em; font-weight: 800; color: var(--ink-2); }
.summary-list dd { margin: 0; font-weight: 700; }
.summary-total { display: flex; justify-content: space-between; align-items: baseline; border-top: 1px dashed var(--ink-2); padding-top: 12px; }
.summary-total strong { font-family: var(--display); font-size: 1.8rem; }

.success { grid-column: 1 / -1; background: var(--surface); border: 2px solid var(--accent); border-radius: var(--radius); padding: 40px; text-align: center; display: grid; gap: 10px; justify-items: center; }
.success-mark { font-size: 3.5rem; }
.success .ref { font-family: var(--display); font-size: 1.4rem; letter-spacing: .05em; background: var(--surface-2); padding: 2px 10px; border-radius: 8px; }
.success .btn { margin-top: 10px; }

/* FAQ */
.faq { display: grid; gap: 10px; max-width: 760px; }
.faq details { background: var(--surface); border: 1px solid var(--line); border-radius: 14px; padding: 4px 18px; }
.faq summary { font-weight: 800; padding: 12px 0; cursor: pointer; }
.faq p { color: var(--ink-2); padding: 0 0 16px; }

/* Find */
.find { display: grid; gap: 22px; max-width: 640px; }
.find-form { display: flex; gap: 12px; align-items: end; flex-wrap: wrap; }
.find-form .field { flex: 1; margin: 0; min-width: 200px; }
.find-result { background: var(--surface); border-radius: 14px; padding: 18px 22px; display: grid; gap: 4px; }
.status { display: inline-block; padding: 3px 10px; border-radius: 999px; font-size: .8rem; font-weight: 800; text-transform: uppercase; letter-spacing: .06em; }
.status-pending { background: color-mix(in srgb, var(--accent) 30%, var(--surface)); }
.status-confirmed { background: color-mix(in srgb, var(--teal) 25%, var(--surface)); }
.status-completed { background: var(--surface-2); color: var(--ink-2); }
.status-cancelled { background: color-mix(in srgb, var(--coral) 22%, var(--surface)); }

/* Footer */
.site-footer { display: flex; justify-content: space-between; gap: 24px; flex-wrap: wrap; padding: 40px clamp(16px, 4vw, 48px); border-top: 1px solid var(--line); color: var(--ink-2); max-width: 1180px; margin: 0 auto; }
.footer-contact { display: grid; gap: 4px; text-align: right; font-weight: 700; }

/* Konfete pri skrolovanju */
.confetti-canvas { position: fixed; inset: 0; width: 100%; height: 100%; pointer-events: none; z-index: 0; }
main, .site-footer { position: relative; z-index: 1; }

/* =========================================================
   Doodle skin: rukom crtane ivice, tvrde senke, nalepnice
   ========================================================= */
:root {
  --ink-line: #2A1B3D;
  --hard: #2A1B3D;
  --doodle: 255px 18px 225px 18px / 18px 225px 18px 255px;
  --doodle-sm: 18px 10px 16px 10px / 10px 16px 10px 18px;
  --doodle-pill: 30px 14px 28px 14px / 14px 28px 14px 30px;
  --paper: radial-gradient(var(--line) 1.3px, transparent 1.4px);
}
@media (prefers-color-scheme: dark) { :root:not([data-theme="light"]) { --ink-line: #F1E6F5; --hard: #0B0612; } }
:root[data-theme="dark"] { --ink-line: #F1E6F5; --hard: #0B0612; }

body { background-color: var(--ground); background-image: var(--paper); background-size: 24px 24px; }

/* Headings with a squiggle underline */
.section-head h2 {
  display: inline-block; padding-bottom: 12px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 200 12' preserveAspectRatio='none'%3E%3Cpath d='M3 8 C 30 1, 60 12, 95 6 S 150 1, 197 7' fill='none' stroke='%23FFC531' stroke-width='5' stroke-linecap='round'/%3E%3C/svg%3E") no-repeat left bottom / 100% 10px;
}

/* Buttons: outlined, hard shadow, press on click */
.btn { border-radius: 999px; box-shadow: 0 2px 0 rgba(42, 27, 61, .12); }
.btn:hover { transform: translateY(-1px); }
.btn:active { transform: translateY(1px); box-shadow: none; }
.btn-ghost { background: var(--surface); border-color: var(--line); }
.btn-ghost:hover { border-color: var(--ink-2); }

/* Header & footer */
.site-header { border-bottom: 3px solid var(--ink-line); }
.site-footer { border-top: 3px dashed var(--ink-line); }

/* Hero */
.eyebrow {
  display: inline-block; padding: 6px 12px; background: var(--accent); color: var(--accent-ink);
  border: 3px solid var(--ink-line); border-radius: var(--doodle-sm); box-shadow: 3px 3px 0 var(--hard); transform: rotate(-2deg);
}
.hero-facts li {
  border: 3px solid var(--ink-line); border-radius: var(--doodle-sm); background: var(--surface); padding: 12px 14px;
  box-shadow: 4px 4px 0 var(--hard);
}
.hero-facts li:nth-child(1) { transform: rotate(-1.2deg); } .hero-facts li:nth-child(2) { transform: rotate(.8deg); } .hero-facts li:nth-child(3) { transform: rotate(-.6deg); }
.cast-bubble { border: 4px solid var(--ink-line); box-shadow: 6px 6px 0 var(--hard); }
.confetti { opacity: .9; }

/* Cards */
.mascot-card, .package-card, .wizard, .summary, .faq details, .find-result, .success {
  border: 3px solid var(--ink-line); border-radius: var(--doodle); box-shadow: 7px 7px 0 var(--hard);
}
.mascot-card::before { content: none; }
.mascot-card { padding: 24px 24px 22px; transition: transform .15s ease, box-shadow .15s ease; }
.mascot-card:nth-child(odd) { transform: rotate(-1deg); } .mascot-card:nth-child(even) { transform: rotate(1deg); }
.mascot-card:hover { transform: rotate(0) translateY(-4px); box-shadow: 10px 10px 0 var(--hard); }
.mascot-face { border: 3px solid var(--ink-line); box-shadow: 4px 4px 0 var(--mc); background: color-mix(in srgb, var(--mc) 30%, var(--surface)); }
.mascot-tag { color: var(--mc); filter: saturate(1.1) brightness(.85); }
.pill, .status { border: 2px solid var(--ink-line); border-radius: var(--doodle-pill); }
.package-card.is-featured { border-color: var(--ink-line); box-shadow: 7px 7px 0 var(--accent); }
.package-card .price { text-decoration: underline wavy var(--accent); text-underline-offset: 6px; text-decoration-thickness: 3px; }
.package-card:nth-child(1) { transform: rotate(-.7deg); } .package-card:nth-child(3) { transform: rotate(.7deg); }

/* Steps */
.step-n { border: 0; box-shadow: none; }

/* Booking form */
.wizard-nav li.is-current { border: 2px dashed var(--ink-line); }
.choice { border: 3px solid var(--ink-line); border-radius: var(--doodle-sm); background: var(--surface); box-shadow: 4px 4px 0 var(--hard); transition: transform .12s ease, box-shadow .12s ease, background .15s ease; }
.choice:hover { transform: translate(-1px, -1px) rotate(-1deg); box-shadow: 5px 5px 0 var(--hard); }
.choice .face { border: 3px solid var(--ink-line); }
.choice.is-selected { background: var(--accent); border-color: var(--ink-line); }
.choice.is-selected small { color: var(--accent-ink); }
.field input, .field select, .field textarea { border: 3px solid var(--ink-line); border-radius: var(--doodle-sm); background: var(--surface); }
.field input:focus, .field select:focus, .field textarea:focus { border-color: var(--ink-line); box-shadow: 3px 3px 0 var(--accent); }
.slot { border: 3px solid var(--ink-line); border-radius: var(--doodle-sm); background: var(--surface); box-shadow: 3px 3px 0 var(--hard); }
.slot:hover:not([disabled]) { border-color: var(--ink-line); transform: translate(-1px, -1px); }
.slot[disabled] { box-shadow: none; opacity: .35; }
.slot.is-selected { background: var(--accent); border-color: var(--ink-line); }
.summary { background: var(--surface-2); transform: rotate(1deg); }
.summary-total { border-top: 3px dashed var(--ink-line); }
.form-error { border: 3px solid var(--coral); border-radius: var(--doodle-sm); }
.success { border-color: var(--ink-line); transform: rotate(-.5deg); }
.success .ref { border: 2px solid var(--ink-line); border-radius: var(--doodle-sm); }

/* FAQ, find */
.faq details { box-shadow: 4px 4px 0 var(--hard); }
.faq details:nth-child(even) { transform: rotate(.4deg); } .faq details:nth-child(odd) { transform: rotate(-.4deg); }
.find-result { box-shadow: 5px 5px 0 var(--hard); }

@media (prefers-reduced-motion: reduce) {
  .mascot-card, .package-card, .hero-facts li, .faq details, .summary, .success, .eyebrow { transform: none !important; }
}

/* Izbor jezika */
.lang-switch { display: inline-flex; border: 2px solid var(--line); border-radius: 999px; overflow: hidden; background: var(--surface); }
.lang-switch button { border: 0; background: transparent; padding: 7px 10px; font-weight: 800; font-size: .82rem; letter-spacing: .04em; cursor: pointer; color: var(--ink-2); }
.lang-switch button + button { border-left: 2px solid var(--line); }
.lang-switch button:hover { color: var(--ink); }
.lang-switch button.is-active { background: var(--accent); color: var(--accent-ink); }
@media (max-width: 760px) { .lang-switch button { padding: 6px 8px; } .site-header .btn-primary { display: none; } }

/* Više maskota i popust */
.discount-note { margin-top: 22px; font-weight: 800; display: inline-block; padding: 8px 14px; background: var(--accent); color: var(--accent-ink); border: 3px solid var(--ink-line); border-radius: var(--doodle-sm); box-shadow: 3px 3px 0 var(--hard); transform: rotate(-1deg); }
.section .discount-note { display: table; margin-left: auto; margin-right: auto; text-align: center; }
.choice .check { position: absolute; top: 8px; right: 8px; width: 22px; height: 22px; border-radius: 50%; border: 2px solid var(--ink-line); background: var(--surface); display: grid; place-items: center; font-size: .8rem; font-weight: 900; color: transparent; }
.choice { position: relative; }
.choice.is-selected .check { background: var(--ink-line); color: var(--surface); }
.sum-lines { display: grid; gap: 2px; font-weight: 700; }
.sum-lines .muted { font-weight: 600; font-size: .85rem; }
.per-mascot { color: var(--ink-2); font-weight: 700; font-size: .9rem; }

/* =========================================================
   Sekcije: svaka sa svojom pozadinom, galerija, utisci, stranica maskote
   ========================================================= */
:root {
  --bg-mascots: #FFFFFF; --bg-packages: #FFF1C2; --bg-gallery: #DDF3EE; --bg-how: #FFE4D6;
  --bg-reviews: #EDE3FA; --bg-booking: #FFF6EC; --bg-faq: #FFFFFF; --bg-find: #FFE9F2; --bg-others: #F3EEF9;
}
@media (prefers-color-scheme: dark) { :root:not([data-theme="light"]) {
  --bg-mascots: #221831; --bg-packages: #2E2718; --bg-gallery: #16302C; --bg-how: #2F2027;
  --bg-reviews: #261C3A; --bg-booking: #1B1326; --bg-faq: #221831; --bg-find: #2C1A27; --bg-others: #241A33; } }
:root[data-theme="dark"] {
  --bg-mascots: #221831; --bg-packages: #2E2718; --bg-gallery: #16302C; --bg-how: #2F2027;
  --bg-reviews: #261C3A; --bg-booking: #1B1326; --bg-faq: #221831; --bg-find: #2C1A27; --bg-others: #241A33; }
.section-mascots { background: var(--bg-mascots); }
.section-packages { background: var(--bg-packages); }
.section-gallery { background: var(--bg-gallery); }
.section-how { background: var(--bg-how); }
.section-reviews { background: var(--bg-reviews); }
.section-booking { background: var(--bg-booking); }
.section-faq { background: var(--bg-faq); }
.section-find { background: var(--bg-find); }
.section-others { background: var(--bg-others); }
.section-packages .package-card, .section-mascots .mascot-card, .section-faq .faq details { background: var(--surface); }
.section-mascots .mascot-card { background: var(--ground); }
.section-faq .faq details { background: var(--ground); }
.discount-note { margin-top: 18px; }

/* Kartice maskota: link i "saznaj više" */
.mascot-link { color: inherit; text-decoration: none; display: inline-block; }
.mascot-link:hover { text-decoration: underline; text-decoration-color: var(--mc); text-decoration-thickness: 3px; }
.more-link { display: inline-block; margin-top: 8px; font-weight: 800; color: var(--mc); filter: saturate(1.1) brightness(.85); text-decoration: none; }
.more-link:hover { text-decoration: underline; }
.pkg-tagline { font-weight: 800; color: var(--ink); margin: -4px 0 4px; }

/* Galerija */
.gallery { display: grid; grid-template-columns: repeat(4, 1fr); grid-auto-rows: 170px; gap: 12px; }
.tile { margin: 0; border-radius: 16px; overflow: hidden; border: 3px solid var(--ink-line); box-shadow: 5px 5px 0 var(--hard); background: color-mix(in srgb, var(--tile) 35%, var(--surface)); position: relative; }
.tile img { width: 100%; height: 100%; object-fit: cover; display: block; }
.tile-wide { grid-column: span 2; }
.tile-tall { grid-row: span 2; }
.tile.is-empty::after { content: attr(data-label); position: absolute; inset: 0; display: grid; place-items: center; font-weight: 800; color: var(--ink-2); font-size: .95rem; }
.tile.is-empty::before { content: "📷"; position: absolute; left: 50%; top: 50%; transform: translate(-50%, -110%); font-size: 2rem; opacity: .6; }
@media (max-width: 760px) { .gallery { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 140px; } .tile-wide { grid-column: span 2; } .tile-tall { grid-row: span 1; } }

/* Utisci */
.reviews { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 18px; }
.review-card { margin: 0; background: var(--surface); border: 3px solid var(--ink-line); border-radius: var(--doodle); box-shadow: 6px 6px 0 var(--hard); padding: 22px 24px; display: grid; gap: 14px; }
.review-card:nth-child(1) { transform: rotate(-.8deg); } .review-card:nth-child(3) { transform: rotate(.8deg); }
.review-card blockquote { margin: 0; font-size: 1.05rem; font-weight: 600; line-height: 1.5; }
.review-card blockquote::before { content: "“"; font-family: var(--display); font-size: 2.6rem; line-height: 0; color: var(--accent-deep); margin-right: 4px; vertical-align: -12px; }
.review-card figcaption { display: grid; gap: 2px; color: var(--ink-2); font-weight: 700; font-size: .92rem; }
.stars { color: var(--accent-deep); letter-spacing: 2px; font-size: 1rem; }

/* Stranica maskote */
.mascot-hero { background: color-mix(in srgb, var(--mc, var(--accent)) 22%, var(--ground)); padding: clamp(28px, 4.5vw, 56px) clamp(16px, 4vw, 48px); }
.mascot-hero-inner { max-width: 1084px; margin: 0 auto; display: grid; grid-template-columns: minmax(0, .8fr) minmax(0, 1.2fr); gap: clamp(20px, 4vw, 48px); align-items: center; }
.mascot-hero-art { width: min(100%, 340px); aspect-ratio: 1; border-radius: 50%; border: 5px solid var(--ink-line); box-shadow: 8px 8px 0 var(--hard); overflow: hidden; background: color-mix(in srgb, var(--mc) 35%, var(--surface)); display: grid; place-items: center; margin: 0 auto; }
.mascot-hero-art img { width: 100%; height: 100%; object-fit: cover; }
.big-emoji { font-size: clamp(5rem, 14vw, 9rem); }
.back-link { display: inline-block; font-weight: 800; text-decoration: none; color: var(--ink-2); margin-bottom: 10px; }
.back-link:hover { color: var(--ink); }
.mascot-hero-desc { margin-top: 14px; font-size: 1.05rem; max-width: 60ch; }
.mascot-hero-meta { display: flex; gap: 10px; flex-wrap: wrap; margin-top: 16px; }
.mascot-hero .hero-actions { margin-top: 22px; }
@media (max-width: 860px) { .mascot-hero-inner { grid-template-columns: 1fr; } .mascot-hero-art { width: min(70%, 260px); } }
.others { display: flex; flex-wrap: wrap; gap: 12px; }
.other { display: flex; align-items: center; gap: 10px; padding: 8px 16px 8px 8px; background: var(--surface); border: 3px solid var(--ink-line); border-radius: 999px; text-decoration: none; color: inherit; font-weight: 800; box-shadow: 3px 3px 0 var(--hard); }
.other .face { width: 40px; height: 40px; font-size: 1.3rem; border: 0; }
.other:hover { transform: translateY(-2px); }
@media (max-width: 760px) { .site-header { gap: 12px; } }
.other .face { width: 40px; height: 40px; border-radius: 50%; overflow: hidden; display: grid; place-items: center; background: color-mix(in srgb, var(--mc) 25%, var(--surface)); flex: none; }
.other .face img { width: 100%; height: 100%; object-fit: cover; }
