@charset "UTF-8";
/* ============================================
   ABSTRACTS: _variables.scss
   Theme variables: colors, spacing, fonts
   ============================================ */
.sr-only {
  position: absolute !important;
  height: 1px;
  width: 1px;
  overflow: hidden;
  clip: rect(1px, 1px, 1px, 1px);
  white-space: nowrap;
}

input,
select,
textarea {
  font: inherit;
  padding: 0.6rem 0.8rem;
  border: 1px solid #ddd;
  border-radius: 4px;
}

button {
  font: inherit;
  padding: 0.6rem 0.9rem;
  border-radius: 6px;
  border: none;
  background: #0b3a5d;
  color: #fff;
  cursor: pointer;
}

button:hover {
  opacity: 0.92;
}

* {
  box-sizing: border-box;
}

html {
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  font-family:
    system-ui,
    -apple-system,
    Segoe UI,
    Roboto,
    sans-serif;
  color: #1a1a1a;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

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

a {
  color: #0b3a5d;
  text-decoration: none;
}

a:hover {
  text-decoration: none;
}

:root {
  --header-h: 84px;
  /* Tanka traka sa linkovima ka pod-sajtovima */
  --topbar-h: 34px;
  /* Ukupna visina fiksnog zaglavlja: koristi se za sve offsete */
  --chrome-h: calc(var(--topbar-h) + var(--header-h));
  --container: 1200px;
  scroll-behavior: smooth;
  --c-white: #fff;
  --c-black: #0e0e0e;
  --overlay: rgba(0, 0, 0, 0.35);
  --shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
}

.slider__viewport {
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
}

@media (prefers-reduced-motion: reduce) {
  .slider__viewport {
    scroll-behavior: auto;
  }
}
/* ============================================
   FIX: Bijeli prostor iznad hero-a
   Kompenzacija za WP admin bar / bilo koji razmak
   ============================================ */
.hero-sticky {
  margin-top: 0 !important;
  padding-top: 0 !important;
}

.admin-bar .hero-sticky__stage {
  top: 32px !important;
}

@media (max-width: 782px) {
  .admin-bar .hero-sticky__stage {
    top: 46px !important;
  }
}
.hero-sticky {
  margin-top: -32px !important;
}

@media (max-width: 782px) {
  .hero-sticky {
    margin-top: -46px !important;
  }
}
h1,
h2,
h3,
h4,
h5 {
  line-height: 1.2;
  margin: 0 0 0.5em;
}

p {
  line-height: 1.7;
  margin: 0 0 1em;
  color: #1a1a1a;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 16px;
  padding-right: 16px;
}

.divider {
  height: 1px;
  width: 100%;
  background: rgba(0, 0, 0, 0.35);
  margin: 18px 0;
}

.footer {
  background: #f3f7fb;
  color: #0b1b2b;
  position: relative;
  border-top: 1px solid rgba(0, 0, 0, 0.06);
}

.footer__skyline {
  position: relative;
  overflow: hidden;
  padding: 56px 0 44px;
  color: rgba(11, 27, 43, 0.45);
  opacity: 0;
  transform: translateY(6px);
  transition:
    opacity 600ms ease,
    transform 600ms ease;
}
@media (max-width: 768px) {
  .footer__skyline {
    padding: 36px 0 28px;
  }
}

.footer__skyline.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.footer-skyline path,
.footer-skyline rect,
.footer-skyline circle,
.footer-skyline ellipse,
.footer-skyline polygon,
.footer-skyline g,
.footer-skyline use {
  fill: none;
  stroke: currentColor;
}

.footer-skyline {
  display: block;
  width: 100%;
  height: auto;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 16px;
  clip-path: inset(0 100% 0 0);
}

.footer__skyline.is-visible .footer-skyline {
  clip-path: inset(0 0 0 0);
  transition: clip-path 1800ms cubic-bezier(0.23, 1, 0.32, 1) 120ms;
}

@media (prefers-reduced-motion: reduce) {
  .footer__skyline {
    transition: none;
    transform: none;
    opacity: 1;
  }
  .footer-skyline,
  .footer__skyline.is-visible .footer-skyline {
    clip-path: none;
    transition: none;
  }
}
.footer-skyline__svg {
  width: 100%;
  height: 100%;
  display: block;
}

.footer__main {
  padding: 64px 0 40px;
}

.footer__grid {
  display: grid;
  gap: 40px;
  grid-template-columns: 1.2fr 1.6fr 1fr;
}
@media (max-width: 1024px) {
  .footer__grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }
}

/* Brand block */
.footer__brand {
  max-width: 420px;
}

.footer__logo {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  color: inherit;
}
.footer__logo img {
  display: block;
  max-width: 70px;
  height: auto;
  width: 100%;
  opacity: 0.75;
}

.footer__tagline {
  margin: 14px 0 12px;
  font-size: 15px;
  line-height: 1.6;
  opacity: 0.85;
}

.footer__contact {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  margin: 0 0 14px;
  font-size: 14px;
  opacity: 0.9;
}

.footer__contact-link {
  color: inherit;
  text-decoration: none;
}
.footer__contact-link:hover {
  text-decoration: underline;
}

.footer__dot {
  opacity: 0.5;
}

.footer__cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
  color: inherit;
}
.footer__cta:hover {
  text-decoration: underline;
}

/* Nav columns (details accordion on mobile) */
.footer__nav {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px;
}
@media (max-width: 1024px) {
  .footer__nav {
    grid-template-columns: 1fr;
    gap: 14px;
  }
}

.footer-nav {
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.6);
  padding: 10px 14px;
}
@media (min-width: 1025px) {
  .footer-nav {
    border: 0;
    background: transparent;
    padding: 0;
  }
}

.footer-nav__title {
  list-style: none;
  cursor: pointer;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.2px;
  padding: 8px 2px;
}

.footer-nav__title::-webkit-details-marker {
  display: none;
}

.footer-nav__list {
  margin: 0;
  padding: 6px 2px 10px;
  list-style: none;
}

.footer-nav__link {
  display: inline-block;
  padding: 7px 0;
  font-size: 14px;
  line-height: 1.4;
  color: inherit;
  text-decoration: none;
  opacity: 0.9;
}
.footer-nav__link:hover {
  opacity: 1;
  text-decoration: underline;
}

/* Live / Weather */
@media (max-width: 1024px) {
  .footer__live {
    order: 2;
  }
}

.footer-weather {
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.75);
  border: 1px solid rgba(0, 0, 0, 0.08);
  padding: 16px 16px 14px;
}

.footer-weather__head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 10px;
}

.footer-weather__place {
  font-size: 14px;
  font-weight: 700;
}

.footer-weather__link {
  font-size: 13px;
  text-decoration: none;
  opacity: 0.85;
  color: inherit;
}
.footer-weather__link:hover {
  opacity: 1;
  text-decoration: underline;
}

.footer-weather__body {
  display: flex;
  align-items: center;
  gap: 12px;
}

.footer-weather__icon {
  font-size: 22px;
  line-height: 1;
  opacity: 0.9;
}

.footer-weather__meta {
  min-width: 0;
}

.footer-weather__line {
  display: flex;
  align-items: baseline;
  gap: 10px;
  flex-wrap: wrap;
}

.footer-weather__temp {
  font-size: 20px;
  font-weight: 800;
  letter-spacing: -0.3px;
}

.footer-weather__cond {
  font-size: 14px;
  opacity: 0.85;
}

.footer-weather__line--muted {
  margin-top: 4px;
  font-size: 12px;
  opacity: 0.65;
}

.footer__extras {
  margin-top: 14px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.footer__extra-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 12px;
  border-radius: 12px;
  border: 1px solid rgba(0, 0, 0, 0.08);
  background: rgba(255, 255, 255, 0.55);
  text-decoration: none;
  color: inherit;
  font-size: 13px;
  font-weight: 600;
  opacity: 0.95;
}
.footer__extra-link:hover {
  opacity: 1;
  background: rgba(255, 255, 255, 0.8);
}

/* Subfooter */
.footer__sub {
  border-top: 1px solid rgba(0, 0, 0, 0.06);
  padding: 18px 0;
}

.footer__sub-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

.footer__copy {
  font-size: 13px;
  opacity: 0.75;
}

.footer__legal {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.footer__legal-link {
  font-size: 13px;
  text-decoration: none;
  color: inherit;
  opacity: 0.75;
}
.footer__legal-link:hover {
  opacity: 1;
  text-decoration: underline;
}

.footer-social {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.footer-social__link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 999px;
  text-decoration: none;
  color: inherit;
  border: 1px solid rgba(0, 0, 0, 0.08);
  background: rgba(255, 255, 255, 0.55);
  font-size: 12px;
  font-weight: 700;
  opacity: 0.9;
  transition: all 0.3s ease-in-out;
}
.footer-social__link.fb :hover {
  color: #1674ea;
}
.footer-social__link.ig :hover {
  color: #de6666;
}
.footer-social__link.yt :hover {
  color: #ed0000;
}
.footer-social__link svg {
  width: 16px;
  height: 16px;
  display: block;
  fill: currentColor;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 16px;
  padding-right: 16px;
}

.grid {
  display: grid;
  gap: 1rem;
}

.grid--2 {
  grid-template-columns: 1fr;
}
@media (max-width: 768px) {
  .grid--2 {
    grid-template-columns: repeat(2, 1fr);
  }
}

.grid--3 {
  grid-template-columns: 1fr;
}
@media (max-width: 1024px) {
  .grid--3 {
    grid-template-columns: repeat(3, 1fr);
  }
}

.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

/* NAV */
.site-nav {
  flex: 1;
  display: flex;
  justify-content: center;
}
.site-nav__list {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-end;
  gap: 22px;
  list-style: none;
  margin: 0;
  padding: 0;
}

/* RIGHT SIDE */
.header-right {
  display: flex;
  align-items: center;
  gap: 12px;
}

/* ===============================
   WEATHER WIDGET + POPUP
   =============================== */
.weather-widget {
  position: relative;
}
.weather-widget:hover .weather-popup,
.weather-widget:focus-within .weather-popup {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
  visibility: visible;
}

/* Weather button */
.weather-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  height: 36px;
  padding: 0 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.22);
  color: currentColor;
  cursor: pointer;
  user-select: none;
}
.weather-btn__icon {
  font-size: 16px;
  line-height: 1;
}
.weather-btn__temp {
  font-weight: 700;
  font-size: 14px;
  display: flex;
  align-items: baseline;
  gap: 3px;
}
.weather-btn__min {
  font-size: 11px;
  opacity: 0.65;
  font-weight: 600;
}

/* 7-day forecast popup */
.weather-popup {
  position: absolute;
  top: calc(100% + 10px);
  right: 0;
  z-index: 2000;
  width: 340px;
  background: #fff;
  color: #1a1a1a;
  border-radius: 16px;
  box-shadow:
    0 16px 48px rgba(0, 0, 0, 0.18),
    0 4px 12px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  opacity: 0;
  pointer-events: none;
  visibility: hidden;
  transform: translateY(-6px);
  transition:
    opacity 0.18s ease,
    transform 0.18s ease,
    visibility 0s 0.18s;
}
.weather-popup:hover,
.weather-popup:focus-within,
.weather-popup.is-open {
  opacity: 1;
  pointer-events: auto;
  visibility: visible;
  transform: translateY(0);
  transition-delay: 0s;
}
.weather-popup__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 16px 10px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}
.weather-popup__city {
  font-weight: 800;
  font-size: 13px;
  color: #0b3a5d;
}
.weather-popup__subtitle {
  font-size: 11px;
  font-weight: 600;
  color: #6b7280;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.weather-popup__days {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 0;
  padding: 12px 8px;
}
.weather-popup__day {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  padding: 6px 2px;
  border-radius: 10px;
  transition: background 0.15s ease;
}
.weather-popup__day:hover {
  background: rgba(11, 58, 93, 0.06);
}
.weather-popup__day-name {
  font-size: 10px;
  font-weight: 800;
  color: #6b7280;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.weather-popup__day-icon {
  font-size: 22px;
  line-height: 1;
  margin: 2px 0;
}
.weather-popup__day-max {
  font-size: 13px;
  font-weight: 800;
  color: #1a1a1a;
}
.weather-popup__day-min {
  font-size: 11px;
  font-weight: 600;
  color: #6b7280;
}
.weather-popup__footer {
  padding: 8px 16px;
  font-size: 10px;
  color: rgba(26, 26, 26, 0.35);
  text-align: right;
  border-top: 1px solid rgba(0, 0, 0, 0.05);
}

/* Language button */
.language-btn {
  height: 36px;
  padding: 0 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.22);
  color: currentColor;
  font-weight: 800;
  letter-spacing: 0.06em;
  cursor: pointer;
}

/* Kad je header scrolled (bijel) - dugmad dobiju "light" izgled */
.site-header.is-scrolled .weather-btn,
.site-header.is-scrolled .language-btn {
  background: rgba(0, 0, 0, 0.04);
  border-color: rgba(0, 0, 0, 0.1);
}

/* ===============================
   HEADER STATES (SCROLL)
   =============================== */
.site-header {
  color: #ffffff;
}
.site-header.is-scrolled {
  color: #0e0e0e;
}
.site-header.is-scrolled .site-nav a {
  opacity: 0.9;
}
.site-header.is-scrolled .site-nav a:hover {
  opacity: 1;
}

/* ===============================
   LANGUAGE SELECTOR DROPDOWN
   =============================== */
.language-switcher {
  display: flex;
  align-items: center;
}

.lang-selector {
  position: relative;
}

.lang-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  height: 36px;
  padding: 0 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.22);
  color: currentColor;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.04em;
  white-space: nowrap;
  cursor: pointer;
  transition:
    background 0.2s,
    border-color 0.2s;
}
.lang-btn:hover {
  background: rgba(255, 255, 255, 0.24);
}

.lang-dropdown {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  z-index: 2000;
  display: none;
  flex-direction: column;
  background: #ffffff;
  color: #0e0e0e;
  border-radius: 8px;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.18);
  min-width: 200px;
  padding: 8px 0;
  overflow: hidden;
}

.lang-selector:hover .lang-dropdown,
.lang-selector.is-open .lang-dropdown {
  display: flex;
}

.lang-group-label {
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #f2b705;
  padding: 10px 14px 4px;
  font-weight: 600;
}

.lang-option {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 9px 14px;
  color: rgba(0, 0, 0, 0.72);
  font-size: 13px;
  font-weight: 500;
  text-decoration: none;
  transition: background 0.15s;
}
.lang-option:hover {
  background: rgba(0, 0, 0, 0.05);
  color: #0e0e0e;
}
.lang-option.active {
  color: #0b3a5d;
  font-weight: 700;
}

.lang-flag {
  font-size: 15px;
  line-height: 1;
}

/* Scrolled header adaptation */
.site-header.is-scrolled .lang-btn {
  background: rgba(0, 0, 0, 0.04);
  border-color: rgba(0, 0, 0, 0.1);
}

.main-nav a {
  padding: 0.5rem 0.75rem;
  border-radius: 8px;
}

.main-nav a:hover {
  background: rgba(13, 94, 138, 0.08);
  text-decoration: none;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 44px;
  padding: 0 22px;
  border-radius: 999px;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.3s ease-in-out;
  will-change: transform;
}
.btn:hover {
  transform: translateY(-1px);
}
.btn:active {
  transform: translateY(0) scale(0.98);
}
.btn--primary {
  background: #f2b705;
  color: #092e47;
}
.btn--primary:hover {
  background: rgb(202.0259109312, 152.771659919, 4.1740890688);
}
.btn--ghost {
  background: rgba(255, 255, 255, 0.14);
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.28);
  backdrop-filter: blur(6px);
}
.btn--ghost-dark {
  background: rgba(255, 255, 255, 0.14);
  color: #0b3a5d;
  border: 1px solid rgba(255, 255, 255, 0.28);
  backdrop-filter: blur(6px);
}
.btn--outline {
  background: transparent;
  border: 1px solid #0b3a5d;
  color: #0b3a5d;
}

.card {
  border: 1px solid #eee;
  border-radius: 12px;
  overflow: hidden;
  background: #fff;
}

.card__body {
  padding: 1rem;
}

.card__title {
  margin: 0 0 0.5rem;
}

/* ============================================
   COMPONENT: Discover Mozaik
   Otkrijte Banja Luku — pravi mozaik raspored:
   1 široki + 1 visoki + 2 flat "city brand"
   tajla + 2 standardna (infozagreb vibe)

   Desktop (4 kolone):        Tablet (2 kolone):
   ┌───a───┬─b─┬─c─┐          ┌───a───┐
   ├─d─┬─e─┼─f─┤   │          ├─b─┬─c─┤
   └───┴───┴───┴───┘          ├─d─┤   │
                              ├─e─┼─f─┤
   ============================================ */
.discover {
  padding: 4rem 0;
  background: #ffffff;
}
@media (min-width: 1024px) {
  .discover {
    padding: 6rem 0;
  }
}
.discover__header {
  margin-bottom: 4rem;
}
.discover__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}
@media (min-width: 768px) {
  .discover__grid {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 230px;
    grid-template-areas: "a a" "b c" "d c" "e f";
  }
}
@media (min-width: 1024px) {
  .discover__grid {
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: 260px;
    grid-template-areas: "a a b c" "d e f c";
    gap: 2rem;
  }
}
@media (min-width: 768px) {
  .discover__card--a {
    grid-area: a;
  }
  .discover__card--b {
    grid-area: b;
  }
  .discover__card--c {
    grid-area: c;
  }
  .discover__card--d {
    grid-area: d;
  }
  .discover__card--e {
    grid-area: e;
  }
  .discover__card--f {
    grid-area: f;
  }
}
.discover__card {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  min-height: 220px;
  border-radius: 16px;
  overflow: hidden;
  text-decoration: none;
  color: #ffffff;
  transition: all 0.3s ease-in-out;
}
@media (min-width: 768px) {
  .discover__card {
    min-height: auto;
  }
}
.discover__card:hover,
.discover__card:focus {
  transform: translateY(-4px);
  box-shadow: 0 20px 40px rgba(9, 46, 71, 0.18);
}
.discover__card:hover .discover__card-bg img,
.discover__card:focus .discover__card-bg img {
  transform: scale(1.08);
}
.discover__card:hover .discover__card-overlay,
.discover__card:focus .discover__card-overlay {
  opacity: 0.5;
}
.discover__card:focus {
  outline: 3px solid #f2b705;
  outline-offset: 2px;
}
.discover__card-bg {
  position: absolute;
  inset: 0;
  z-index: 1;
}
.discover__card-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.discover__card-overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  background: linear-gradient(
    to top,
    rgba(9, 46, 71, 0.9) 0%,
    rgba(9, 46, 71, 0.4) 50%,
    transparent 100%
  );
  transition: all 0.3s ease-in-out;
}
.discover__card-content {
  position: relative;
  z-index: 3;
  padding: 2rem;
  transition: all 0.3s ease-in-out;
}
.discover__card-tag {
  display: inline-block;
  font-family: "Caveat", "Segoe Script", cursive;
  font-weight: 600;
  font-size: 1.25rem;
  color: #f2b705;
  margin-bottom: 0.25rem;
}
.discover__card-title {
  font-size: clamp(1.1rem, 2.5vw, 1.4rem);
  font-weight: 700;
  line-height: 1.25;
  margin: 0 0 0.25rem;
}
.discover__card-desc {
  display: none;
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.5;
  margin-top: 0.5rem;
}
@media (min-width: 1024px) {
  .discover__card-desc {
    display: block;
  }
}
.discover__card--a .discover__card-title,
.discover__card--c .discover__card-title {
  font-size: clamp(1.25rem, 3vw, 1.75rem);
}
.discover__card--flat {
  align-items: flex-start;
  justify-content: center;
  text-align: left;
  padding: 2rem;
}
.discover__card--flat .discover__card-content {
  padding: 0;
}
.discover__card--flat .discover__card-title {
  font-family:
    "Anton",
    "Arial Narrow",
    "Montserrat",
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    Roboto,
    Oxygen-Sans,
    Ubuntu,
    Cantarell,
    "Helvetica Neue",
    sans-serif;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.015em;
  font-size: clamp(1.6rem, 3vw, 2.1rem);
  line-height: 1.02;
}
.discover__card--flat .discover__card-desc {
  display: block;
}
.discover__card--flat-gold {
  background: #f2b705;
  color: #092e47;
}
.discover__card--flat-gold .discover__card-tag {
  color: #092e47;
}
.discover__card--flat-gold .discover__card-desc {
  color: rgba(9, 46, 71, 0.8);
}
.discover__card--flat-brand {
  background: #0b3a5d;
}
.discover__card--flat-brand .discover__card-tag {
  color: #f2b705;
}
.discover__card--flat-red {
  background: #d94f3d;
}
.discover__card--flat-red .discover__card-tag {
  color: #ffffff;
}
.discover__card--flat-green {
  background: #2f8f5b;
}
.discover__card--flat-green .discover__card-tag {
  color: #ffffff;
}

@media (prefers-reduced-motion: reduce) {
  .discover__card,
  .discover__card-bg img,
  .discover__card-overlay,
  .discover__card-content {
    transition: none;
  }
  .discover__card:hover,
  .discover__card:focus {
    transform: none;
  }
  .discover__card:hover .discover__card-bg img,
  .discover__card:focus .discover__card-bg img {
    transform: none;
  }
}
/* ============================================
   LAYOUT: Plan-section gornji red (tekst + kontrole)
   Balansira gornji dio sa full-width mapom ispod
   ============================================ */
.plan-section__top {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  margin-bottom: 2.5rem;
}
@media (min-width: 900px) {
  .plan-section__top {
    grid-template-columns: 1.05fr 0.95fr;
    column-gap: 3.5rem;
    align-items: end;
  }
}
.plan-section__top .plan-section__header {
  max-width: 100%;
  margin-bottom: 0;
}
.plan-section__top .date-picker-bar {
  max-width: 100%;
  width: 100%;
  margin-bottom: 0;
}
.plan-section__top .event-filters {
  margin-bottom: 0;
}

.plan-section__controls {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  width: 100%;
}

/* ============================================
   COMPONENT: Event Filters (pill dugmad)
   Zamjena za stare emoji ikonice u plan-sekciji
   ============================================ */
.event-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 2rem;
}

.event-filter {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.65rem 1.15rem;
  background: #ffffff;
  border: 1px solid rgba(14, 14, 14, 0.1);
  border-radius: 100px;
  font-family:
    "Montserrat",
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    Roboto,
    Oxygen-Sans,
    Ubuntu,
    Cantarell,
    "Helvetica Neue",
    sans-serif;
  font-size: 0.875rem;
  font-weight: 600;
  color: #1a1a1a;
  cursor: pointer;
  transition: all 0.2s ease;
}
.event-filter__dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #f2b705;
}
.event-filter__dot--culture {
  background: #e0a800;
}
.event-filter__dot--sports {
  background: #3b82f6;
}
.event-filter__dot--music {
  background: #ec4899;
}
.event-filter__dot--other {
  background: #10b981;
}
.event-filter:hover {
  border-color: #0b3a5d;
  color: #0b3a5d;
}
.event-filter.is-active {
  background: #0b3a5d;
  border-color: #0b3a5d;
  color: #ffffff;
}
.event-filter.is-active .event-filter__dot {
  box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.35);
}

/* ============================================
   MAP CONTROLS: Leaflet zoom (+ / -)
   Default je bijelo na bijelom — nevidljivo.
   ============================================ */
.leaflet-control-zoom {
  border: none !important;
  box-shadow: 0 2px 10px rgba(14, 14, 14, 0.15) !important;
  border-radius: 8px !important;
  overflow: hidden;
}
.leaflet-control-zoom a {
  width: 34px;
  height: 34px;
  line-height: 32px;
  background: #ffffff;
  color: #0b3a5d !important;
  font-size: 1.25rem;
  font-weight: 700;
  border: none;
  border-bottom: 1px solid rgba(14, 14, 14, 0.08);
  transition: all 0.2s ease;
}
.leaflet-control-zoom a:last-child {
  border-bottom: none;
}
.leaflet-control-zoom a:hover {
  background: #0b3a5d;
  color: #ffffff !important;
}
.leaflet-control-zoom a.leaflet-disabled {
  color: rgba(14, 14, 14, 0.25) !important;
  background: #ffffff;
}

.events {
  position: relative;
}
.events-section {
  padding: clamp(3rem, 5vw, 5rem) 0;
  background-color: #ffffff;
}
.events__divider {
  position: relative;
  height: 64px;
  background: transparent;
  overflow: hidden;
  margin-top: -16px; /* gives continuation feel from previous section */
}
.events__divider-wave {
  position: absolute;
  inset: 0;
  background: #f5f7fa;
  /* soft top gradient (blends from previous background) */
}
.events__divider-wave::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(14, 14, 14, 0.12),
    rgba(14, 14, 14, 0.04),
    rgba(14, 14, 14, 0)
  );
  opacity: 0.12;
  pointer-events: none;
}
.events__divider-wave {
  /* wave curve */
}
.events__divider-wave::after {
  content: "";
  position: absolute;
  left: -5%;
  right: -5%;
  bottom: -1px;
  height: 90px;
  background: #f5f7fa;
  border-top-left-radius: 50% 100%;
  border-top-right-radius: 50% 100%;
  transform: translateY(30px);
  box-shadow: 0 -8px 24px rgba(14, 14, 14, 0.06);
}

.events {
  padding: clamp(3rem, 5vw, 5rem) 0;
  background: #ffffff;
  color: #1a1a1a;
  font-family:
    "Montserrat",
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    Roboto,
    Oxygen-Sans,
    Ubuntu,
    Cantarell,
    "Helvetica Neue",
    sans-serif;
}
.events-title {
  margin: 0;
  font-size: 6rem;
  line-height: 1.1;
  font-weight: 700;
  text-align: center;
}
.events-text {
  font-size: 1.5rem;
  margin-top: 1rem;
  text-align: center;
  color: rgba(26, 26, 26, 0.65);
}
.events__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 16px;
}
.events__header {
  margin-bottom: clamp(1.75rem, 3vw, 2.5rem);
  max-width: 70ch;
}
.events__title {
  font-size: clamp(2.2rem, 4vw, 3.25rem);
  font-weight: 900;
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin: 0;
  color: #1a1a1a;
}
.events__title::after {
  content: "";
  display: block;
  width: 72px;
  height: 5px;
  margin-top: 1rem;
  background: #f2b705;
  border-radius: 16px;
}
.events__subtitle {
  margin-top: 1rem;
  color: rgba(26, 26, 26, 0.65);
  font-weight: 600;
  line-height: 1.6;
  font-size: 1rem;
}
.events {
  /* Filters */
}
.events__filters {
  background: #ffffff;
  border: 1px solid rgba(14, 14, 14, 0.06);
  border-radius: 16px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  padding: clamp(1.5rem, 3vw, 2rem);
  margin-bottom: clamp(1.5rem, 3vw, 2.25rem);
}
.events__filters-head {
  margin-bottom: 2rem;
  max-width: 75ch;
}
.events__filters-title {
  margin: 0 0 0.5rem 0;
  font-size: 1.35rem;
  font-weight: 900;
  color: #0b3a5d;
}
.events__filters-text {
  margin: 0;
  color: rgba(26, 26, 26, 0.65);
  font-weight: 600;
  line-height: 1.6;
}
.events__filters-form {
  display: grid;
  grid-template-columns: 1fr 1fr auto;
  gap: 1rem;
  align-items: end;
}
@media (max-width: 768px) {
  .events__filters-form {
    grid-template-columns: 1fr;
    align-items: stretch;
  }
}
.events__field {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.events__label {
  font-size: 0.875rem;
  font-weight: 800;
  color: rgba(26, 26, 26, 0.65);
}
.events__input {
  height: 48px;
  padding: 0 1rem;
  border-radius: 8px;
  border: 1px solid rgba(14, 14, 14, 0.12);
  background: #f9fafb;
  color: #1a1a1a;
  font-weight: 700;
  outline: none;
  transition: all 0.2s ease;
}
.events__input:focus {
  border-color: rgba(11, 58, 93, 0.45);
  box-shadow: 0 0 0 4px rgba(11, 58, 93, 0.14);
  background: #ffffff;
}
.events__actions {
  display: flex;
  gap: 0.5rem;
}
@media (max-width: 768px) {
  .events__actions {
    flex-direction: column;
  }
}
.events__actions .btn {
  width: 100%;
}
.events {
  /* Weather row */
}
.events__weather {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(190px, 1fr);
  gap: 1rem;
  overflow-x: auto;
  padding-bottom: 0.5rem;
  margin-bottom: clamp(1.5rem, 3vw, 2.25rem);
  scroll-snap-type: x mandatory;
}
.events__weather::-webkit-scrollbar {
  height: 8px;
}
.events__weather::-webkit-scrollbar-thumb {
  background: rgba(11, 58, 93, 0.18);
  border-radius: 16px;
}
.events__weather-loading {
  background: #ffffff;
  border: 1px solid rgba(14, 14, 14, 0.06);
  border-radius: 16px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  padding: 2rem;
  font-weight: 800;
  color: #6b7280;
}
.events__weather-item {
  scroll-snap-align: start;
  background: #ffffff;
  border: 1px solid rgba(14, 14, 14, 0.06);
  border-radius: 16px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  padding: 1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.events__weather-item-meta {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}
.events__weather-item-day {
  font-weight: 900;
  color: #0b3a5d;
  font-size: 1rem;
}
.events__weather-item-desc {
  font-size: 0.875rem;
  color: rgba(26, 26, 26, 0.65);
  font-weight: 600;
}
.events__weather-item-temp {
  font-weight: 900;
  font-size: 1.4rem;
  color: #1a1a1a;
}
.events {
  /* Map */
}
.events__map {
  background: #ffffff;
  border: 1px solid rgba(14, 14, 14, 0.06);
  border-radius: 16px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  padding: 1rem;
  margin-bottom: clamp(2rem, 4vw, 3rem);
}
.events__map-frame {
  width: 100%;
  height: clamp(280px, 40vw, 420px);
  border-radius: 16px;
  overflow: hidden;
  background: #f9fafb;
  box-shadow: inset 0 0 0 1px rgba(14, 14, 14, 0.06);
}
.events__map-hint {
  margin: 1rem 0 0;
  font-size: 0.875rem;
  color: rgba(26, 26, 26, 0.65);
  font-weight: 600;
}
.events {
  /* Grid */
}
.events__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(1rem, 2.5vw, 1.6rem);
}
@media (max-width: 1024px) {
  .events__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (max-width: 576px) {
  .events__grid {
    grid-template-columns: 1fr;
  }
}
.events {
  /* Card */
}
.events__card {
  background: #ffffff;
  border: 1px solid rgba(14, 14, 14, 0.06);
  border-radius: 16px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: all 0.2s ease;
}
.events__card:hover {
  transform: translateY(-4px);
  box-shadow: 6px 9px 9px rgba(0, 0, 0, 0.14);
}
.events__media {
  display: block;
  width: 100%;
  aspect-ratio: 16/10;
  overflow: hidden;
  background: rgba(11, 58, 93, 0.08);
}
.events__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: all 0.5s ease;
}
.events__card:hover .events__img {
  transform: scale(1.04);
}
.events__img-placeholder {
  width: 100%;
  height: 100%;
  background-image: url("../images/park-petar-kocic.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.events__content {
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  flex: 1;
}
.events__card-link {
  color: #1a1a1a;
  text-decoration: none;
  transition: all 0.2s ease;
}
.events__card-link:hover {
  color: #0b3a5d;
}
.events__meta {
  display: grid;
  gap: 0.45rem;
  margin-top: 0.25rem;
}
.events__meta-item {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  color: #718096;
  font-size: 0.875rem;
  line-height: 1.35;
}
.events__meta-icon {
  font-size: 1rem;
  line-height: 1;
  margin-top: 2px;
  flex: 0 0 auto;
}
.events__meta-text {
  flex: 1;
}
.events__meta-badge {
  margin-left: 0.25rem;
  opacity: 0.85;
  font-size: 0.95rem;
  cursor: help;
}
.events__footer {
  margin-top: auto;
  padding-top: 1rem;
}
.events {
  /* Empty */
}
.events__empty {
  grid-column: 1/-1;
  background: #ffffff;
  border: 1px solid rgba(14, 14, 14, 0.06);
  border-radius: 16px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  padding: clamp(2.5rem, 5vw, 4rem);
  text-align: center;
}
.events__empty-title {
  margin: 0 0 0.5rem 0;
  font-size: 1.3rem;
  font-weight: 900;
  color: #1a1a1a;
}
.events__empty-text {
  margin: 0 0 2rem 0;
  color: rgba(26, 26, 26, 0.65);
  font-weight: 600;
  line-height: 1.6;
}
.events-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}
.events__card {
  background: #ffffff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease-in-out;
  cursor: pointer;
  position: relative;
  border: 1px solid rgba(14, 14, 14, 0.06);
  /* hover overlay (primary gradient vibe) */
}
.events__card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(11, 58, 93, 0.95),
    rgba(242, 183, 5, 0.85)
  );
  opacity: 0;
  transition: opacity all 0.2s ease;
  z-index: 1;
  pointer-events: none;
}
.events__card:hover::before {
  opacity: 0.05;
}
.events__card:hover {
  transform: translateY(-12px);
  box-shadow: 6px 9px 9px rgba(0, 0, 0, 0.14);
}
.events {
  /* MEDIA (IMAGE WRAPPER) */
}
.events__media {
  position: relative;
  display: block;
  width: 100%;
  height: 250px;
  overflow: hidden;
  background: rgba(11, 58, 93, 0.08);
  /* keep it above overlay pseudo-element of card */
  z-index: 2;
}
.events__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform all 0.5s ease;
}
.events__card:hover .events__img {
  transform: scale(1.1);
}
.events {
  /* Optional category badge */
}
.events__badge {
  position: absolute;
  top: 1rem;
  right: 1rem;
  padding: 0.25rem 1rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.95);
  border: 1px solid rgba(14, 14, 14, 0.06);
  font-size: 0.8rem;
  font-weight: 800;
  color: #0b3a5d;
  z-index: 3;
}
@supports (backdrop-filter: blur(10px)) {
  .events__badge {
    backdrop-filter: blur(10px);
  }
}
.events {
  /* CONTENT */
}
.events__content {
  position: relative;
  z-index: 2;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.events__card-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: #1a1a1a;
  line-height: 1.3;
}
.events__card-link {
  color: #1a1a1a;
  text-decoration: none;
  transition: all 0.2s ease;
}
.events__card-link:hover {
  color: #0b3a5d;
}
.events__excerpt {
  font-size: 0.95rem;
  line-height: 1.6;
  margin: 1rem 0;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  color: #718096;
}
.events__footer {
  margin-top: auto;
  padding-top: 1rem;
  border-top: 1px solid #e2e8f0;
  display: flex;
  justify-content: flex-end;
}
.events__footer i {
  margin-left: 0.5rem;
}

.events-date-filter {
  margin-bottom: 3rem;
  padding: 2rem;
  background: white;
  border-radius: 12px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}
.events-date-filter .filter-title {
  font-size: 1.5rem;
  margin: 0 0 2rem 0;
  text-align: center;
  color: #0b3a5d;
}
.events-date-filter .filter-title i {
  margin-right: 0.5rem;
}
.events-date-filter .category-filter-buttons {
  display: flex;
  gap: 0.75rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 2rem;
}
.events-date-filter .category-filter-buttons .category-btn {
  padding: 0.625rem 1.25rem;
  border: 2px solid #e2e8f0;
  background: white;
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 500;
  color: #4a5568;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.events-date-filter .category-filter-buttons .category-btn i {
  font-size: 0.85rem;
}
.events-date-filter .category-filter-buttons .category-btn:hover {
  border-color: #0b3a5d;
  color: #0b3a5d;
  background: rgba(11, 58, 93, 0.05);
}
.events-date-filter .category-filter-buttons .category-btn--active {
  background: #0b3a5d;
  color: white;
  border-color: #0b3a5d;
}
.events-date-filter .category-filter-buttons .category-btn--active:hover {
  background: rgb(5.6057692308, 29.5576923077, 47.3942307692);
  border-color: rgb(5.6057692308, 29.5576923077, 47.3942307692);
  color: white;
}
.events-date-filter .date-filter-form--row {
  display: flex;
  width: 100%;
  align-items: flex-end;
}
.events-date-filter .date-input-group {
  display: flex;
  flex-direction: column;
  width: 100%;
}
.events-date-filter .date-input-group--icon {
  margin-bottom: 1rem;
  padding: 0 1rem;
  color: rgba(26, 26, 26, 0.65);
}
.events-date-filter .date-input-group--buttons {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 2rem;
  flex-direction: row;
}
.events-date-filter .date-input-group--buttons button {
  flex: 1 1 auto;
}
.events-date-filter .date-input-group--buttons button i {
  padding: 1rem;
}
.events-date-filter .date-input-group label {
  font-weight: 600;
  color: #4a5568;
  margin-bottom: 0.5rem;
  font-size: 0.9rem;
}
.events-date-filter .date-input-group input[type="date"] {
  padding: 0.75rem;
  border: 2px solid #e2e8f0;
  border-radius: 8px;
  font-size: 1rem;
  background: white;
  transition: border-color 0.3s ease;
}
.events-date-filter .date-input-group input[type="date"]:focus {
  outline: none;
  border-color: #3182ce;
}
.events-date-filter .filter-description {
  text-align: center;
  color: #718096;
  margin: 1.5rem 0 0 0;
  font-size: 0.9rem;
  line-height: 1.4;
}

.leaflet-container a {
  color: #ffffff;
}

/* ============================================
   COMPONENT: Events Strip (nadolazeći događaji)
   Poster kartice u zagrebačkom stilu:
   centriran naslov, bijele kartice, zlatni datum
   ============================================ */
.events-strip {
  background: #f5f7fa;
  padding: 4rem 0;
}
@media (min-width: 1024px) {
  .events-strip {
    padding: 6rem 0;
  }
}
.events-strip__header {
  margin-bottom: 4rem;
}
.events-strip__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}
@media (min-width: 576px) {
  .events-strip__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 1024px) {
  .events-strip__grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
  }
}
.events-strip__more {
  margin-top: 4rem;
  text-align: center;
}

.event-tile {
  display: flex;
  flex-direction: column;
  background: #ffffff;
  border-radius: 16px;
  overflow: hidden;
  text-decoration: none;
  color: #1a1a1a;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease-in-out;
}
.event-tile__media {
  position: relative;
  aspect-ratio: 4/3;
  overflow: hidden;
}
@media (min-width: 1024px) {
  .event-tile__media {
    aspect-ratio: 3/4;
  }
}
.event-tile__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.event-tile__media-fallback {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #0b3a5d 0%, #092e47 100%);
}
.event-tile__cat {
  position: absolute;
  top: 1rem;
  left: 1rem;
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: #ffffff;
  padding: 4px 10px;
  border-radius: 999px;
  background: rgba(9, 46, 71, 0.85);
}
.event-tile__cat--culture {
  background: rgba(242, 183, 5, 0.95);
  color: #1a1a1a;
}
.event-tile__cat--sports {
  background: rgba(43, 108, 176, 0.95);
}
.event-tile__cat--music {
  background: rgba(197, 61, 122, 0.95);
}
.event-tile__cat--other {
  background: rgba(47, 133, 90, 0.95);
}
.event-tile__body {
  flex: 1;
  display: flex;
  flex-direction: column;
  padding: 1rem;
}
.event-tile__date-line {
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #8f6400;
  margin-bottom: 0.25rem;
}
.event-tile__title {
  font-size: 1.05rem;
  font-weight: 700;
  line-height: 1.3;
  margin: 0 0 0.5rem;
  color: #1a1a1a;
}
.event-tile__meta {
  margin-top: auto;
  display: flex;
  flex-direction: column;
  gap: 2px;
  font-size: 0.875rem;
  color: #718096;
}
.event-tile__meta-loc {
  font-weight: 600;
  color: #6b7280;
}
.event-tile:hover,
.event-tile:focus-visible {
  transform: translateY(-4px);
  box-shadow: 0 20px 40px rgba(9, 46, 71, 0.18);
}
.event-tile:hover .event-tile__media img,
.event-tile:focus-visible .event-tile__media img {
  transform: scale(1.08);
}
.event-tile:focus-visible {
  outline: 3px solid #f2b705;
  outline-offset: 3px;
}

@media (prefers-reduced-motion: reduce) {
  .event-tile {
    transition: none;
  }
  .event-tile:hover,
  .event-tile:focus-visible {
    transform: none;
  }
  .event-tile:hover .event-tile__media img,
  .event-tile:focus-visible .event-tile__media img {
    transform: none;
  }
}
/* ============================================
   SHARED PAGE COMPONENTS
   page-hero, sticky subnav, split blokovi,
   atrakcije grid, hub kartice, dnevni plan,
   CTA trake, editor sadržaj, pravne stranice
   ============================================ */
.page-hero {
  position: relative;
  min-height: 52vh;
  display: flex;
  align-items: flex-end;
  color: #ffffff;
  overflow: hidden;
}
.page-hero__bg {
  position: absolute;
  inset: 0;
}
.page-hero__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.page-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(9, 46, 71, 0.85) 0%,
    rgba(9, 46, 71, 0.3) 55%,
    rgba(9, 46, 71, 0.2) 100%
  );
}
.page-hero__content {
  position: relative;
  z-index: 2;
  padding-top: calc(var(--chrome-h) + 4rem);
  padding-bottom: 4rem;
}
.page-hero__title {
  font-family:
    "Anton",
    "Arial Narrow",
    "Montserrat",
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    Roboto,
    Oxygen-Sans,
    Ubuntu,
    Cantarell,
    "Helvetica Neue",
    sans-serif;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  line-height: 0.95;
  font-size: clamp(3rem, 8vw, 6.5rem);
  margin: 0;
  text-shadow: 0 12px 40px rgba(0, 0, 0, 0.35);
}
.page-hero__script {
  display: block;
  font-family: "Caveat", "Segoe Script", cursive;
  font-weight: 600;
  font-size: clamp(1.5rem, 2.6vw, 2.2rem);
  margin-top: 8px;
  color: #f2b705;
  text-shadow: 0 4px 16px rgba(0, 0, 0, 0.4);
}

.explore-subnav {
  position: sticky;
  top: var(--chrome-h);
  z-index: 60;
  background: #ffffff;
  border-bottom: 1px solid rgba(11, 58, 93, 0.08);
  box-shadow: 0 6px 18px rgba(9, 46, 71, 0.05);
}
.explore-subnav__list {
  display: flex;
  gap: 0.5rem;
  list-style: none;
  margin: 0;
  padding: 10px 0;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}
.explore-subnav__link {
  display: inline-flex;
  white-space: nowrap;
  padding: 8px 16px;
  border-radius: 999px;
  font-size: 0.875rem;
  font-weight: 700;
  color: #0b3a5d;
  text-decoration: none;
  background: #f5f7fa;
  transition: all 0.2s ease;
}
.explore-subnav__link:hover,
.explore-subnav__link:focus-visible {
  background: #f2b705;
  color: #092e47;
}

.explore-split {
  padding: 4rem 0;
  background: #ffffff;
}
@media (min-width: 1024px) {
  .explore-split {
    padding: 5rem 0;
  }
}
.explore-split--alt {
  background: #f5f7fa;
}
.explore-split__inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  align-items: center;
}
@media (min-width: 768px) {
  .explore-split__inner {
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
  }
}
@media (min-width: 768px) {
  .explore-split--reversed .explore-split__media {
    order: 2;
  }
}
.explore-split__media {
  border-radius: 16px;
  overflow: hidden;
  aspect-ratio: 4/3;
}
.explore-split__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.explore-split__kicker {
  font-family: "Caveat", "Segoe Script", cursive;
  font-weight: 600;
  font-size: 1.5rem;
  color: #8f6400;
}
.explore-split__title {
  font-family:
    "Anton",
    "Arial Narrow",
    "Montserrat",
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    Roboto,
    Oxygen-Sans,
    Ubuntu,
    Cantarell,
    "Helvetica Neue",
    sans-serif;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.015em;
  line-height: 1.05;
  font-size: clamp(1.9rem, 3.6vw, 2.8rem);
  color: #1a1a1a;
  margin: 6px 0 1rem;
}
.explore-split__text {
  color: #718096;
  line-height: 1.7;
  max-width: 55ch;
  margin: 0 0 1rem;
}
.explore-split__chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin: 0 0 2rem;
  padding: 0;
  list-style: none;
}
.explore-split__chips li {
  background: #f5f7fa;
  border: 1px solid rgba(11, 58, 93, 0.1);
  color: #0b3a5d;
  font-size: 0.875rem;
  font-weight: 600;
  padding: 7px 14px;
  border-radius: 999px;
}
.explore-split--alt .explore-split__chips li {
  background: #ffffff;
}

.explore-attractions {
  padding: 4rem 0;
  background: #f5f7fa;
}
@media (min-width: 1024px) {
  .explore-attractions {
    padding: 6rem 0;
  }
}
.explore-attractions__header {
  margin-bottom: 4rem;
}
.explore-attractions__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}
@media (min-width: 576px) {
  .explore-attractions__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 1024px) {
  .explore-attractions__grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
  }
}
.explore-attractions__more {
  margin-top: 4rem;
  text-align: center;
}
.explore-attractions__note {
  text-align: center;
  color: #718096;
  font-size: 0.875rem;
  margin: 0 0 2rem;
}
.explore-attractions .pagination {
  margin-top: 4rem;
}
.explore-attractions .pagination .nav-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.5rem;
}
.explore-attractions .pagination .page-numbers {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 40px;
  height: 40px;
  padding: 0 14px;
  border-radius: 999px;
  background: #ffffff;
  border: 1px solid rgba(14, 14, 14, 0.1);
  color: #0b3a5d;
  font-size: 0.875rem;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.2s ease;
}
.explore-attractions .pagination .page-numbers:hover {
  border-color: #0b3a5d;
}
.explore-attractions .pagination .page-numbers.current {
  background: #f2b705;
  border-color: #f2b705;
  color: #092e47;
}
.explore-attractions .pagination .page-numbers.dots {
  border: none;
  background: transparent;
  color: #718096;
}

.attraction-card {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  min-height: 300px;
  border-radius: 16px;
  overflow: hidden;
  text-decoration: none;
  color: #ffffff;
  transition: all 0.3s ease-in-out;
}
.attraction-card__bg {
  position: absolute;
  inset: 0;
}
.attraction-card__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.attraction-card__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(9, 46, 71, 0.88) 0%,
    rgba(9, 46, 71, 0.3) 55%,
    transparent 100%
  );
}
.attraction-card__content {
  position: relative;
  z-index: 2;
  padding: 2rem;
}
.attraction-card__tag {
  font-family: "Caveat", "Segoe Script", cursive;
  font-weight: 600;
  font-size: 1.2rem;
  color: #f2b705;
}
.attraction-card__title {
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1.25;
  margin: 4px 0 6px;
}
.attraction-card__desc {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.5;
  margin: 0;
}
.attraction-card:hover,
.attraction-card:focus-visible {
  transform: translateY(-4px);
  box-shadow: 0 20px 40px rgba(9, 46, 71, 0.2);
}
.attraction-card:hover .attraction-card__bg img,
.attraction-card:focus-visible .attraction-card__bg img {
  transform: scale(1.06);
}
.attraction-card:focus-visible {
  outline: 3px solid #f2b705;
  outline-offset: 3px;
}

.hub-cards {
  padding: 4rem 0;
  background: #ffffff;
}
@media (min-width: 1024px) {
  .hub-cards {
    padding: 5rem 0;
  }
}
.hub-cards__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}
@media (min-width: 768px) {
  .hub-cards__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
.hub-cards .press-box {
  border: 1px solid rgba(11, 58, 93, 0.08);
}

.day-plan {
  padding: 4rem 0;
  background: #ffffff;
}
@media (min-width: 1024px) {
  .day-plan {
    padding: 5rem 0;
  }
}
.day-plan .section-head {
  margin-bottom: 4rem;
}
.day-plan__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}
@media (min-width: 768px) {
  .day-plan__grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
  }
}
.day-plan__step {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  background: #f5f7fa;
  border-radius: 16px;
  padding: 2rem;
}
.day-plan__time {
  font-family: "Caveat", "Segoe Script", cursive;
  font-weight: 600;
  font-size: 1.4rem;
  color: #8f6400;
}
.day-plan__title {
  font-size: 1.15rem;
  font-weight: 700;
  color: #1a1a1a;
  margin: 0;
}
.day-plan__text {
  font-size: 0.875rem;
  color: #718096;
  line-height: 1.6;
  margin: 0;
}

.explore-cta {
  background: #f2b705;
  color: #092e47;
  padding: 4rem 0;
}
.explore-cta__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 0.5rem;
}
.explore-cta__script {
  font-family: "Caveat", "Segoe Script", cursive;
  font-weight: 600;
  font-size: clamp(1.4rem, 2.4vw, 1.9rem);
}
.explore-cta__title {
  font-family:
    "Anton",
    "Arial Narrow",
    "Montserrat",
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    Roboto,
    Oxygen-Sans,
    Ubuntu,
    Cantarell,
    "Helvetica Neue",
    sans-serif;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  line-height: 1;
  font-size: clamp(2rem, 4.5vw, 3.2rem);
  margin: 0;
}
.explore-cta .btn--primary {
  background: #0b3a5d;
  color: #ffffff;
  margin-top: 1rem;
}
.explore-cta .btn--primary:hover {
  background: #092e47;
}

.explore-cta--brand {
  background: #0b3a5d;
  color: #ffffff;
}
.explore-cta--brand .btn--primary {
  background: #f2b705;
  color: #092e47;
}
.explore-cta--brand .btn--primary:hover {
  background: #d9a504;
}

.page-body {
  padding: 4rem 0;
  background: #ffffff;
}
.page-body__inner {
  max-width: 780px;
  margin: 0 auto;
  color: #1a1a1a;
  line-height: 1.7;
}
.page-body__inner h2,
.page-body__inner h3 {
  font-family:
    "Anton",
    "Arial Narrow",
    "Montserrat",
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    Roboto,
    Oxygen-Sans,
    Ubuntu,
    Cantarell,
    "Helvetica Neue",
    sans-serif;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.015em;
  color: #0b3a5d;
  margin: 2rem 0 0.5rem;
}
.page-body__inner p {
  margin: 0 0 1rem;
}
.page-body__inner a {
  color: #8f6400;
  font-weight: 600;
  text-decoration: underline;
}

.legal-hero {
  background: #0b3a5d;
  color: #ffffff;
  padding-top: calc(var(--chrome-h) + 2rem);
  padding-bottom: 2rem;
}
.legal-hero__kicker {
  display: block;
  font-family: "Caveat", "Segoe Script", cursive;
  font-weight: 600;
  font-size: 1.4rem;
  color: #f2b705;
}
.legal-hero__title {
  font-family:
    "Anton",
    "Arial Narrow",
    "Montserrat",
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    Roboto,
    Oxygen-Sans,
    Ubuntu,
    Cantarell,
    "Helvetica Neue",
    sans-serif;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  line-height: 1.02;
  font-size: clamp(2rem, 5vw, 3.4rem);
  margin: 4px 0 0;
}
.legal-hero__updated {
  margin: 0.5rem 0 0;
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.75);
}

.page-body--legal .page-body__inner ul,
.page-body--legal .page-body__inner ol {
  margin: 0 0 1rem;
  padding-left: 1.25rem;
}
.page-body--legal .page-body__inner ul li,
.page-body--legal .page-body__inner ol li {
  margin-bottom: 6px;
}
.page-body--legal .page-body__inner h2 {
  font-size: 1.4rem;
}
.page-body--legal .page-body__inner h3 {
  font-size: 1.15rem;
  color: #1a1a1a;
}
.page-body--legal .page-body__inner table {
  width: 100%;
  border-collapse: collapse;
  margin: 0 0 1rem;
  font-size: 0.875rem;
}
.page-body--legal .page-body__inner table th,
.page-body--legal .page-body__inner table td {
  text-align: left;
  padding: 10px 12px;
  border-bottom: 1px solid rgba(11, 58, 93, 0.12);
}
.page-body--legal .page-body__inner table th {
  font-weight: 700;
  color: #0b3a5d;
}

@media (prefers-reduced-motion: reduce) {
  .attraction-card,
  .attraction-card__bg img {
    transition: none;
  }
  .attraction-card:hover,
  .attraction-card:focus-visible {
    transform: none;
  }
  .attraction-card:hover .attraction-card__bg img,
  .attraction-card:focus-visible .attraction-card__bg img {
    transform: none;
  }
}
.explore-subnav__link.is-active {
  background: #0b3a5d;
  color: #ffffff;
}

section[id],
div[id] {
  scroll-margin-top: calc(var(--chrome-h) + 72px);
}

@media (prefers-reduced-motion: no-preference) {
  html {
    scroll-behavior: smooth;
  }
}
.page-hero__kicker {
  display: block;
  font-family: "Caveat", "Segoe Script", cursive;
  font-weight: 600;
  font-size: clamp(1.4rem, 2.4vw, 2rem);
  line-height: 1;
  color: #f2b705;
  margin-bottom: 10px;
  text-shadow: 0 4px 16px rgba(0, 0, 0, 0.4);
}

.page-hero__title--article {
  font-size: clamp(2rem, 5vw, 4rem);
  line-height: 1.02;
  max-width: 20ch;
}

/* ============================================
   PAGE: Arhiva događaja (/dogadjaji/)
   Filteri (period + kategorija) + poster grid
   (.event-tile kartice iz _events-strip.scss)
   ============================================ */
.events-archive {
  padding: 4rem 0;
  background: #f5f7fa;
}
@media (min-width: 1024px) {
  .events-archive {
    padding: 4rem 0 6rem;
  }
}
.events-archive__filters {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  margin-bottom: 4rem;
}
.events-archive__filters-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.5rem;
}
.events-archive .event-filter {
  text-decoration: none;
}
.events-archive__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}
@media (min-width: 576px) {
  .events-archive__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 1024px) {
  .events-archive__grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
  }
}
.events-archive__empty {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  text-align: center;
  background: #ffffff;
  border-radius: 16px;
  padding: 4rem;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}
.events-archive__empty p {
  color: #718096;
  margin: 0 0 1rem;
}
.events-archive__empty-title {
  font-family:
    "Anton",
    "Arial Narrow",
    "Montserrat",
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    Roboto,
    Oxygen-Sans,
    Ubuntu,
    Cantarell,
    "Helvetica Neue",
    sans-serif;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.015em;
  font-size: clamp(1.4rem, 2.6vw, 2rem);
  line-height: 1.1;
  color: #0b3a5d;
  margin: 0;
}
.events-archive__map-link {
  text-align: center;
  margin: 4rem 0 0;
  color: #718096;
  font-size: 0.875rem;
}
.events-archive__map-link a {
  color: #8f6400;
  font-weight: 700;
  text-decoration: none;
  border-bottom: 2px solid #f2b705;
  padding-bottom: 2px;
}
.events-archive__map-link a:hover {
  color: #0b3a5d;
}
.events-archive .pagination {
  margin-top: 4rem;
}
.events-archive .pagination .nav-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.5rem;
}
.events-archive .pagination .page-numbers {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 40px;
  height: 40px;
  padding: 0 14px;
  border-radius: 999px;
  background: #ffffff;
  border: 1px solid rgba(14, 14, 14, 0.1);
  color: #0b3a5d;
  font-size: 0.875rem;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.2s ease;
}
.events-archive .pagination .page-numbers:hover {
  border-color: #0b3a5d;
}
.events-archive .pagination .page-numbers.current {
  background: #f2b705;
  border-color: #f2b705;
  color: #092e47;
}
.events-archive .pagination .page-numbers.dots {
  border: none;
  background: transparent;
  color: #718096;
}

/* ============================================
   PAGE: Kontakt
   Info kartice + forma (label iznad polja,
   fokus prsten, honeypot skriven)
   ============================================ */
.contact {
  padding: 4rem 0;
  background: #f5f7fa;
}
@media (min-width: 1024px) {
  .contact {
    padding: 5rem 0;
  }
}
.contact__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  align-items: start;
}
@media (min-width: 1024px) {
  .contact__grid {
    grid-template-columns: 0.9fr 1.1fr;
    gap: 4rem;
  }
}
.contact__stack {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.contact-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: #718096;
  line-height: 1.6;
}
.contact-list strong {
  color: #1a1a1a;
  margin-right: 4px;
}
.contact-list a {
  color: #8f6400;
  font-weight: 700;
  text-decoration: none;
}
.contact-list a:hover {
  color: #0b3a5d;
}

.contact-social {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}
.contact-social a {
  display: inline-flex;
  padding: 8px 16px;
  border-radius: 999px;
  background: #f5f7fa;
  border: 1px solid rgba(11, 58, 93, 0.1);
  color: #0b3a5d;
  font-size: 0.875rem;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.2s ease;
}
.contact-social a:hover {
  background: #f2b705;
  border-color: #f2b705;
  color: #092e47;
}

.contact-form-card {
  background: #ffffff;
  border-radius: 16px;
  padding: 4rem;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}
.contact-form-card__kicker {
  display: block;
  font-family: "Caveat", "Segoe Script", cursive;
  font-weight: 600;
  font-size: 1.4rem;
  color: #8f6400;
}
.contact-form-card__title {
  font-family:
    "Anton",
    "Arial Narrow",
    "Montserrat",
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    Roboto,
    Oxygen-Sans,
    Ubuntu,
    Cantarell,
    "Helvetica Neue",
    sans-serif;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.015em;
  font-size: clamp(1.5rem, 2.6vw, 2rem);
  line-height: 1.05;
  color: #0b3a5d;
  margin: 4px 0 2rem;
}

.contact-form .form-field {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 1rem;
}
.contact-form .form-field label {
  font-size: 0.875rem;
  font-weight: 700;
  color: #1a1a1a;
}
.contact-form .form-field input,
.contact-form .form-field textarea {
  padding: 12px 14px;
  border: 1px solid rgba(11, 58, 93, 0.18);
  border-radius: 8px;
  font-family:
    "Montserrat",
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    Roboto,
    Oxygen-Sans,
    Ubuntu,
    Cantarell,
    "Helvetica Neue",
    sans-serif;
  font-size: 1rem;
  color: #1a1a1a;
  background: #ffffff;
  transition: all 0.2s ease;
}
.contact-form .form-field input:focus,
.contact-form .form-field textarea:focus {
  outline: none;
  border-color: #f2b705;
  box-shadow: 0 0 0 3px rgba(242, 183, 5, 0.25);
}
.contact-form .form-field textarea {
  min-height: 160px;
  resize: vertical;
}

.form-hp {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.form-notice {
  padding: 1rem;
  border-radius: 8px;
  font-size: 0.875rem;
  font-weight: 600;
  margin: 0 0 1rem;
}
.form-notice--ok {
  background: rgba(30, 125, 67, 0.1);
  color: #16603a;
}
.form-notice--err {
  background: rgba(179, 38, 30, 0.08);
  color: #93261e;
}

/* ============================================
   COMPONENT: Cookie banner
   Kompaktna traka uz dno. Ulazi odozdo, ne
   blokira sadržaj, ne viče na posjetioca.
   ============================================ */
.cookie-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 2000;
  background: #ffffff;
  border-top: 2px solid #f2b705;
  box-shadow: 0 -8px 32px rgba(9, 46, 71, 0.14);
  transform: translateY(100%);
  opacity: 0;
  transition:
    transform 260ms cubic-bezier(0.23, 1, 0.32, 1),
    opacity 200ms ease-out;
}
.cookie-banner.is-visible {
  transform: translateY(0);
  opacity: 1;
}
.cookie-banner[hidden] {
  display: none;
}
.cookie-banner__inner {
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding-top: 16px;
  padding-bottom: calc(16px + env(safe-area-inset-bottom, 0px));
}
@media (min-width: 1024px) {
  .cookie-banner__inner {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 4rem;
    padding-top: 18px;
    padding-bottom: calc(18px + env(safe-area-inset-bottom, 0px));
  }
}
.cookie-banner__text {
  min-width: 0;
}
.cookie-banner__title {
  font-family:
    "Anton",
    "Arial Narrow",
    "Montserrat",
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    Roboto,
    Oxygen-Sans,
    Ubuntu,
    Cantarell,
    "Helvetica Neue",
    sans-serif;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  font-size: 0.95rem;
  line-height: 1.15;
  color: #0b3a5d;
  margin: 0 0 4px;
}
.cookie-banner__desc {
  font-size: 0.82rem;
  color: #718096;
  line-height: 1.55;
  margin: 0;
  max-width: 78ch;
}
.cookie-banner__desc a {
  color: #8f6400;
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 2px;
}
.cookie-banner__desc a:hover {
  color: #0b3a5d;
}
.cookie-banner__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  flex-shrink: 0;
}
.cookie-banner__actions .btn {
  height: 40px;
  padding: 0 18px;
  font-size: 0.85rem;
  flex: 1 1 auto;
}
@media (min-width: 576px) {
  .cookie-banner__actions .btn {
    flex: 0 0 auto;
  }
}
.cookie-banner__actions .btn--outline {
  background: #ffffff;
  border-color: rgba(11, 58, 93, 0.35);
  color: #0b3a5d;
}
.cookie-banner__actions .btn--outline:hover {
  border-color: #0b3a5d;
  background: #f5f7fa;
}

/* Link "Podešavanja kolačića" u podnožju.
   Globalni `button {}` stil iz base/_forms.scss daje tamnu pilulu,
   pa ga ovdje potpuno poništavamo da izgleda kao ostali pravni linkovi. */
.footer__legal .footer__legal-link--cookies {
  appearance: none;
  background: transparent;
  border: none;
  border-radius: 0;
  padding: 0;
  margin: 0;
  font: inherit;
  font-size: 13px;
  line-height: inherit;
  color: inherit;
  opacity: 0.75;
  cursor: pointer;
  text-decoration: none;
}
.footer__legal .footer__legal-link--cookies:hover {
  opacity: 1;
  text-decoration: underline;
  background: transparent;
}
.footer__legal .footer__legal-link--cookies:focus-visible {
  outline: 2px solid #f2b705;
  outline-offset: 3px;
}

@media (prefers-reduced-motion: reduce) {
  .cookie-banner {
    transform: none;
    transition: opacity 200ms ease-out;
  }
  .cookie-banner.is-visible {
    transform: none;
  }
}
/* ============================================
   PAGE: O gradu
   Intro izjava + brojke u flat tajlovima
   (splitovi i CTA traka iz _explore.scss)
   ============================================ */
.about-intro {
  padding: 4rem 0;
  background: #ffffff;
}
@media (min-width: 1024px) {
  .about-intro {
    padding: 5rem 0 4rem;
  }
}
.about-intro__inner {
  max-width: 780px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 0.25rem;
}
.about-intro__script {
  font-family: "Caveat", "Segoe Script", cursive;
  font-weight: 600;
  font-size: clamp(1.4rem, 2.4vw, 1.9rem);
  color: #8f6400;
  transform: rotate(-1.5deg);
}
.about-intro__title {
  font-family:
    "Anton",
    "Arial Narrow",
    "Montserrat",
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    Roboto,
    Oxygen-Sans,
    Ubuntu,
    Cantarell,
    "Helvetica Neue",
    sans-serif;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  line-height: 1.05;
  font-size: clamp(1.9rem, 4vw, 3rem);
  color: #1a1a1a;
  margin: 0;
}
.about-intro__lead {
  font-size: 1.05rem;
  color: #718096;
  line-height: 1.7;
  margin: 0.5rem 0 0;
}

.city-stats {
  padding: 0 0 4rem;
  background: #ffffff;
}
@media (min-width: 1024px) {
  .city-stats {
    padding-bottom: 5rem;
  }
}
.city-stats__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}
@media (min-width: 1024px) {
  .city-stats__grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
  }
}
.city-stats__tile {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 170px;
  padding: 2rem;
  border-radius: 16px;
  color: #ffffff;
}
.city-stats__tile--gold {
  background: #f2b705;
  color: #092e47;
}
.city-stats__tile--brand {
  background: #0b3a5d;
}
.city-stats__tile--green {
  background: #2f8f5b;
}
.city-stats__tile--red {
  background: #d94f3d;
}
.city-stats__value {
  font-family:
    "Anton",
    "Arial Narrow",
    "Montserrat",
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    Roboto,
    Oxygen-Sans,
    Ubuntu,
    Cantarell,
    "Helvetica Neue",
    sans-serif;
  font-weight: 400;
  font-size: clamp(2.1rem, 3.6vw, 3.2rem);
  line-height: 1;
  letter-spacing: 0.01em;
}
.city-stats__label {
  font-family: "Caveat", "Segoe Script", cursive;
  font-weight: 600;
  font-size: clamp(1.15rem, 2vw, 1.4rem);
  line-height: 1.15;
  margin-top: 8px;
  opacity: 0.92;
}

.city-stats--pad {
  padding-top: 4rem;
}
.city-stats--pad .section-head {
  margin-bottom: 4rem;
}

.why-bl__num,
.city-stats__value {
  font-variant-numeric: tabular-nums;
}

/* ============================================
   COMPONENT: Gastronomy (Ukusi Krajine)
   Feature + lista preporuka
   ============================================ */
.gastro {
  background: #f5f7fa;
  padding: 4rem 0;
}
@media (min-width: 1024px) {
  .gastro {
    padding: 6rem 0;
  }
}
.gastro__header {
  max-width: 640px;
  margin-bottom: 4rem;
}
.gastro__header .section-label {
  margin-bottom: 0.5rem;
}
.gastro__title {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 700;
  color: #1a1a1a;
  line-height: 1.2;
  margin: 0;
}
.gastro__layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}
@media (min-width: 1024px) {
  .gastro__layout {
    grid-template-columns: 1.4fr 1fr;
    align-items: stretch;
  }
}

.gastro-feature {
  position: relative;
  display: block;
  min-height: 360px;
  border-radius: 16px;
  overflow: hidden;
  text-decoration: none;
  color: #ffffff;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease-in-out;
}
.gastro-feature__media {
  position: absolute;
  inset: 0;
  z-index: 1;
}
.gastro-feature__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.gastro-feature__overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  background: linear-gradient(
    to top,
    rgba(9, 46, 71, 0.92) 0%,
    rgba(9, 46, 71, 0.35) 55%,
    rgba(9, 46, 71, 0.05) 100%
  );
}
.gastro-feature__content {
  position: absolute;
  inset: 0;
  z-index: 3;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 2rem;
}
.gastro-feature__kicker {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #f2b705;
  margin-bottom: 0.25rem;
}
.gastro-feature__name {
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 700;
  line-height: 1.15;
  margin: 0 0 0.5rem;
}
.gastro-feature__desc {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.6;
  margin: 0;
  max-width: 46ch;
}
.gastro-feature:hover,
.gastro-feature:focus-visible {
  transform: translateY(-4px);
  box-shadow: 0 20px 40px rgba(9, 46, 71, 0.18);
}
.gastro-feature:hover .gastro-feature__media img,
.gastro-feature:focus-visible .gastro-feature__media img {
  transform: scale(1.06);
}
.gastro-feature:focus-visible {
  outline: 3px solid #f2b705;
  outline-offset: 3px;
}

.gastro-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.gastro-list__cta {
  margin-top: auto;
  padding-top: 0.5rem;
}

.gastro-spot {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem;
  background: #ffffff;
  border-radius: 8px;
  text-decoration: none;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease-in-out;
}
.gastro-spot__icon {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: #f5f7fa;
  color: #0b3a5d;
  font-size: 1.05rem;
}
.gastro-spot__info {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-width: 0;
}
.gastro-spot__name {
  font-size: 1rem;
  font-weight: 700;
  color: #1a1a1a;
}
.gastro-spot__meta {
  font-size: 0.875rem;
  color: #718096;
}
.gastro-spot__arrow {
  color: #f2b705;
  font-weight: 700;
  transition: transform 0.2s ease;
}
.gastro-spot:hover,
.gastro-spot:focus-visible {
  transform: translateY(-4px);
  box-shadow: 0 16px 28px rgba(9, 46, 71, 0.14);
}
.gastro-spot:hover .gastro-spot__icon,
.gastro-spot:focus-visible .gastro-spot__icon {
  background: #0b3a5d;
  color: #ffffff;
}
.gastro-spot:hover .gastro-spot__arrow,
.gastro-spot:focus-visible .gastro-spot__arrow {
  transform: translateX(4px);
}
.gastro-spot:focus-visible {
  outline: 3px solid #f2b705;
  outline-offset: 2px;
}

@media (prefers-reduced-motion: reduce) {
  .gastro-feature,
  .gastro-feature__media img,
  .gastro-spot,
  .gastro-spot__arrow {
    transition: none;
  }
  .gastro-feature:hover,
  .gastro-feature:focus-visible,
  .gastro-spot:hover,
  .gastro-spot:focus-visible {
    transform: none;
  }
  .gastro-feature:hover .gastro-feature__media img,
  .gastro-feature:focus-visible .gastro-feature__media img,
  .gastro-spot:hover .gastro-spot__arrow,
  .gastro-spot:focus-visible .gastro-spot__arrow {
    transform: none;
  }
}
.hero {
  background: #0b3a5d;
  color: #ffffff;
  padding: 0;
}

.hero__title {
  font-size: clamp(1.8rem, 4vw, 3rem);
  margin: 0;
}

.site-header {
  position: fixed;
  inset: var(--topbar-h) 0 auto 0;
  height: var(--header-h);
  z-index: 1000;
  display: flex;
  align-items: center;
  background: transparent;
  box-shadow: none;
  transition:
    background 220ms ease,
    box-shadow 220ms ease,
    color 220ms ease;
  color: var(--c-white);
}
.site-header__inner {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.site-header__brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}
.site-header__logo {
  height: 42px;
  width: auto;
  display: block;
}
.site-header__logo--dark {
  display: none;
}
.site-header.is-scrolled {
  background: var(--c-white);
  box-shadow: var(--shadow);
  color: var(--c-black);
}
.site-header.is-scrolled .site-header__logo--light {
  display: none;
}
.site-header.is-scrolled .site-header__logo--dark {
  display: block;
}

.site-header:not(.is-scrolled) {
  background: transparent;
  box-shadow: none;
}

.site-main {
  margin-top: 0 !important;
  padding-top: 0 !important;
}

.site-main > .hero-sticky:first-child {
  margin-top: 0;
}

.site-nav__list {
  display: flex;
  align-items: center;
  gap: 22px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.site-nav a {
  color: currentColor;
  text-decoration: none;
  font-weight: 600;
  letter-spacing: 0.02em;
  font-size: 14px;
  text-transform: uppercase;
  opacity: 0.95;
}
.site-nav a:hover {
  opacity: 1;
}

.hero-sticky {
  position: relative;
  height: 200vh;
  overflow: visible;
  background: transparent;
}
.hero-sticky__stage {
  position: sticky;
  top: 0;
  height: 100vh;
  width: 100%;
  overflow: hidden;
  z-index: 0;
}
.hero-sticky__video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transform: scale(1);
  transform-origin: center;
}
.hero-sticky__overlay {
  position: absolute;
  inset: 0;
  background: var(--overlay);
  z-index: 1;
}
.hero-sticky__scroll {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 200vh;
  z-index: 2;
  pointer-events: none;
}
.hero-sticky__content {
  pointer-events: auto;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  padding-top: var(--chrome-h);
  padding-block: 48px;
  color: #ffffff;
  transition:
    opacity 300ms ease,
    transform 300ms ease;
  will-change: opacity, transform;
}

.hero__content {
  position: relative;
  z-index: 1;
  color: var(--c-white);
}
.hero__title {
  margin: 0;
  font-family:
    "Anton",
    "Arial Narrow",
    "Montserrat",
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    Roboto,
    Oxygen-Sans,
    Ubuntu,
    Cantarell,
    "Helvetica Neue",
    sans-serif;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.01em;
  line-height: 0.92;
  font-size: clamp(64px, 11vw, 190px);
  filter: drop-shadow(0 14px 38px rgba(0, 0, 0, 0.42));
}
.hero__subtitle {
  margin-top: 14px;
  max-width: 24ch;
  font-family: "Caveat", "Segoe Script", cursive;
  font-weight: 600;
  font-size: clamp(1.7rem, 2.8vw, 2.5rem);
  line-height: 1.15;
  color: #ffffff;
  text-shadow: 0 4px 18px rgba(0, 0, 0, 0.4);
}
.hero__cta {
  margin-top: 30px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.hero-sticky__content.is-fading {
  opacity: 0;
  transform: translateY(-20px);
}

@media (prefers-reduced-motion: no-preference) {
  .hero-sticky__video {
    animation: hero-ken-burns 20s ease-out infinite alternate;
    will-change: transform;
  }
}
@media (prefers-reduced-motion: reduce) {
  .hero-sticky__video {
    animation: none;
    transform: none;
  }
}
@keyframes hero-ken-burns {
  from {
    transform: scale(1);
  }
  to {
    transform: scale(1.08);
  }
}
/* ============================================
   Ulazak naslova iz maske
   Vidi se jednom po posjeti, pa je animacija
   opravdana. Svaka linija ima svoju masku.
   ============================================ */
.hero__title-line {
  display: block;
  overflow: hidden;
  padding-top: 0.16em;
  margin-top: -0.16em;
  padding-bottom: 0.1em;
  margin-bottom: -0.1em;
}
.hero__title-line > span {
  display: block;
}

@media (prefers-reduced-motion: no-preference) {
  .hero__title-line > span {
    transform: translateY(105%);
    animation: hero-line-in 900ms cubic-bezier(0.16, 1, 0.3, 1) 120ms forwards;
  }
  .hero__title-line:nth-child(2) > span {
    animation-delay: 210ms;
  }
  .hero__subtitle,
  .hero__cta {
    opacity: 0;
    animation: hero-fade-up 700ms cubic-bezier(0.23, 1, 0.32, 1) forwards;
  }
  .hero__subtitle {
    animation-delay: 420ms;
  }
  .hero__cta {
    animation-delay: 520ms;
  }
}
@keyframes hero-line-in {
  to {
    transform: translateY(0);
  }
}
@keyframes hero-fade-up {
  from {
    opacity: 0;
    transform: translateY(14px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
/* ============================================
   COMPONENT: Hero extras (scroll indikator)
   Dopuna postojećeg _hero.scss — ne mijenja ga.
   ============================================ */
.hero__scroll {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 4rem;
  text-decoration: none;
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  transition: all 0.2s ease;
}
.hero__scroll-icon {
  position: relative;
  width: 24px;
  height: 38px;
  border: 2px solid rgba(255, 255, 255, 0.7);
  border-radius: 999px;
  flex-shrink: 0;
}
.hero__scroll-icon::after {
  content: "";
  position: absolute;
  top: 7px;
  left: 50%;
  width: 4px;
  height: 4px;
  margin-left: -2px;
  border-radius: 50%;
  background: #ffffff;
  animation: hero-scroll-dot 1.8s ease-in-out infinite;
}
.hero__scroll:hover,
.hero__scroll:focus-visible {
  color: #ffffff;
}
.hero__scroll:hover .hero__scroll-icon,
.hero__scroll:focus-visible .hero__scroll-icon {
  border-color: #ffffff;
}
.hero__scroll:focus-visible {
  outline: 2px solid #f2b705;
  outline-offset: 4px;
  border-radius: 4px;
}

@keyframes hero-scroll-dot {
  0% {
    transform: translateY(0);
    opacity: 1;
  }
  70% {
    transform: translateY(14px);
    opacity: 0;
  }
  100% {
    transform: translateY(0);
    opacity: 0;
  }
}
@media (prefers-reduced-motion: reduce) {
  .hero__scroll-icon::after {
    animation: none;
  }
}
.highlights {
  padding: clamp(48px, 6vw, 96px) 0;
  background: #ffffff;
  color: #1a1a1a;
  padding-bottom: 3rem;
}
.highlights__grid {
  width: min(1200px, 92vw);
  margin: 0 auto;
  display: grid;
  gap: clamp(24px, 4vw, 56px);
  grid-template-columns: 1fr 1.2fr;
  align-items: start;
}
.highlights__copy {
  padding-top: clamp(8px, 1vw, 16px);
}
.highlights__eyebrow {
  margin: 0 0 12px;
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #6b7280;
}
.highlights__title {
  margin: 0;
  font-size: 6rem;
  line-height: 1.1;
  font-weight: 700;
}
.highlights__lead {
  margin: 0;
  font-size: 16px;
  line-height: 1.7;
  max-width: 44ch;
  color: rgba(26, 26, 26, 0.9);
}
.highlights__slider {
  position: relative;
}
@media (max-width: 900px) {
  .highlights__grid {
    grid-template-columns: 1fr;
  }
  .highlights__title {
    max-width: 18ch;
  }
}

/* Slider block (BEM odvojen, da ga možeš reuse kasnije) */
.slider__viewport {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: 100%;
  gap: 18px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  padding: 6px;
  margin: -6px;
  scrollbar-width: none;
}
.slider__viewport::-webkit-scrollbar {
  display: none;
}
.slider__slide {
  scroll-snap-align: start;
}
.slider__dots {
  display: flex;
  justify-content: center;
  gap: 10px;
  padding-top: 14px;
}
.slider__dot {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  border: 0;
  background: rgba(14, 14, 14, 0.28);
  cursor: pointer;
  padding: 0;
  transition: all 0.3s ease-in-out;
}
.slider__dot.is-active {
  background: rgba(14, 14, 14, 0.75);
  transform: scale(1.25);
}

.slide {
  background: #ffffff;
  border-radius: 16px;
  box-shadow: 6px 9px 5px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  transition: all 0.3s ease-in-out;
}
.slide:hover {
  transform: translateY(-2px);
  box-shadow: 6px 9px 9px rgba(0, 0, 0, 0.14);
}
.slide__media {
  margin: 0;
}
.slide__media img {
  width: 100%;
  height: clamp(240px, 32vw, 360px);
  object-fit: cover;
  display: block;
}
.slide__body {
  padding: 1rem;
}
.slide__title {
  margin: 0 0 0.25rem;
  font-size: 1.05rem;
  line-height: 1.2;
}
.slide__text {
  margin: 0;
  line-height: 1.75;
  color: #6b7280;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
@media (max-width: 900px) {
  .slide__media img {
    height: 280px;
  }
}

/* Dots kao zaseban element (button) */
.bl-dot,
.slider__dot {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  border: 0;
  background: rgba(0, 0, 0, 0.28);
  cursor: pointer;
  padding: 0;
  transition:
    transform 0.2s ease,
    background 0.2s ease;
}
.bl-dot.is-active,
.slider__dot.is-active {
  background: rgba(0, 0, 0, 0.75);
  transform: scale(1.25);
}

.listing {
  display: grid;
  gap: 1rem;
}

.news-section {
  padding: 4rem 0;
  background: #ffffff;
}
@media (min-width: 1024px) {
  .news-section {
    padding: 6rem 0;
  }
}
.news-section .news-header {
  margin-bottom: 4rem;
}
.news-section .news-featured {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  margin-bottom: 2rem;
}
@media (min-width: 768px) {
  .news-section .news-featured {
    grid-template-columns: repeat(2, 1fr);
  }
}
.news-section .news-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}
@media (min-width: 768px) {
  .news-section .news-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
.news-section .news-card {
  display: flex;
  flex-direction: column;
  background: #ffffff;
  border: 1px solid rgba(11, 58, 93, 0.08);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(11, 58, 93, 0.05);
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease;
}
.news-section .news-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 28px rgba(11, 58, 93, 0.12);
}
.news-section .news-card:hover .news-image {
  transform: scale(1.05);
}
.news-section .news-card--featured .news-image,
.news-section .news-card--featured .news-image-placeholder {
  height: 280px;
}
.news-section .news-card--featured .news-card-title {
  font-size: 1.5rem;
}
.news-section .news-media {
  overflow: hidden;
}
.news-section .news-image {
  width: 100%;
  height: 200px;
  background-size: cover;
  background-position: center;
  transition: transform 0.4s ease;
}
.news-section .news-image-placeholder {
  position: relative;
  width: 100%;
  height: 200px;
  background:
    radial-gradient(
      circle at 30% 30%,
      rgba(242, 183, 5, 0.18),
      transparent 55%
    ),
    #0b3a5d;
  overflow: hidden;
}
.news-section .news-image-placeholder::after {
  content: "BL";
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family:
    "Anton",
    "Arial Narrow",
    "Montserrat",
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    Roboto,
    Oxygen-Sans,
    Ubuntu,
    Cantarell,
    "Helvetica Neue",
    sans-serif;
  font-size: 3rem;
  letter-spacing: 0.05em;
  color: rgba(255, 255, 255, 0.12);
}
.news-section .news-content {
  display: flex;
  flex-direction: column;
  flex: 1;
  padding: 2rem;
}
.news-section .news-date {
  order: -1;
  display: inline-flex;
  align-items: center;
  align-self: flex-start;
  gap: 0.4rem;
  font-size: 0.875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: #8f6400;
  margin: 0 0 0.5rem;
}
.news-section .news-card-title {
  font-size: 1.2rem;
  font-weight: 700;
  color: #0b3a5d;
  margin: 0 0 0.5rem;
  line-height: 1.3;
}
.news-section .news-excerpt {
  color: rgba(11, 58, 93, 0.7);
  font-size: 0.875rem;
  line-height: 1.6;
  margin-bottom: 1rem;
}
.news-section .news-excerpt p {
  margin: 0;
}
.news-section .news-link {
  align-self: flex-start;
  margin-top: auto;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  color: #8f6400;
  font-weight: 700;
  font-size: 0.875rem;
  text-decoration: none;
  border-bottom: 2px solid #f2b705;
  padding-bottom: 2px;
  transition:
    color 0.2s ease,
    gap 0.2s ease;
}
.news-section .news-link::after {
  content: "→";
  transition: transform 0.2s ease;
}
.news-section .news-link:hover {
  color: #0b3a5d;
}
.news-section .news-link:hover::after {
  transform: translateX(3px);
}

.news-archive__empty {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  text-align: center;
  background: #f5f7fa;
  border-radius: 16px;
  padding: 4rem;
}
.news-archive__empty p {
  color: #718096;
  margin: 0;
}
.news-archive__empty-title {
  font-family:
    "Anton",
    "Arial Narrow",
    "Montserrat",
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    Roboto,
    Oxygen-Sans,
    Ubuntu,
    Cantarell,
    "Helvetica Neue",
    sans-serif;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.015em;
  font-size: clamp(1.4rem, 2.6vw, 2rem);
  line-height: 1.1;
  color: #0b3a5d;
  margin: 0;
}
.news-archive .pagination {
  margin-top: 4rem;
}
.news-archive .pagination .nav-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.5rem;
}
.news-archive .pagination .page-numbers {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 40px;
  height: 40px;
  padding: 0 14px;
  border-radius: 999px;
  background: #f5f7fa;
  border: 1px solid rgba(14, 14, 14, 0.1);
  color: #0b3a5d;
  font-size: 0.875rem;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.2s ease;
}
.news-archive .pagination .page-numbers:hover {
  border-color: #0b3a5d;
}
.news-archive .pagination .page-numbers.current {
  background: #f2b705;
  border-color: #f2b705;
  color: #092e47;
}
.news-archive .pagination .page-numbers.dots {
  border: none;
  background: transparent;
  color: #718096;
}

/* ============================================
   COMPONENT: Newsletter + Press kutak
   + zaseban #hashtag Instagram strip
   ============================================ */
.newsletter-social {
  padding: 4rem 0;
  background: #f5f7fa;
}
@media (min-width: 1024px) {
  .newsletter-social {
    padding: 6rem 0;
  }
}
.newsletter-social__wrapper {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  align-items: stretch;
}
@media (min-width: 1024px) {
  .newsletter-social__wrapper {
    grid-template-columns: 1.6fr 1fr;
    gap: 4rem;
  }
}

.newsletter-box {
  position: relative;
  background: #0b3a5d;
  color: #ffffff;
  border-radius: 16px;
  overflow: hidden;
  display: grid;
  grid-template-columns: 1fr;
}
@media (min-width: 768px) {
  .newsletter-box {
    grid-template-columns: 1.15fr 0.85fr;
  }
}
.newsletter-box__content {
  position: relative;
  z-index: 2;
  padding: 4rem;
}
@media (min-width: 1024px) {
  .newsletter-box__content {
    padding: 5rem 4rem;
  }
}
.newsletter-box__title {
  font-size: clamp(1.5rem, 3vw, 1.9rem);
  font-weight: 700;
  margin-bottom: 0.5rem;
  line-height: 1.2;
}
.newsletter-box__desc {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 2rem;
  line-height: 1.6;
  max-width: 380px;
}
.newsletter-box__benefits {
  list-style: none;
  margin: 0 0 2rem;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.newsletter-box__benefits li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.92);
}
.newsletter-box__benefits svg {
  flex-shrink: 0;
  color: #f2b705;
}
.newsletter-box__media {
  position: relative;
  display: none;
}
@media (min-width: 768px) {
  .newsletter-box__media {
    display: block;
  }
}
.newsletter-box__media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.newsletter-form__group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
@media (min-width: 576px) {
  .newsletter-form__group {
    flex-direction: row;
  }
}
.newsletter-form__input {
  flex: 1;
  padding: 1rem 2rem;
  border: 2px solid transparent;
  border-radius: 8px;
  font-size: 1rem;
  background: #ffffff;
  color: #1a1a1a;
  transition: all 0.2s ease;
}
.newsletter-form__input::placeholder {
  color: #718096;
}
.newsletter-form__input:focus {
  outline: none;
  border-color: #f2b705;
}
.newsletter-form__btn {
  padding: 1rem 4rem;
  background: #f2b705;
  color: #092e47;
  font-size: 1rem;
  font-weight: 600;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.2s ease;
  white-space: nowrap;
}
.newsletter-form__btn:hover {
  background: rgb(202.0259109312, 152.771659919, 4.1740890688);
  transform: translateY(-1px);
}
.newsletter-form__btn:active {
  transform: translateY(0);
}
.newsletter-form__privacy {
  margin-top: 1rem;
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.7);
}
.newsletter-form__privacy a {
  color: #ffffff;
  text-decoration: underline;
}
.newsletter-form__privacy a:hover {
  color: #f2b705;
}

.press-box {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  gap: 0.5rem;
  background: #ffffff;
  border-radius: 16px;
  padding: 4rem;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}
.press-box__kicker {
  font-family: "Caveat", "Segoe Script", cursive;
  font-weight: 600;
  font-size: 1.4rem;
  color: #8f6400;
}
.press-box__title {
  font-family:
    "Anton",
    "Arial Narrow",
    "Montserrat",
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    Roboto,
    Oxygen-Sans,
    Ubuntu,
    Cantarell,
    "Helvetica Neue",
    sans-serif;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.015em;
  font-size: clamp(1.5rem, 2.6vw, 2rem);
  line-height: 1.05;
  color: #0b3a5d;
  margin: 0;
}
.press-box__desc {
  font-size: 0.875rem;
  color: #718096;
  line-height: 1.6;
  margin: 0 0 1rem;
  max-width: 34ch;
}

.insta-strip {
  padding: 4rem 0;
  background: #ffffff;
}
@media (min-width: 1024px) {
  .insta-strip {
    padding: 6rem 0;
  }
}
.insta-strip__head {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 0.25rem;
  margin-bottom: 2rem;
}
.insta-strip__title {
  font-family:
    "Anton",
    "Arial Narrow",
    "Montserrat",
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    Roboto,
    Oxygen-Sans,
    Ubuntu,
    Cantarell,
    "Helvetica Neue",
    sans-serif;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  font-size: clamp(1.8rem, 4.5vw, 3rem);
  line-height: 1;
  color: #0b3a5d;
  margin: 0;
}
.insta-strip__title span {
  color: #8f6400;
}
.insta-strip__script {
  font-family: "Caveat", "Segoe Script", cursive;
  font-weight: 600;
  font-size: clamp(1.3rem, 2.4vw, 1.8rem);
  color: #718096;
}
.insta-strip__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.5rem;
  margin-bottom: 2rem;
}
@media (min-width: 768px) {
  .insta-strip__grid {
    grid-template-columns: repeat(6, 1fr);
  }
}
.insta-strip__item {
  position: relative;
  aspect-ratio: 1;
  border-radius: 8px;
  overflow: hidden;
}
.insta-strip__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.3s ease-in-out;
}
.insta-strip__item:hover img {
  transform: scale(1.1);
}
.insta-strip__item:hover .insta-strip__item-overlay {
  opacity: 1;
}
.insta-strip__item-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(11, 58, 93, 0.7);
  color: #ffffff;
  opacity: 0;
  transition: all 0.2s ease;
}
.insta-strip__follow {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  width: fit-content;
  margin: 0 auto;
  padding: 1rem 2rem;
  background: #f5f7fa;
  color: #1a1a1a;
  font-size: 0.875rem;
  font-weight: 600;
  text-decoration: none;
  border-radius: 999px;
  transition: all 0.2s ease;
}
.insta-strip__follow svg {
  color: #0b3a5d;
}
.insta-strip__follow:hover {
  background: #0b3a5d;
  color: #ffffff;
}
.insta-strip__follow:hover svg {
  color: #ffffff;
}

@media (prefers-reduced-motion: reduce) {
  .insta-strip__item img {
    transition: none;
  }
  .insta-strip__item:hover img {
    transform: none;
  }
}
/* ============================================
   COMPONENT: Practical Info (tamna, premium)
   Praktične informacije za turiste
   ============================================ */
.practical-info {
  padding: 4rem 0;
  background: #092e47;
  color: #ffffff;
}
@media (min-width: 1024px) {
  .practical-info {
    padding: 6rem 0;
  }
}
.practical-info__header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 4rem;
}
.practical-info__heading .section-label {
  margin-bottom: 0.5rem;
}
.practical-info__title {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 700;
  color: #ffffff;
  line-height: 1.2;
  margin: 0;
}
.practical-info__cta {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  font-size: 0.875rem;
  font-weight: 700;
  color: #f2b705;
  text-decoration: none;
  white-space: nowrap;
  transition: all 0.2s ease;
}
.practical-info__cta svg {
  transition: all 0.2s ease;
}
.practical-info__cta:hover svg {
  transform: translateX(4px);
}
.practical-info__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}
@media (min-width: 768px) {
  .practical-info__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 1024px) {
  .practical-info__grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.info-card {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 16px;
  padding: 2rem;
  transition: all 0.3s ease-in-out;
  display: flex;
  flex-direction: column;
}
.info-card:hover {
  background: rgba(255, 255, 255, 0.1);
  transform: translateY(-4px);
}
.info-card__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  background: #f2b705;
  color: #092e47;
  border-radius: 8px;
  margin-bottom: 1rem;
}
.info-card__icon svg {
  width: 26px;
  height: 26px;
}
.info-card__title {
  font-size: 1.125rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 1rem;
}
.info-card__list {
  list-style: none;
  padding: 0;
  margin: 0 0 auto;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.info-card__list li {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.5;
}
.info-card__list li strong {
  display: block;
  color: #ffffff;
  font-weight: 600;
  margin-bottom: 2px;
}
.info-card__list li a {
  color: #f2b705;
  text-decoration: none;
}
.info-card__list li a:hover {
  text-decoration: underline;
}
.info-card__link {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  margin-top: 2rem;
  font-size: 0.875rem;
  font-weight: 700;
  color: #f2b705;
  text-decoration: none;
  transition: all 0.2s ease;
}
.info-card__link svg {
  transition: all 0.2s ease;
}
.info-card__link:hover {
  color: rgb(250.5020242915, 197.4259109312, 37.2979757085);
}
.info-card__link:hover svg {
  transform: translateX(4px);
}

/* ============================================
   PAGE: Praktični savjeti
   Grupe pitanja + FAQ kartice (odgovor po kartici)
   ============================================ */
.tips {
  padding: 4rem 0;
  background: #f5f7fa;
}
@media (min-width: 1024px) {
  .tips {
    padding: 4rem 0 6rem;
  }
}

.tips-group {
  margin-bottom: 4rem;
}
.tips-group:last-child {
  margin-bottom: 0;
}
.tips-group__title {
  font-family:
    "Anton",
    "Arial Narrow",
    "Montserrat",
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    Roboto,
    Oxygen-Sans,
    Ubuntu,
    Cantarell,
    "Helvetica Neue",
    sans-serif;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.015em;
  font-size: clamp(1.5rem, 2.8vw, 2.1rem);
  line-height: 1.05;
  color: #0b3a5d;
  margin: 0 0 2rem;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid rgba(242, 183, 5, 0.5);
}
.tips-group__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}
@media (min-width: 768px) {
  .tips-group__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 1024px) {
  .tips-group__grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
  }
}

.tip-card {
  background: #ffffff;
  border: 1px solid rgba(11, 58, 93, 0.08);
  border-radius: 16px;
  padding: 2rem;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}
.tip-card__q {
  display: flex;
  gap: 0.5rem;
  font-size: 1.05rem;
  font-weight: 700;
  color: #1a1a1a;
  line-height: 1.3;
  margin: 0 0 0.5rem;
}
.tip-card__q::before {
  content: "?";
  flex-shrink: 0;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: #f2b705;
  color: #092e47;
  font-size: 0.9rem;
  font-weight: 800;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.tip-card__a {
  font-size: 0.875rem;
  color: #718096;
  line-height: 1.6;
  margin: 0;
}

/* ============================================
   COMPONENT: Quick Access
   Brza navigacija ispod hero sekcije
   ============================================ */
.quick-access {
  background: #ffffff;
  padding: 2rem 0;
  border-bottom: 1px solid #e2e8f0;
  position: relative;
  z-index: 10;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}
.quick-access__grid {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.5rem;
  flex-wrap: wrap;
}
@media (min-width: 768px) {
  .quick-access__grid {
    gap: 2rem;
    flex-wrap: nowrap;
  }
}
@media (min-width: 1024px) {
  .quick-access__grid {
    gap: 4rem;
  }
}
.quick-access__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  padding: 1rem 2rem;
  border-radius: 8px;
  text-decoration: none;
  color: #1a1a1a;
  transition: all 0.3s ease-in-out;
  min-width: 100px;
}
.quick-access__item:hover,
.quick-access__item:focus {
  background: #f5f7fa;
  color: #0b3a5d;
  transform: translateY(-2px);
}
.quick-access__item:hover .quick-access__icon,
.quick-access__item:focus .quick-access__icon {
  color: #0b3a5d;
  transform: scale(1.1);
}
.quick-access__item:focus {
  outline: 2px solid #0b3a5d;
  outline-offset: 2px;
}
@media (max-width: 767px) {
  .quick-access__item {
    padding: 0.5rem 1rem;
    min-width: 80px;
  }
}
.quick-access__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #f5f7fa;
  color: #0b3a5d;
  transition: all 0.3s ease-in-out;
}
.quick-access__icon svg {
  width: 28px;
  height: 28px;
}
@media (max-width: 767px) {
  .quick-access__icon {
    width: 48px;
    height: 48px;
  }
  .quick-access__icon svg {
    width: 24px;
    height: 24px;
  }
}
.quick-access__label {
  font-size: 0.875rem;
  font-weight: 500;
  text-align: center;
  white-space: nowrap;
}
@media (min-width: 768px) {
  .quick-access__label {
    font-size: 1rem;
  }
}

/* ============================================
   Reveal na skrol
   Kriva je jaka ease-out (0.23, 1, 0.32, 1):
   sadržaj krene odmah i mirno sjedne.
   ============================================ */
@media (prefers-reduced-motion: no-preference) {
  body.js-reveal .reveal {
    opacity: 0;
    transform: translateY(18px);
    transition:
      opacity 500ms cubic-bezier(0.23, 1, 0.32, 1),
      transform 500ms cubic-bezier(0.23, 1, 0.32, 1);
  }
  body.js-reveal .reveal.is-visible {
    opacity: 1;
    transform: none;
  }
  body.js-reveal .reveal--d1 {
    transition-delay: 60ms;
  }
  body.js-reveal .reveal--d2 {
    transition-delay: 120ms;
  }
  body.js-reveal .reveal--d3 {
    transition-delay: 180ms;
  }
}
@media (prefers-reduced-motion: reduce) {
  .reveal,
  body.js-reveal .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
}
/* ============================================
   COMPONENT: Seasonal Collections
   Gotovi vodiči / inspiracija za putovanje
   ============================================ */
.collections {
  background: #f9fafb;
  padding: 4rem 0;
}
@media (min-width: 1024px) {
  .collections {
    padding: 6rem 0;
  }
}
.collections__header {
  max-width: 640px;
  margin-bottom: 4rem;
}
.collections__header .section-label {
  margin-bottom: 0.5rem;
}
.collections__title {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 700;
  color: #1a1a1a;
  line-height: 1.2;
  margin: 0 0 1rem;
}
.collections__subtitle {
  font-size: 1rem;
  color: #718096;
  line-height: 1.6;
  margin: 0;
}
.collections__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}
@media (min-width: 576px) {
  .collections__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 1024px) {
  .collections__grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
  }
}

.collection-card {
  position: relative;
  display: block;
  height: 320px;
  border-radius: 16px;
  overflow: hidden;
  text-decoration: none;
  color: #ffffff;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease-in-out;
}
.collection-card__bg {
  position: absolute;
  inset: 0;
  z-index: 1;
}
.collection-card__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.collection-card__overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  background: linear-gradient(
    to top,
    rgba(11, 58, 93, 0.92) 0%,
    rgba(11, 58, 93, 0.35) 50%,
    rgba(11, 58, 93, 0.05) 100%
  );
  transition: all 0.3s ease-in-out;
}
.collection-card__content {
  position: absolute;
  inset: 0;
  z-index: 3;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 2rem;
}
.collection-card__kicker {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #f2b705;
  margin-bottom: 0.25rem;
}
.collection-card__title {
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1.2;
  margin: 0 0 0.25rem;
}
.collection-card__meta {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.85);
}
.collection-card:hover,
.collection-card:focus-visible {
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(9, 46, 71, 0.25);
}
.collection-card:hover .collection-card__bg img,
.collection-card:focus-visible .collection-card__bg img {
  transform: scale(1.08);
}
.collection-card:focus-visible {
  outline: 3px solid #f2b705;
  outline-offset: 3px;
}

/* ============================================
   COMPONENT: Stay (Gdje odsjesti)
   ============================================ */
.stay {
  background: #f9fafb;
  padding: 4rem 0;
}
@media (min-width: 1024px) {
  .stay {
    padding: 6rem 0;
  }
}
.stay__header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 4rem;
  flex-wrap: wrap;
}
.stay__header .section-label {
  margin-bottom: 0.5rem;
}
.stay__title {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 700;
  color: #1a1a1a;
  line-height: 1.2;
  margin: 0;
}
.stay__all {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  font-weight: 600;
  font-size: 0.875rem;
  color: #0b3a5d;
  text-decoration: none;
  white-space: nowrap;
  transition: all 0.2s ease;
}
.stay__all span {
  transition: transform 0.2s ease;
}
.stay__all:hover {
  color: #092e47;
}
.stay__all:hover span {
  transform: translateX(4px);
}
.stay__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}
@media (min-width: 768px) {
  .stay__grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
.stay__fallback-note {
  margin: 0 0 2rem;
  padding: 1rem 2rem;
  border-left: 4px solid #0b3a5d;
  background: rgba(11, 58, 93, 0.08);
  border-radius: 8px;
  color: #1a1a1a;
  font-size: 0.875rem;
}

.stay-card {
  display: flex;
  flex-direction: column;
  background: #ffffff;
  border-radius: 16px;
  overflow: hidden;
  text-decoration: none;
  color: #1a1a1a;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease-in-out;
}
.stay-card__media {
  position: relative;
  aspect-ratio: 16/10;
  overflow: hidden;
}
.stay-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.stay-card__type {
  position: absolute;
  top: 1rem;
  left: 1rem;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: #0b3a5d;
  background: #ffffff;
  padding: 5px 10px;
  border-radius: 999px;
  box-shadow: 0 2px 8px rgba(14, 14, 14, 0.15);
}
.stay-card__body {
  flex: 1;
  display: flex;
  flex-direction: column;
  padding: 2rem;
}
.stay-card__name {
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1.25;
  margin: 0 0 0.25rem;
  color: #1a1a1a;
}
.stay-card__area {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.875rem;
  font-weight: 600;
  color: #f2b705;
  margin-bottom: 0.5rem;
}
.stay-card__area i {
  color: #f2b705;
  font-size: 0.85em;
}
.stay-card__desc {
  font-size: 0.875rem;
  color: #718096;
  line-height: 1.6;
  margin: 0;
}
.stay-card__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: auto;
  padding-top: 1rem;
}
.stay-card__badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 12px;
  background: rgba(11, 58, 93, 0.08);
  border-radius: 999px;
  color: #092e47;
  font-size: 0.8rem;
  font-weight: 600;
}
.stay-card__badge--rating {
  background: rgba(242, 183, 5, 0.12);
  color: #f2b705;
}
.stay-card__cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 1rem;
  font-size: 0.875rem;
  font-weight: 700;
  color: #0b3a5d;
}
.stay-card:hover,
.stay-card:focus-visible {
  transform: translateY(-4px);
  box-shadow: 0 20px 40px rgba(9, 46, 71, 0.18);
}
.stay-card:hover .stay-card__media img,
.stay-card:focus-visible .stay-card__media img {
  transform: scale(1.08);
}
.stay-card:focus-visible {
  outline: 3px solid #f2b705;
  outline-offset: 3px;
}

.accommodation-archive,
.accommodation-single-wrap {
  padding-top: 4rem;
  padding-bottom: 4rem;
}
@media (min-width: 1024px) {
  .accommodation-archive,
  .accommodation-single-wrap {
    padding-top: 6rem;
    padding-bottom: 6rem;
  }
}

.accommodation-archive__header {
  margin-bottom: 2rem;
}

.accommodation-archive__title {
  margin: 0 0 0.5rem;
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.15;
}

.accommodation-archive__intro {
  max-width: 60rem;
  margin: 0;
  color: #718096;
  line-height: 1.7;
}

.accommodation-archive__grid {
  margin-top: 2rem;
}

.accommodation-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 2rem;
}
.accommodation-filters__link {
  display: inline-flex;
  align-items: center;
  padding: 10px 16px;
  border-radius: 999px;
  background: #f9fafb;
  color: #1a1a1a;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.2s ease;
}
.accommodation-filters__link:hover,
.accommodation-filters__link.is-active {
  background: #0b3a5d;
  color: #ffffff;
}

.accommodation-pagination {
  margin-top: 4rem;
}
.accommodation-pagination .page-numbers {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 42px;
  height: 42px;
  margin-right: 8px;
  padding: 0 14px;
  border-radius: 999px;
  background: #f9fafb;
  color: #1a1a1a;
  font-weight: 600;
  text-decoration: none;
}
.accommodation-pagination .page-numbers.current,
.accommodation-pagination .page-numbers:hover {
  background: #0b3a5d;
  color: #ffffff;
}

.accommodation-archive__empty {
  padding: 4rem;
  border-radius: 16px;
  background: #f9fafb;
}

.accommodation-single__header {
  margin-bottom: 2rem;
}

.accommodation-single__title {
  margin-bottom: 0.5rem;
}

.accommodation-single__location {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0;
  color: #f2b705;
  font-weight: 600;
}

.accommodation-single__grid {
  display: grid;
  gap: 4rem;
}
@media (min-width: 1024px) {
  .accommodation-single__grid {
    grid-template-columns: minmax(0, 1.6fr) minmax(280px, 0.9fr);
    align-items: start;
  }
}

.accommodation-single__media {
  margin-bottom: 2rem;
  overflow: hidden;
  border-radius: 16px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}
.accommodation-single__media img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
}

.accommodation-single__panel {
  padding: 2rem;
  border-radius: 16px;
  background: #f9fafb;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}
.accommodation-single__panel h2 {
  margin-top: 0;
  margin-bottom: 1rem;
}

.accommodation-single__details {
  margin: 0;
}
.accommodation-single__details div + div {
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(9, 46, 71, 0.08);
}
.accommodation-single__details dt {
  margin-bottom: 4px;
  color: #718096;
  font-size: 0.875rem;
  font-weight: 600;
}
.accommodation-single__details dd {
  margin: 0;
  color: #1a1a1a;
  line-height: 1.6;
}
.accommodation-single__details a {
  color: #0b3a5d;
  text-decoration: none;
}
.accommodation-single__details a:hover {
  color: #092e47;
}

@media (prefers-reduced-motion: reduce) {
  .stay-card,
  .stay__all span {
    transition: none;
  }
  .stay-card:hover,
  .stay-card:focus-visible {
    transform: none;
  }
  .stay-card:hover .stay-card__media img,
  .stay-card:focus-visible .stay-card__media img {
    transform: none;
  }
  .stay__all:hover span {
    transform: none;
  }
}
/* ============================================
   PAGE: Arhiva smještaja (/smjestaj/)
   Filter pilule + stay-card grid + paginacija
   (kartice iz _stay.scss, pilule iz _event-filters.scss)
   ============================================ */
.stay-archive {
  padding: 4rem 0;
  background: #f5f7fa;
}
@media (min-width: 1024px) {
  .stay-archive {
    padding: 4rem 0 6rem;
  }
}
.stay-archive__filters {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.5rem;
  margin-bottom: 4rem;
}
.stay-archive__filters .event-filter {
  text-decoration: none;
}
.stay-archive__grid {
  margin-top: 0;
}
.stay-archive__empty {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  text-align: center;
  background: #ffffff;
  border-radius: 16px;
  padding: 4rem;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}
.stay-archive__empty p {
  color: #718096;
  margin: 0 0 1rem;
}
.stay-archive__empty-title {
  font-family:
    "Anton",
    "Arial Narrow",
    "Montserrat",
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    Roboto,
    Oxygen-Sans,
    Ubuntu,
    Cantarell,
    "Helvetica Neue",
    sans-serif;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.015em;
  font-size: clamp(1.4rem, 2.6vw, 2rem);
  line-height: 1.1;
  color: #0b3a5d;
  margin: 0;
}
.stay-archive__pagination {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 4rem;
}
.stay-archive__pagination .page-numbers {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 40px;
  height: 40px;
  padding: 0 14px;
  border-radius: 999px;
  background: #ffffff;
  border: 1px solid rgba(14, 14, 14, 0.1);
  color: #0b3a5d;
  font-size: 0.875rem;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.2s ease;
}
.stay-archive__pagination .page-numbers:hover {
  border-color: #0b3a5d;
}
.stay-archive__pagination .page-numbers.current {
  background: #f2b705;
  border-color: #f2b705;
  color: #092e47;
}
.stay-archive__pagination .page-numbers.dots {
  border: none;
  background: transparent;
  color: #718096;
}

/* ============================================
   COMPONENT: Priče iz Banja Luke
   (ekvivalent "Love Zagreb — stories by locals")
   1 veliki featured + red manjih foto kartica
   sa žutim CTA dugmićima
   ============================================ */
.stories {
  padding: 4rem 0;
  background: #f5f7fa;
}
@media (min-width: 1024px) {
  .stories {
    padding: 6rem 0;
  }
}
.stories__header {
  margin-bottom: 4rem;
}
.stories__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}
@media (min-width: 768px) {
  .stories__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 1024px) {
  .stories__grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
  }
}
.stories__more {
  margin-top: 4rem;
  text-align: center;
}

.story-card {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  min-height: 300px;
  border-radius: 16px;
  overflow: hidden;
  text-decoration: none;
  color: #ffffff;
  transition: all 0.3s ease-in-out;
}
.story-card--featured {
  min-height: 380px;
}
@media (min-width: 768px) {
  .story-card--featured {
    grid-column: 1/-1;
    min-height: 440px;
  }
}
.story-card--featured .story-card__title {
  font-size: clamp(1.5rem, 3.5vw, 2.4rem);
  max-width: 22ch;
}
.story-card__bg {
  position: absolute;
  inset: 0;
  z-index: 1;
}
.story-card__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.story-card__overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  background: linear-gradient(
    to top,
    rgba(14, 14, 14, 0.78) 0%,
    rgba(14, 14, 14, 0.28) 55%,
    transparent 100%
  );
  transition: all 0.3s ease-in-out;
}
.story-card__content {
  position: relative;
  z-index: 3;
  padding: 2rem;
}
.story-card__kicker {
  display: inline-block;
  font-family: "Caveat", "Segoe Script", cursive;
  font-weight: 600;
  font-size: 1.25rem;
  color: #f2b705;
  margin-bottom: 0.25rem;
}
.story-card__title {
  font-size: 1.15rem;
  font-weight: 700;
  line-height: 1.3;
  margin: 0 0 1rem;
  text-shadow: 0 2px 12px rgba(14, 14, 14, 0.4);
}
.story-card__btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: #f2b705;
  color: #092e47;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  padding: 8px 16px;
  border-radius: 999px;
  transition: all 0.2s ease;
}
.story-card:hover,
.story-card:focus-visible {
  transform: translateY(-4px);
  box-shadow: 0 20px 40px rgba(9, 46, 71, 0.22);
}
.story-card:hover .story-card__bg img,
.story-card:focus-visible .story-card__bg img {
  transform: scale(1.06);
}
.story-card:hover .story-card__btn,
.story-card:focus-visible .story-card__btn {
  background: #ffffff;
}
.story-card:focus-visible {
  outline: 3px solid #f2b705;
  outline-offset: 3px;
}

@media (prefers-reduced-motion: reduce) {
  .story-card,
  .story-card__bg img,
  .story-card__btn {
    transition: none;
  }
  .story-card:hover,
  .story-card:focus-visible {
    transform: none;
  }
  .story-card:hover .story-card__bg img,
  .story-card:focus-visible .story-card__bg img {
    transform: none;
  }
}
.stories__more {
  margin-top: 4rem;
  text-align: center;
}

/* ============================================
   COMPONENT: Top bar (pod-sajtovi)
   Tanka traka iznad glavne navigacije. Fiksirana
   je zajedno sa headerom, pa se sve mjere
   računaju preko --chrome-h (topbar + header).
   ============================================ */
.site-topbar {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 1001;
  height: var(--topbar-h);
  display: flex;
  align-items: center;
  background: #092e47;
  color: rgba(255, 255, 255, 0.9);
  font-size: 12.5px;
}
.site-topbar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  width: 100%;
}
.site-topbar__label {
  font-weight: 600;
  letter-spacing: 0.02em;
  color: rgba(255, 255, 255, 0.6);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
@media (max-width: 768px) {
  .site-topbar__label {
    display: none;
  }
}
.site-topbar__nav {
  margin-left: auto;
  min-width: 0;
}
.site-topbar__list {
  display: flex;
  align-items: center;
  gap: 1rem;
  list-style: none;
  margin: 0;
  padding: 0;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}
.site-topbar__list::-webkit-scrollbar {
  display: none;
}
.site-topbar__list li {
  white-space: nowrap;
}
.site-topbar__list a {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: inherit;
  text-decoration: none;
  font-weight: 600;
  padding: 4px 0;
  border-bottom: 2px solid transparent;
  transition: all 0.2s ease;
}
.site-topbar__list a:hover,
.site-topbar__list a:focus-visible {
  color: #f2b705;
  border-bottom-color: #f2b705;
}
.site-topbar__list li.is-current > a,
.site-topbar__list li.current-menu-item > a {
  color: #f2b705;
  border-bottom-color: #f2b705;
}
@media (max-width: 576px) {
  .site-topbar {
    font-size: 12px;
  }
  .site-topbar__list {
    gap: 0.5rem;
  }
}

/* ============================================
   COMPONENT: Why Banja Luka (statistika)
   Tamna traka sa ključnim brojevima
   ============================================ */
.section-label--light {
  color: rgba(255, 255, 255, 0.85);
}
.section-label--light::before {
  background: #f2b705;
}

.why-bl {
  background: #0b3a5d;
  color: #ffffff;
  padding: 4rem 0;
}
@media (min-width: 1024px) {
  .why-bl {
    padding: 5rem 0;
  }
}
.why-bl__intro {
  max-width: 640px;
  margin-bottom: 4rem;
}
.why-bl__title {
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.01em;
  margin: 0;
}
.why-bl__grid {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem 1rem;
}
@media (min-width: 768px) {
  .why-bl__grid {
    grid-template-columns: repeat(4, 1fr);
  }
}
.why-bl__stat {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  padding-left: 2rem;
  border-left: 1px solid rgba(255, 255, 255, 0.16);
}
@media (max-width: 767px) {
  .why-bl__stat:nth-child(odd) {
    padding-left: 0;
    border-left: none;
  }
}
@media (min-width: 768px) {
  .why-bl__stat:first-child {
    padding-left: 0;
    border-left: none;
  }
}
.why-bl__num {
  font-size: clamp(2.25rem, 5vw, 3.25rem);
  font-weight: 800;
  line-height: 1;
  color: #f2b705;
  letter-spacing: -0.02em;
}
.why-bl__label {
  font-size: 0.875rem;
  font-weight: 500;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.82);
}

.events-header {
  text-align: left;
  margin-bottom: 3rem;
}

.event-image-placeholder {
  height: 200px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.2rem;
}
.event-image-placeholder::before {
  content: "📅";
  font-size: 3rem;
}

.event-content {
  padding: 1.5rem;
}

.event-title {
  margin-bottom: 1rem;
}
.event-title a {
  color: #333;
  text-decoration: none;
  font-weight: 600;
  font-size: 1.25rem;
  line-height: 1.4;
}
.event-title a:hover {
  color: #0073aa;
}

.event-date,
.event-location {
  display: flex;
  align-items: center;
  margin-bottom: 0.75rem;
  color: #666;
  font-size: 0.95rem;
}
.event-date .event-date-icon,
.event-date .event-location-icon,
.event-location .event-date-icon,
.event-location .event-location-icon {
  margin-right: 0.5rem;
  font-size: 1.1rem;
}

.event-location .event-coordinates-indicator {
  margin-left: 0.5rem;
  font-size: 0.8rem;
  opacity: 0.7;
  transition: opacity 0.3s ease;
  filter: grayscale(1);
}
.event-location .event-coordinates-indicator:hover {
  opacity: 1;
  filter: none;
}

.event-date {
  font-weight: 500;
  color: #0073aa;
}
.event-date .date-range {
  font-weight: 600;
}
.event-date .date-range .date-separator {
  margin: 0 0.25rem;
  color: #999;
}

.event-excerpt {
  margin-bottom: 1.5rem;
  color: #666;
  line-height: 1.6;
}

.events-archive .page-header {
  text-align: center;
  margin-bottom: 3rem;
}
.events-archive .page-header .page-title {
  font-size: 2.5rem;
  color: #333;
  margin-bottom: 1rem;
}
.events-archive .page-header .archive-description {
  color: #666;
  font-size: 1.1rem;
}
.events-archive .no-events {
  text-align: center;
  padding: 4rem 2rem;
  color: #666;
}
.events-archive .no-events h3 {
  color: #333;
  margin-bottom: 1rem;
}

.entry__meta {
  margin-top: 2rem;
  padding: 1.5rem;
  background: #f8f9fa;
  border-radius: 8px;
  border-left: 4px solid #0073aa;
}
.entry__meta .event-location-details {
  margin: 1.5rem 0;
  padding: 1.5rem;
  background: #fff;
  border-radius: 8px;
  border: 1px solid #e2e8f0;
}
.entry__meta .event-location-details h3 {
  color: #1a365d;
  font-size: 1.2rem;
  margin: 0 0 1rem 0;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.entry__meta .event-location-details p {
  margin: 0.5rem 0;
  color: #4a5568;
}
.entry__meta .event-location-details p strong {
  color: #2d3748;
  margin-right: 0.5rem;
}
.entry__meta .event-single-map-container {
  margin: 2rem 0 0 0;
}
.entry__meta .event-single-map-container h3 {
  color: #1a365d;
  font-size: 1.2rem;
  margin: 0 0 1rem 0;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.entry__meta .event-single-map-container #event-single-map {
  height: 300px;
  width: 100%;
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid #e2e8f0;
  margin-bottom: 0.5rem;
}
@media (max-width: 768px) {
  .entry__meta .event-single-map-container #event-single-map {
    height: 250px;
  }
}
.entry__meta .event-single-map-container .map-note {
  font-size: 0.85rem;
  color: #718096;
  margin: 0;
  text-align: center;
}

.event-coordinates-indicator {
  font-size: 0.9rem;
  margin-left: 0.5rem;
  opacity: 0.7;
  transition: opacity 0.3s ease;
}
.event-coordinates-indicator:hover {
  opacity: 1;
}

.event-marker-single .event-marker-icon {
  width: 40px;
  height: 40px;
  font-size: 20px;
  border-width: 3px;
}

.event-single-popup .leaflet-popup-content-wrapper {
  border-radius: 8px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}
.event-single-popup .event-single-popup-content h3 {
  font-size: 1rem;
  font-weight: 600;
  color: #1a365d;
  margin: 0 0 0.75rem 0;
  line-height: 1.3;
}
.event-single-popup .event-single-popup-content p {
  margin: 0.5rem 0;
  font-size: 0.85rem;
  color: #4a5568;
}
.event-single-popup .event-single-popup-content p strong {
  color: #2d3748;
}

.event-coordinates-indicator {
  margin-left: 0.5rem;
  opacity: 0.7;
  font-size: 0.9rem;
}
.event-coordinates-indicator:hover {
  opacity: 1;
}

.event-location-details {
  margin: 1.5rem 0;
  padding: 1rem;
  background: #f8f9fa;
  border-radius: 8px;
  border-left: 4px solid #3182ce;
}
.event-location-details h3 {
  color: #1a365d;
  margin: 0 0 1rem 0;
  font-size: 1.1rem;
}
.event-location-details p {
  margin: 0.5rem 0;
  color: #4a5568;
}
.event-location-details p strong {
  color: #1a365d;
}

.event-single-map-container {
  margin-top: 2rem;
}
.event-single-map-container h3 {
  color: #1a365d;
  margin: 0 0 1rem 0;
  font-size: 1.1rem;
}
.event-single-map-container #event-single-map {
  height: 300px;
  width: 100%;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  margin-bottom: 0.5rem;
}
.event-single-map-container .map-note {
  color: #718096;
  font-size: 0.85rem;
  margin: 0;
  text-align: center;
}

.section-label {
  font-family: "Caveat", "Segoe Script", cursive;
  font-size: 1.5rem;
  font-weight: 600;
  letter-spacing: 0;
  text-transform: none;
  color: #8f6400;
  margin-bottom: 10px;
}
.section-label--light {
  color: #f2b705;
}

.section-head {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 0.25rem;
}
.section-head__title {
  font-family:
    "Anton",
    "Arial Narrow",
    "Montserrat",
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    Roboto,
    Oxygen-Sans,
    Ubuntu,
    Cantarell,
    "Helvetica Neue",
    sans-serif;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  line-height: 1.02;
  font-size: clamp(2.1rem, 4.6vw, 3.2rem);
  color: #1a1a1a;
  margin: 0;
}
.section-head--rules .section-head__title {
  display: flex;
  align-items: center;
  gap: clamp(14px, 3vw, 28px);
}
.section-head--rules .section-head__title::before,
.section-head--rules .section-head__title::after {
  content: "";
  height: 2px;
  width: clamp(36px, 8vw, 110px);
  background: currentColor;
  opacity: 0.18;
}
.section-head__script {
  font-family: "Caveat", "Segoe Script", cursive;
  font-weight: 600;
  font-size: clamp(1.4rem, 2.6vw, 2rem);
  line-height: 1.1;
  color: #8f6400;
  transform: rotate(-1.5deg);
}
.section-head__subtitle {
  font-size: 1rem;
  color: #718096;
  line-height: 1.6;
  max-width: 60ch;
  margin: 0.5rem 0 0;
}

.plan-section__title,
.stay__title,
.gastro__title,
.collections__title,
.practical-info__title,
.highlights__title,
.newsletter-box__title {
  font-family:
    "Anton",
    "Arial Narrow",
    "Montserrat",
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    Roboto,
    Oxygen-Sans,
    Ubuntu,
    Cantarell,
    "Helvetica Neue",
    sans-serif;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.015em;
  line-height: 1.05;
}

.plan-section {
  background: #f5f7fa;
  padding: clamp(4rem, 7vw, 3rem) 0;
}
.plan-section__header {
  margin-bottom: 2.5rem;
  max-width: 680px;
}
.plan-section__title {
  font-size: clamp(2rem, 4vw, 3.25rem);
  color: #1a1a1a;
  margin: 0 0 1rem;
}
.plan-section__desc {
  color: rgba(26, 26, 26, 0.65);
  max-width: 520px;
  font-size: 0.9rem;
  line-height: 1.75;
  margin: 0;
  font-weight: 500;
}

.date-picker-bar {
  display: flex;
  align-items: stretch;
  background: #ffffff;
  border: 1px solid rgba(14, 14, 14, 0.1);
  border-radius: 6px;
  overflow: hidden;
  box-shadow: 0 4px 24px rgba(14, 14, 14, 0.08);
  margin-bottom: 2.5rem;
}
.date-picker-bar .date-field {
  flex: 1;
  padding: 16px 22px;
  border-right: 1px solid rgba(14, 14, 14, 0.08);
}
.date-picker-bar .date-field label {
  display: block;
  font-size: 9px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(26, 26, 26, 0.65);
  margin-bottom: 5px;
  font-weight: 700;
}
.date-picker-bar .date-field input[type="date"] {
  border: none;
  outline: none;
  font-family:
    "Montserrat",
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    Roboto,
    Oxygen-Sans,
    Ubuntu,
    Cantarell,
    "Helvetica Neue",
    sans-serif;
  font-size: 14px;
  color: #1a1a1a;
  background: transparent;
  width: 100%;
  cursor: pointer;
  font-weight: 600;
  padding: 0;
  border-radius: 0;
}
.date-picker-bar .date-search-btn {
  padding: 0 26px;
  background: #0b3a5d;
  border: none;
  cursor: pointer;
  color: #ffffff;
  font-family:
    "Montserrat",
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    Roboto,
    Oxygen-Sans,
    Ubuntu,
    Cantarell,
    "Helvetica Neue",
    sans-serif;
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 700;
  white-space: nowrap;
  transition: background 0.2s;
  border-radius: 0;
  height: auto;
}
.date-picker-bar .date-search-btn:hover {
  background: #092e47;
}
.date-picker-bar .date-reset-btn {
  padding: 0 14px;
  background: transparent;
  border: none;
  border-left: 1px solid rgba(14, 14, 14, 0.08);
  cursor: pointer;
  color: rgba(26, 26, 26, 0.65);
  font-size: 20px;
  line-height: 1;
  transition: color 0.2s;
  border-radius: 0;
  height: auto;
}
.date-picker-bar .date-reset-btn:hover {
  color: #0b3a5d;
}
@media (max-width: 580px) {
  .date-picker-bar {
    flex-direction: column;
    max-width: 100%;
  }
  .date-picker-bar .date-field {
    border-right: none;
    border-bottom: 1px solid rgba(14, 14, 14, 0.08);
  }
  .date-picker-bar .date-search-btn {
    padding: 14px;
    text-align: center;
  }
  .date-picker-bar .date-reset-btn {
    border-left: none;
    border-top: 1px solid rgba(14, 14, 14, 0.08);
    padding: 12px;
  }
}

.map-panel {
  display: flex;
  height: 480px;
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid rgba(14, 14, 14, 0.1);
  box-shadow: 0 8px 40px rgba(14, 14, 14, 0.1);
  margin-bottom: 2rem;
}
.map-panel__map {
  flex: 1;
  position: relative;
  min-width: 0;
}
.map-panel__map #events-map {
  width: 100%;
  height: 100%;
  border-radius: 0;
}
.map-panel__sidebar {
  width: 270px;
  flex-shrink: 0;
  background: rgba(255, 255, 255, 0.97);
  border-left: 1px solid rgba(14, 14, 14, 0.08);
  display: flex;
  flex-direction: column;
  overflow: hidden;
}
.map-panel__sidebar-head {
  padding: 16px 18px 12px;
  border-bottom: 1px solid rgba(14, 14, 14, 0.07);
  flex-shrink: 0;
}
.map-panel__sidebar-head h4 {
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(26, 26, 26, 0.65);
  font-weight: 700;
  margin: 0;
}
.map-panel__event-list {
  flex: 1;
  overflow-y: auto;
}
.map-panel__event-list::-webkit-scrollbar {
  width: 4px;
}
.map-panel__event-list::-webkit-scrollbar-thumb {
  background: rgba(11, 58, 93, 0.2);
  border-radius: 2px;
}
@media (max-width: 860px) {
  .map-panel {
    flex-direction: column;
    height: auto;
  }
  .map-panel__map {
    height: 300px;
  }
  .map-panel__map #events-map {
    height: 300px;
  }
  .map-panel__sidebar {
    width: 100%;
    height: 260px;
    border-left: none;
    border-top: 1px solid rgba(14, 14, 14, 0.08);
  }
}

.sidebar-event-item {
  display: flex;
  gap: 11px;
  align-items: flex-start;
  padding: 11px 18px;
  border-bottom: 1px solid rgba(14, 14, 14, 0.05);
  text-decoration: none;
  color: inherit;
  transition: background 0.15s;
}
.sidebar-event-item:hover {
  background: rgba(11, 58, 93, 0.04);
}
.sidebar-event-item__dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #f2b705;
  margin-top: 5px;
  flex-shrink: 0;
}
.sidebar-event-item__info {
  flex: 1;
  min-width: 0;
}
.sidebar-event-item__date {
  font-size: 9px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #f2b705;
  font-weight: 700;
  margin-bottom: 2px;
}
.sidebar-event-item__title {
  font-size: 12px;
  font-weight: 700;
  margin: 0 0 2px;
  color: #1a1a1a;
  line-height: 1.35;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.sidebar-event-item__location {
  font-size: 11px;
  color: rgba(26, 26, 26, 0.65);
  font-weight: 500;
  margin: 0;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.sidebar-no-events {
  padding: 20px 18px;
  text-align: center;
  color: rgba(26, 26, 26, 0.65);
  font-size: 12px;
  font-weight: 500;
}

.hero-section {
  position: relative;
  height: 100vh;
  min-height: 600px;
  overflow: hidden;
  padding-top: 0;
}

.hero-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}
.hero-background .hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.hero-background .hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    135deg,
    rgba(0, 0, 0, 0.6) 0%,
    rgba(0, 0, 0, 0.3) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  align-items: center;
  padding: 120px 1rem 2rem 1rem;
  justify-content: center;
}

.hero-text {
  max-width: 1200px;
  width: 100%;
  padding: 0 2rem;
  color: #fff !important;
}
.hero-text .hero-subtitle {
  font-size: 1.3rem;
  font-weight: 700;
  margin: 0 0 0.75rem 0;
  opacity: 0.95;
  letter-spacing: -0.02em;
  line-height: 1.2;
  color: #fff !important;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.8);
}
.hero-text .hero-title {
  font-size: clamp(1.8rem, 4.5vw, 3rem);
  font-weight: 700;
  margin: 0 0 1.5rem 0;
  letter-spacing: -0.03em;
  color: #fff !important;
  text-shadow: 0 3px 6px rgba(0, 0, 0, 0.8);
}
.hero-text .hero-title p {
  line-height: 1.2;
}
.hero-text .hero-description {
  font-size: 1rem;
  letter-spacing: -0.03em;
  opacity: 0.95;
  max-width: 700px;
  color: #fff !important;
}
.hero-text .hero-description p {
  margin: 0 0 1rem 0;
  color: #fff !important;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.8);
  line-height: 1.3;
}
.hero-text .hero-description p:last-child {
  margin-bottom: 0;
}

@media (max-width: 768px) {
  .hero-section {
    height: 80vh;
    min-height: 500px;
  }
  .hero-content {
    padding: 0 1rem;
  }
  .hero-text .hero-subtitle {
    font-size: 1rem;
  }
  .hero-text .hero-description {
    font-size: 0.9rem;
  }
}
.home-intro {
  margin: 2rem 0;
}

.weather-forecast-simple {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 1rem;
  margin-bottom: 3rem;
}
@media (max-width: 768px) {
  .weather-forecast-simple {
    gap: 0.5rem;
  }
}
@media (max-width: 480px) {
  .weather-forecast-simple {
    gap: 0.25rem;
    grid-template-columns: repeat(7, minmax(50px, 1fr));
  }
}
.weather-forecast-simple .weather-day {
  padding: 1.25rem 0.75rem;
  text-align: center;
  transition: all 0.3s ease;
}
.weather-forecast-simple .weather-day:hover {
  transform: translateY(-2px);
}
@media (max-width: 768px) {
  .weather-forecast-simple .weather-day {
    padding: 1rem 0.5rem;
  }
}
@media (max-width: 480px) {
  .weather-forecast-simple .weather-day {
    padding: 0.75rem 0.25rem;
  }
}
.weather-forecast-simple .weather-date {
  font-size: 0.85rem;
  font-weight: 600;
  color: #4a5568;
  margin-bottom: 0.75rem;
}
@media (max-width: 768px) {
  .weather-forecast-simple .weather-date {
    font-size: 0.75rem;
    margin-bottom: 0.5rem;
  }
}
@media (max-width: 480px) {
  .weather-forecast-simple .weather-date {
    font-size: 0.7rem;
  }
}
.weather-forecast-simple .weather-icon {
  font-size: 2.5rem;
  margin-bottom: 0.75rem;
  height: 2.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (max-width: 768px) {
  .weather-forecast-simple .weather-icon {
    font-size: 2rem;
    height: 2rem;
    margin-bottom: 0.5rem;
  }
}
@media (max-width: 480px) {
  .weather-forecast-simple .weather-icon {
    font-size: 1.5rem;
    height: 1.5rem;
  }
}
.weather-forecast-simple .weather-temp {
  font-size: 1.1rem;
  font-weight: 700;
  color: #2d3748;
}
@media (max-width: 768px) {
  .weather-forecast-simple .weather-temp {
    font-size: 1rem;
  }
}
@media (max-width: 480px) {
  .weather-forecast-simple .weather-temp {
    font-size: 0.9rem;
  }
}
.weather-forecast-simple .weather-loading {
  grid-column: 1/-1;
  text-align: center;
  color: #718096;
  font-style: italic;
  padding: 2rem;
}

.events-map-container {
  margin-bottom: 4rem;
}
.events-map-container .map-title {
  font-size: clamp(1.5rem, 3vw, 2.5rem);
  font-weight: 700;
  color: #1a365d;
  margin: 0 0 1.5rem 0;
  text-align: center;
}
.events-map-container #events-map {
  height: 400px;
  width: 100%;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  margin-bottom: 1rem;
}
@media (max-width: 768px) {
  .events-map-container #events-map {
    height: 300px;
  }
}
.events-map-container .map-description {
  text-align: center;
  color: #718096;
  margin: 0 0 2rem 0;
  font-size: 0.9rem;
}

.event-marker {
  background: none !important;
  border: none !important;
}
.event-marker .event-marker-dot {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: white;
  border: 2.5px solid #ccc;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  line-height: 1;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.22);
  cursor: pointer;
  transition:
    transform 0.15s ease,
    box-shadow 0.15s ease;
}
.event-marker .event-marker-dot:hover {
  transform: scale(1.15);
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.3);
}

.map-legend {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 8px 28px;
  padding: 12px 0 0;
  margin-bottom: 3rem;
}
.map-legend__item {
  display: flex;
  align-items: center;
  gap: 8px;
}
.map-legend__icon {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: white;
  border: 2.5px solid #ccc;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  line-height: 1;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.15);
  flex-shrink: 0;
}
.map-legend__label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(26, 26, 26, 0.65);
}
.map-legend__item--culture .map-legend__icon {
  border-color: #7c3aed;
}
.map-legend__item--sports .map-legend__icon {
  border-color: #16a34a;
}
.map-legend__item--music .map-legend__icon {
  border-color: #d97706;
}
.map-legend__item--other .map-legend__icon {
  border-color: #0369a1;
}

.event-popup .leaflet-popup-content-wrapper {
  border-radius: 8px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}
.event-popup .event-popup-content {
  padding: 0;
  margin: 0;
}
.event-popup .event-popup-content .event-popup-image {
  margin-bottom: 1rem;
}
.event-popup .event-popup-content .event-popup-image img {
  width: 100%;
  height: 120px;
  object-fit: cover;
  border-radius: 6px 6px 0 0;
}
.event-popup .event-popup-content .event-popup-title {
  font-size: 1.1rem;
  font-weight: 600;
  color: #1a365d;
  margin: 0 0 0.75rem 0;
  line-height: 1.3;
}
.event-popup .event-popup-content .event-popup-date,
.event-popup .event-popup-content .event-popup-location {
  font-size: 0.85rem;
  color: #718096;
  margin: 0.5rem 0;
  line-height: 1.4;
}
.event-popup .event-popup-content .event-popup-location strong {
  color: #4a5568;
}
.event-popup .event-popup-content .event-popup-excerpt {
  font-size: 0.85rem;
  color: #4a5568;
  margin: 0.75rem 0;
  line-height: 1.4;
}
.event-popup .event-popup-content .event-popup-link {
  margin-top: 1rem;
  text-align: center;
}

.events-header {
  text-align: left;
  margin-bottom: 3rem;
}
.events-header .events-subtitle {
  font-size: clamp(1.5rem, 4vw, 2.5rem);
  color: #4a5568;
  margin: 0.5rem 0 0 0;
  font-weight: 400;
}

.events-filters {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  margin-bottom: 3rem;
  flex-wrap: wrap;
}

.filter-btn {
  padding: 0.75rem 1.5rem;
  border: none;
  background: #fff;
  color: #4a5568;
  border-radius: 25px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}
.filter-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
}
.filter-btn--active {
  background: #3182ce;
  color: #fff;
}
.filter-btn--dropdown {
  background: #3182ce;
  color: #fff;
  position: relative;
}
.filter-btn--dropdown::after {
  content: "▼";
  margin-left: 0.5rem;
  font-size: 0.8rem;
}

.events-menu-toggle {
  background: none;
  border: none;
  display: flex;
  flex-direction: column;
  gap: 3px;
  cursor: pointer;
  padding: 0.5rem;
}
.events-menu-toggle span {
  width: 20px;
  height: 2px;
  background: #4a5568;
  transition: all 0.3s ease;
}

.event-content {
  padding: 1.5rem;
}
.event-content .event-title {
  font-size: 1.25rem;
  font-weight: 600;
  color: #1a365d;
  margin: 0 0 0.5rem 0;
  line-height: 1.3;
}
.event-content .event-title a {
  color: inherit;
  text-decoration: none;
  transition: color 0.3s ease;
}
.event-content .event-title a:hover {
  color: #3182ce;
}
.event-content .event-test-field {
  color: #3182ce;
  font-size: 0.9rem;
  font-weight: 500;
  margin: 0.5rem 0;
  padding: 0.25rem 0.5rem;
  background: rgba(49, 130, 206, 0.1);
  border-radius: 4px;
  display: inline-block;
}
.event-content .event-date {
  color: #718096;
  font-size: 0.95rem;
  margin: 0.5rem 0;
}
.event-content .event-excerpt {
  color: #4a5568;
  font-size: 0.9rem;
  line-height: 1.4;
  margin-top: 0.75rem;
}
.event-content .event-excerpt p {
  margin: 0;
}
.event-content .event-date {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: #718096;
  font-size: 0.9rem;
  margin: 0.75rem 0 0.5rem 0;
}
.event-content .event-date .event-date-icon {
  font-size: 1rem;
}
.event-content .event-location {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: #718096;
  font-size: 0.9rem;
  margin-bottom: 0.75rem;
}
.event-content .event-location .event-location-icon {
  font-size: 1rem;
}

.no-events {
  grid-column: 1/-1;
  text-align: center;
  padding: 3rem;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}
.no-events p {
  margin: 0.5rem 0;
  color: #718096;
}
.no-events p:first-child {
  font-size: 1.2rem;
  color: #4a5568;
}
.no-events a {
  color: #3182ce;
  text-decoration: none;
  font-weight: 500;
}
.no-events a:hover {
  text-decoration: underline;
}

@media (max-width: 768px) {
  .events-filters {
    flex-direction: column;
    align-items: stretch;
  }
  .events-filters .filter-btn {
    width: 100%;
    margin-bottom: 0.5rem;
  }
  .events-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
}
.attractions-section {
  padding: 4rem 0;
  background: #f8f9fa;
  width: 100%;
}
.attractions-section .attractions-container {
  width: 100%;
  max-width: 100%;
  padding: 0 2rem;
}
.attractions-section .attractions-header {
  text-align: center;
  margin-bottom: 3rem;
}
.attractions-section .attractions-header .attractions-title {
  font-size: clamp(2.5rem, 6vw, 4rem);
  font-weight: 700;
  color: #2d3748;
  margin: 0;
  line-height: 1.1;
}
.attractions-section .attractions-tiles-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  grid-auto-rows: 280px;
  gap: 1rem;
  max-width: 1400px;
  margin: 0 auto;
}
@media (max-width: 1024px) {
  .attractions-section .attractions-tiles-grid {
    grid-template-columns: 1fr 1fr;
    grid-auto-rows: 220px;
  }
}
@media (max-width: 640px) {
  .attractions-section .attractions-tiles-grid {
    grid-template-columns: 1fr;
    grid-auto-rows: 200px;
    gap: 0.75rem;
  }
}
.attractions-section .attractions-empty {
  grid-column: 1/-1;
  text-align: center;
  padding: 2rem;
  border-radius: 12px;
  background: #fff;
  border: 1px dashed #cbd5e0;
}
.attractions-section .attractions-empty p {
  margin: 0.35rem 0;
  color: #4a5568;
}

.attraction-tile {
  display: block;
  border-radius: 12px;
  background-size: cover;
  background-position: center;
  position: relative;
  cursor: pointer;
  overflow: hidden;
  color: #fff;
  text-decoration: none;
  transition: all 0.3s ease;
}
.attraction-tile:hover {
  transform: scale(1.02);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
}
.attraction-tile::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    135deg,
    rgba(0, 0, 0, 0.3) 0%,
    rgba(0, 0, 0, 0.1) 100%
  );
  z-index: 1;
}
.attraction-tile .tile-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 1.5rem;
  color: #fff;
  z-index: 2;
}
.attraction-tile .tile-content .tile-tag {
  font-size: 9px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.75);
  font-weight: 600;
  margin: 0 0 0.4rem;
}
.attraction-tile .tile-content .tile-title {
  font-size: 1.4rem;
  font-weight: 700;
  margin: 0 0 0.5rem 0;
  line-height: 1.2;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}
.attraction-tile .tile-content .tile-description {
  font-size: 0.95rem;
  margin: 0;
  opacity: 0.9;
  line-height: 1.3;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.featured-tile {
  grid-row: span 2;
}
.featured-tile .tile-content .tile-title {
  font-size: 1.8rem;
}
.featured-tile .tile-content .tile-description {
  font-size: 1rem;
  max-height: none;
  opacity: 1;
}
@media (max-width: 1024px) {
  .featured-tile {
    grid-row: span 1;
    grid-column: span 2;
  }
}
@media (max-width: 640px) {
  .featured-tile {
    grid-column: span 1;
    grid-row: span 1;
  }
}

.small-tile {
  grid-column: span 1;
}
@media (max-width: 640px) {
  .small-tile .tile-content {
    padding: 1rem;
  }
  .small-tile .tile-content .tile-title {
    font-size: 1.2rem;
  }
  .small-tile .tile-content .tile-description {
    font-size: 0.9rem;
  }
}

/* ============================================
   SINGLE STRANICE (događaj, novost, atrakcija)
   Zajednički hero, meta traka, sadržaj članka,
   mapa i "povezano" grid.
   ============================================ */
.entry-page {
  padding: 4rem 0;
  background: #ffffff;
}
@media (min-width: 1024px) {
  .entry-page {
    padding: 5rem 0 4rem;
  }
}
.entry-page__inner {
  max-width: 780px;
  margin: 0 auto;
}

.entry-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin: 0 0 2rem;
  padding: 0;
  list-style: none;
}
.entry-meta li {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #f5f7fa;
  border: 1px solid rgba(11, 58, 93, 0.1);
  border-radius: 999px;
  padding: 8px 16px;
  font-size: 0.875rem;
  font-weight: 600;
  color: #0b3a5d;
}
.entry-meta li.is-primary {
  background: #f2b705;
  border-color: #f2b705;
  color: #092e47;
}
.entry-meta i {
  opacity: 0.7;
}

.entry-content {
  color: #1a1a1a;
  line-height: 1.75;
  font-size: 1.02rem;
}
.entry-content > * + * {
  margin-top: 1rem;
}
.entry-content h2,
.entry-content h3,
.entry-content h4 {
  font-family:
    "Anton",
    "Arial Narrow",
    "Montserrat",
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    Roboto,
    Oxygen-Sans,
    Ubuntu,
    Cantarell,
    "Helvetica Neue",
    sans-serif;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.015em;
  line-height: 1.15;
  color: #0b3a5d;
  margin-top: 2rem;
  margin-bottom: 0.5rem;
}
.entry-content h2 {
  font-size: clamp(1.4rem, 2.6vw, 1.9rem);
}
.entry-content h3 {
  font-size: clamp(1.2rem, 2.2vw, 1.5rem);
}
.entry-content h4 {
  font-size: 1.1rem;
}
.entry-content p {
  margin: 0;
}
.entry-content a {
  color: #8f6400;
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 2px;
}
.entry-content a:hover {
  color: #0b3a5d;
}
.entry-content ul,
.entry-content ol {
  padding-left: 1.25rem;
}
.entry-content ul li + li,
.entry-content ol li + li {
  margin-top: 6px;
}
.entry-content img,
.entry-content figure img {
  max-width: 100%;
  height: auto;
  border-radius: 16px;
}
.entry-content figcaption {
  font-size: 0.875rem;
  color: #718096;
  margin-top: 0.5rem;
}
.entry-content blockquote {
  margin: 2rem 0;
  padding: 1rem 2rem;
  border-left: 3px solid #f2b705;
  background: #f5f7fa;
  border-radius: 0 8px 8px 0;
  font-size: 1.05rem;
}
.entry-content blockquote p {
  margin: 0;
}
.entry-content hr {
  border: none;
  border-top: 1px solid rgba(11, 58, 93, 0.12);
  margin: 2rem 0;
}
.entry-content table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.875rem;
}
.entry-content table th,
.entry-content table td {
  text-align: left;
  padding: 10px 12px;
  border-bottom: 1px solid rgba(11, 58, 93, 0.1);
}
.entry-content table th {
  font-weight: 700;
  color: #0b3a5d;
}

.entry-map {
  margin-top: 4rem;
}
.entry-map__title {
  font-family:
    "Anton",
    "Arial Narrow",
    "Montserrat",
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    Roboto,
    Oxygen-Sans,
    Ubuntu,
    Cantarell,
    "Helvetica Neue",
    sans-serif;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.015em;
  font-size: 1.2rem;
  color: #0b3a5d;
  margin: 0 0 0.5rem;
}
.entry-map__canvas {
  height: 320px;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(11, 58, 93, 0.12);
}
.entry-map__note {
  font-size: 0.875rem;
  color: #718096;
  margin: 0.5rem 0 0;
}

.entry-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 4rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(11, 58, 93, 0.1);
}

.entry-nav {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.5rem;
  margin-top: 2rem;
}
@media (min-width: 768px) {
  .entry-nav {
    grid-template-columns: 1fr 1fr;
  }
}
.entry-nav a {
  display: block;
  padding: 1rem;
  border: 1px solid rgba(11, 58, 93, 0.12);
  border-radius: 16px;
  text-decoration: none;
  color: #0b3a5d;
  font-weight: 700;
  font-size: 0.875rem;
  line-height: 1.4;
  transition: all 0.2s ease;
}
.entry-nav a:hover {
  border-color: #f2b705;
  background: #f5f7fa;
}
.entry-nav__label {
  display: block;
  font-family: "Caveat", "Segoe Script", cursive;
  font-weight: 600;
  font-size: 1.1rem;
  color: #8f6400;
  margin-bottom: 2px;
}
@media (min-width: 768px) {
  .entry-nav__next {
    text-align: right;
  }
}

.entry-related {
  padding: 4rem 0;
  background: #f5f7fa;
}
@media (min-width: 1024px) {
  .entry-related {
    padding: 5rem 0;
  }
}
.entry-related__header {
  margin-bottom: 4rem;
}
.entry-related__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}
@media (min-width: 576px) {
  .entry-related__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 1024px) {
  .entry-related__grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
  }
}

.entry-lead {
  font-size: 1.15rem;
  line-height: 1.6;
  color: #0b3a5d;
  font-weight: 600;
  margin: 0 0 2rem;
}

.stay-single {
  padding: 4rem 0;
  background: #ffffff;
}
@media (min-width: 1024px) {
  .stay-single {
    padding: 5rem 0 4rem;
  }
}
.stay-single__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  align-items: start;
}
@media (min-width: 1024px) {
  .stay-single__grid {
    grid-template-columns: 1.6fr 1fr;
    gap: 4rem;
  }
}
.stay-single__panel {
  background: #f5f7fa;
  border: 1px solid rgba(11, 58, 93, 0.1);
  border-radius: 16px;
  padding: 2rem;
}
@media (min-width: 1024px) {
  .stay-single__panel {
    position: sticky;
    top: calc(var(--chrome-h) + 1rem);
  }
}
.stay-single__panel-title {
  font-family:
    "Anton",
    "Arial Narrow",
    "Montserrat",
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    Roboto,
    Oxygen-Sans,
    Ubuntu,
    Cantarell,
    "Helvetica Neue",
    sans-serif;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.015em;
  font-size: 1.15rem;
  color: #0b3a5d;
  margin: 0 0 1rem;
}
.stay-single__details {
  margin: 0;
}
.stay-single__details > div {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 10px 0;
  border-bottom: 1px solid rgba(11, 58, 93, 0.08);
}
.stay-single__details > div:last-child {
  border-bottom: none;
}
.stay-single__details dt {
  font-size: 0.875rem;
  color: #718096;
  margin: 0;
}
.stay-single__details dd {
  font-size: 0.875rem;
  font-weight: 700;
  color: #0b3a5d;
  margin: 0;
  text-align: right;
}
.stay-single__details dd a {
  color: #8f6400;
  text-decoration: none;
}
.stay-single__details dd a:hover {
  color: #0b3a5d;
  text-decoration: underline;
}
.stay-single__cta {
  width: 100%;
  margin-top: 1rem;
}

.search-form {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 1rem;
}
.search-form input[type="search"] {
  flex: 1 1 240px;
  padding: 12px 16px;
  border: 1px solid rgba(11, 58, 93, 0.18);
  border-radius: 8px;
  font-family:
    "Montserrat",
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    Roboto,
    Oxygen-Sans,
    Ubuntu,
    Cantarell,
    "Helvetica Neue",
    sans-serif;
  font-size: 1rem;
  color: #1a1a1a;
  background: #ffffff;
}
.search-form input[type="search"]:focus {
  outline: none;
  border-color: #f2b705;
  box-shadow: 0 0 0 3px rgba(242, 183, 5, 0.25);
}

.search-results-count {
  margin: 1rem 0 0;
  font-size: 0.875rem;
  color: #718096;
}

.mt-2 {
  margin-top: 0.5rem;
}

.mt-4 {
  margin-top: 1rem;
}

.p-2 {
  padding: 0.5rem;
}

.p-4 {
  padding: 1rem;
}

.hidden {
  display: none !important;
}
