@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;
  --container: 1200px;
  --gutter: 24px;
  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;
  }
}
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;
  height: 120px;
  color: rgba(11, 27, 43, 0.14);
  mask-image: linear-gradient(to bottom, #000 70%, transparent);
  opacity: 0;
  transform: translateY(6px);
  transition:
    opacity 600ms ease,
    transform 600ms ease;
}
@media (max-width: 768px) {
  .footer__skyline {
    height: 82px;
  }
}

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

.footer-skyline {
  width: 100%;
  height: 100%;
  display: block;
}

.footer-skyline--mobile {
  display: none;
}

@media (max-width: 768px) {
  .footer-skyline--desktop {
    display: none;
  }
  .footer-skyline--mobile {
    display: block;
  }
}
.footer-skyline__path {
  stroke-dasharray: 1100;
  stroke-dashoffset: 1100;
}

.footer__skyline.is-visible .footer-skyline__path {
  animation: footerSkylineDraw 1300ms ease forwards;
}

@keyframes footerSkylineDraw {
  to {
    stroke-dashoffset: 0;
  }
}
@media (prefers-reduced-motion: reduce) {
  .footer__skyline {
    transition: none;
    transform: none;
    opacity: 1;
  }
  .footer-skyline__path {
    stroke-dasharray: none;
    stroke-dashoffset: 0;
    animation: 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 button */
.weather-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  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 .temperature {
  font-weight: 700;
  font-size: 14px;
}

/* 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-switcher {
  display: flex;
  align-items: center;
}
.language-switcher .trp-language-switcher {
  margin: 0 !important;
  padding: 0 !important;
  line-height: 0 !important;
  position: relative;
}
.language-switcher .trp-language-switcher > div {
  margin: 0 !important;
  padding: 0 !important;
}
.language-switcher .trp-shortcode-current-language,
.language-switcher .trp-shortcode-current-language a {
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.22);
  color: currentColor;
  text-decoration: none;
}
.language-switcher img {
  width: 22px !important;
  height: 22px !important;
  display: block;
}
.language-switcher .trp-shortcode-language {
  position: absolute;
  top: calc(100% + 10px);
  right: 0;
  background: #fff;
  color: #0e0e0e;
  border-radius: 12px;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.18);
  overflow: hidden;
  min-width: 160px;
  padding: 8px;
  z-index: 2000;
}
.language-switcher .trp-shortcode-language a {
  display: flex !important;
  align-items: center;
  gap: 10px;
  padding: 10px 10px;
  border-radius: 10px;
  text-decoration: none;
  color: inherit;
  font-weight: 600;
}
.language-switcher .trp-shortcode-language:hover {
  background: rgba(0, 0, 0, 0.06);
}
.language-switcher .trp-shortcode-arrow {
  display: none !important;
  content: none !important;
}

.site-header.is-scrolled .language-switcher .trp-shortcode-current-language,
.site-header.is-scrolled .language-switcher .trp-shortcode-current-language a {
  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 18px;
  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--primary {
  background: #0b3a5d;
  color: #ffffff;
}
.btn--primary:hover {
  background: #092e47;
}
.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;
}

.hero {
  background: #0b3a5d;
  color: #ffffff;
  padding: 0;
}

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

.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  height: var(--header-h);
  z-index: 1000;
  display: flex;
  align-items: center;
  background: transparent;
  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-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;
}
.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(--header-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-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  line-height: 0.9;
  font-size: clamp(56px, 7vw, 140px);
  text-shadow: 0 18px 50px rgba(0, 0, 0, 0.35);
}
.hero__subtitle {
  margin-top: 18px;
  max-width: 58ch;
  font-size: clamp(16px, 1.6vw, 20px);
  line-height: 1.5;
  opacity: 0.95;
  color: #ffffff;
}
.hero__cta {
  margin-top: 28px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

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

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

.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);
}

.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: #f6efec;
  /* 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: #f6efec;
  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 .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;
}

.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;
}

.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-icon {
  width: 30px;
  height: 30px;
  background: #3182ce;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  color: white;
  border: 2px solid white;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.3);
  transition: all 0.3s ease;
  cursor: pointer;
}
.event-marker .event-marker-icon:hover {
  transform: scale(1.1);
  background: #2c5aa0;
}

.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: repeat(4, 1fr);
  grid-template-rows: repeat(2, 250px);
  gap: 1rem;
  max-width: 1400px;
  margin: 0 auto;
}
@media (max-width: 1024px) {
  .attractions-section .attractions-tiles-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(4, 200px);
  }
}
@media (max-width: 768px) {
  .attractions-section .attractions-tiles-grid {
    grid-template-columns: 1fr;
    grid-template-rows: repeat(6, 180px);
    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-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);
}

.large-tile {
  grid-column: span 2;
}
.large-tile .tile-content .tile-title {
  font-size: 1.6rem;
}
.large-tile .tile-content .tile-description {
  font-size: 1.1rem;
}
@media (max-width: 1024px) {
  .large-tile {
    grid-column: span 1;
  }
}

.small-tile {
  grid-column: span 1;
}
@media (max-width: 768px) {
  .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;
  }
}

.news-section {
  padding: 4rem 0;
  background: #f7fafc;
}
.news-section .news-header {
  text-align: center;
  margin-bottom: 3rem;
}
.news-section .news-header .news-title {
  font-size: clamp(2.5rem, 6vw, 4rem);
  font-weight: 700;
  color: #2d3748;
  margin: 0;
  line-height: 1.1;
}
.news-section .news-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}
@media (min-width: 768px) {
  .news-section .news-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 1024px) {
  .news-section .news-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.news-card {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}
.news-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.15);
}

.news-image-placeholder {
  width: 100%;
  height: 180px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  position: relative;
}
.news-image-placeholder::after {
  content: "📰";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 3rem;
  opacity: 0.6;
}

.news-content {
  padding: 1.5rem;
}
.news-content .news-title {
  font-size: 1.2rem;
  font-weight: 600;
  color: #2d3748;
  margin: 0 0 0.5rem 0;
  line-height: 1.3;
}
.news-content .news-date {
  color: #718096;
  font-size: 0.85rem;
  margin: 0 0 1rem 0;
  font-weight: 500;
}
.news-content .news-excerpt {
  color: #4a5568;
  font-size: 0.9rem;
  line-height: 1.5;
  margin-bottom: 1.5rem;
}
.news-content .news-excerpt p {
  margin: 0;
}
.news-content .news-link {
  display: inline-block;
  color: #3182ce;
  text-decoration: none;
  font-weight: 500;
  font-size: 0.9rem;
  padding: 0.4rem 0.8rem;
  border: 1px solid #3182ce;
  border-radius: 6px;
  transition: all 0.3s ease;
}
.news-content .news-link:hover {
  background: #3182ce;
  color: #fff;
}

.news-placeholder {
  grid-column: 1/-1;
  text-align: center;
  padding: 2rem;
  background: #e2e8f0;
  border-radius: 12px;
  border: 2px dashed #a0aec0;
  margin-top: 1rem;
}
.news-placeholder p {
  margin: 0.5rem 0;
  color: #718096;
}
.news-placeholder p:first-child {
  font-size: 1.1rem;
  color: #4a5568;
  font-weight: 500;
}

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

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

.p-2 {
  padding: 0.5rem;
}

.p-4 {
  padding: 1rem;
}

.hidden {
  display: none !important;
}
