@charset "UTF-8";
@keyframes shimmer {
  0% {
    background-position: -400px 0;
  }
  100% {
    background-position: 400px 0;
  }
}
@keyframes slideInDown {
  from {
    transform: translateY(-20px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes bounce {
  0%, 100% {
    transform: translateY(0);
  }
  45% {
    transform: translateY(-8px);
  }
}
@keyframes pulse {
  0%, 100% {
    opacity: 0.75;
  }
  55% {
    opacity: 1;
  }
}
:root {
  --bg: #dadde6;
  --text: #222;
  --text: #212529;
  --card-bg: #fff;
  --primary: #0d6efd;
  --danger: #dc3545;
  --circle-size: 30px;
  --circle-offset: calc(var(--circle-size) / -2);
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-size: 1rem;
}

body {
  font-family: "Montserrat", "Arial", sans-serif;
  background-color: var(--bg);
  color: var(--text);
}

.hamburger {
  display: none;
  position: relative;
  width: 40px;
  height: 40px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 8px;
  margin-bottom: 15px;
  z-index: 1002;
  transition: transform 0.3s ease;
}
.hamburger:hover {
  transform: scale(1.1);
}
.hamburger .hamburger__line {
  display: block;
  width: 100%;
  height: 3px;
  background-color: white;
  margin: 4px 0;
  transition: all 0.3s ease;
  border-radius: 2px;
  box-shadow: 0 1px 2px rgba(36, 30, 30, 0.63);
}
.header--scrolled .hamburger .hamburger__line {
  background-color: rgb(0, 30, 70);
  box-shadow: none;
}
.header--scrolled .hamburger.active .hamburger__line {
  background-color: rgb(0, 30, 70);
}
.hamburger.active .hamburger__line:nth-child(1) {
  transform: translateY(7.3px) rotate(45deg);
  background-color: rgb(0, 30, 70);
}
.hamburger.active .hamburger__line:nth-child(2) {
  opacity: 0;
}
.hamburger.active .hamburger__line:nth-child(3) {
  transform: translateY(-7.4px) rotate(-45deg);
  background-color: rgb(0, 30, 70);
}
.hamburger.active .hamburger__line {
  background-color: white;
}

.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background-color: white;
  z-index: 1000;
  transform: translateX(-100%);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  overflow-y: auto;
  display: flex;
  flex-direction: column;
}
.mobile-menu.active {
  transform: translateX(0);
}
.mobile-menu #closeMenuBtn {
  display: none !important;
}
.mobile-menu__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 1.5rem;
  border-bottom: 1px solid #e0e0e0;
  background: white;
  position: sticky;
  top: 0;
  z-index: 10;
}
.mobile-menu__logo svg {
  width: 150px;
  height: auto;
}
.mobile-menu__close {
  width: 40px;
  height: 40px;
  background: transparent;
  border: none;
  font-size: 1.5rem;
  color: rgb(0, 30, 70);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  border-radius: 50%;
}
.mobile-menu__close:hover {
  background: rgba(0, 30, 80, 0.1);
  transform: rotate(90deg);
}
.mobile-menu__nav {
  flex: 1;
  padding: 1rem 0;
}
.mobile-menu__list {
  list-style: none;
  margin: 0;
  padding: 0;
}
.mobile-menu__item {
  border-bottom: 1px solid #f0f0f0;
}
.mobile-menu__item--divider {
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 2px solid #e0e0e0;
}
.mobile-menu__link {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.2rem 1.5rem;
  color: rgb(0, 30, 70);
  text-decoration: none;
  font-size: 1.1rem;
  font-weight: 600;
  transition: all 0.3s ease;
  position: relative;
}
.mobile-menu__link::after {
  content: "\f054";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  position: absolute;
  right: 1.5rem;
  opacity: 0;
  transform: translateX(-10px);
  transition: all 0.3s ease;
}
.mobile-menu__link:hover {
  background: rgba(0, 160, 227, 0.05);
  color: #00a0e3;
  padding-left: 2rem;
}
.mobile-menu__link:hover::after {
  opacity: 1;
  transform: translateX(0);
}
.mobile-menu__link i {
  font-size: 1.2rem;
  color: #00a0e3;
  width: 24px;
  text-align: center;
}
.mobile-menu__link .icon-multitone--flow {
  display: inline-block;
  width: 24px;
  height: 24px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cg fill='none'%3E%3Cg clip-path='url(%23svgID0)'%3E%3Cpath fill='%2378B51A' d='M18.213 24H5.101C2.3 24 0 21.642 0 18.758V5.251C0 2.357 2.29 0 5.101 0h13.112c2.811 0 5.101 2.357 5.101 5.251v13.507c0 2.884-2.29 5.242-5.1 5.242'/%3E%3Cpath fill='%23fff' d='M18.5 8.838H5.55l.898-3.947h12.96zm-1.086 4.919H4.454l.917-3.948h12.95zm-7.176 4.927H3.233l.997-3.938h7.005z'/%3E%3C/g%3E%3Cdefs%3E%3CclipPath id='svgID0'%3E%3Cpath fill='%23fff' d='M0 0h23.314v24H0z'/%3E%3C/clipPath%3E%3C/defs%3E%3C/g%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-size: contain;
}
.mobile-menu__footer {
  padding: 2rem 1.5rem;
  border-top: 2px solid #e0e0e0;
  background: #f8f9fa;
}
.mobile-menu__lang label {
  display: block;
  font-size: 0.9rem;
  font-weight: 600;
  color: rgb(0, 30, 70);
  margin-bottom: 0.5rem;
}
.mobile-menu__lang .form-select {
  width: 100%;
  padding: 0.75rem;
  border: 2px solid #e0e0e0;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 600;
  color: rgb(0, 30, 70);
  background-color: white;
  cursor: pointer;
  transition: all 0.3s ease;
}
.mobile-menu__lang .form-select:focus {
  border-color: #00a0e3;
  outline: none;
  box-shadow: 0 0 0 3px rgba(0, 160, 227, 0.1);
}

body.menu-open {
  overflow: hidden;
}

/* Header */
.header {
  --header-h: 142px;
  position: sticky;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
  transition: background-color 0.3s ease, box-shadow 0.3s ease, transform 0.3s ease;
  /* Stan po scrollu */
}
.header .navbar-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px 3.2%;
  height: 42.8px;
  width: 100%;
  background-color: white;
}
.header .navbar-top__left .navbar-text {
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 600;
  color: rgb(0, 30, 70);
  text-transform: uppercase;
  white-space: nowrap;
}
.header .navbar-top .header__NavList {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  list-style: none;
  margin: 0;
  padding: 0;
}
.header .navbar-top .header__NavList .nav-item {
  display: flex;
}
.header .navbar-top .header__NavList .nav-item .nav-link {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  text-decoration: none;
  color: rgb(0, 30, 70);
  font-size: 0.875rem;
  font-weight: 500;
  transition: color 0.3s ease;
  white-space: nowrap;
}
.header .navbar-top .header__NavList .nav-item .nav-link:hover {
  color: #00a0e3;
}
.header .navbar-top .header__NavList .nav-item .nav-link .nav-icon {
  color: #00a0e3;
  font-size: 1rem;
  font-weight: 600;
}
.header .navbar-top .header__NavList .nav-item .nav-link .nav-icon .icon-multitone--flow {
  display: inline-block;
  width: 1em;
  height: 1em;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cg fill='none'%3E%3Cg clip-path='url(%23svgID0)'%3E%3Cpath fill='%2378B51A' d='M18.213 24H5.101C2.3 24 0 21.642 0 18.758V5.251C0 2.357 2.29 0 5.101 0h13.112c2.811 0 5.101 2.357 5.101 5.251v13.507c0 2.884-2.29 5.242-5.1 5.242'/%3E%3Cpath fill='%23fff' d='M18.5 8.838H5.55l.898-3.947h12.96zm-1.086 4.919H4.454l.917-3.948h12.95zm-7.176 4.927H3.233l.997-3.938h7.005z'/%3E%3C/g%3E%3Cdefs%3E%3CclipPath id='svgID0'%3E%3Cpath fill='%23fff' d='M0 0h23.314v24H0z'/%3E%3C/clipPath%3E%3C/defs%3E%3C/g%3E%3C/svg%3E");
  margin-top: 6px;
  background-repeat: no-repeat;
  background-size: auto 100%;
}
@media (max-width: 1200px) {
  .header .navbar-top .header__NavList .nav-item .nav-link .nav-text {
    display: none;
  }
}
.header .navbar-top .header__NavList .nav-item .lang-select {
  border: 1px solid #e0e0e0;
  border-radius: 4px;
  padding: 4px 8px;
  font-size: 0.875rem;
  color: rgb(0, 30, 70);
  background: white;
}
.header .navbar-top .header__NavList .nav-item .date-time {
  font-size: 0.875rem;
  color: rgb(0, 30, 70);
  font-weight: 500;
  white-space: nowrap;
}
.header__main-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 104px;
  padding: 0 3.2%;
  background: transparent;
  transition: all 0.3s ease;
}
.header__logo {
  display: block;
  padding: 10px 0;
}
.header__logo svg {
  width: 210px;
  height: auto;
  transition: all 0.3s ease;
}
.header__nav-list {
  display: flex;
  align-items: center;
  gap: 2rem;
  list-style: none;
  margin: 0;
  padding: 0;
}
.header__nav-item .header__nav-link {
  display: flex;
  align-items: center;
  text-decoration: none;
  text-transform: uppercase;
  color: whitesmoke;
  font-weight: 600;
  font-size: 1rem;
  padding: 0.5rem 1rem;
  height: 77px;
  transition: all 0.3s ease;
  text-shadow: 2px 1px 4px rgba(0, 0, 0, 0.966);
}
.header__nav-item .header__nav-link:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: translateY(-2px);
  border-bottom: 6px solid #00a0e3;
}
.header__nav-item .header__nav-link i {
  font-size: 1.1rem;
}
.header.header--scrolled {
  background: white;
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
}
.header.header--scrolled .navbar-top {
  display: none; /* Ukrywamy górny pasek po scrollu */
}
.header.header--scrolled .header__main-content {
  min-height: 70px;
  background: white;
}
.header.header--scrolled .header__logo svg {
  width: 180px;
}
.header.header--scrolled .header__nav-item .header__nav-link {
  color: #00a0e3;
  background: transparent;
  text-shadow: none;
}
.header.header--scrolled .header__nav-item .header__nav-link:hover {
  background: rgb(0, 30, 70);
  color: white;
}

.header--transparent {
  background-color: transparent;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 320 60' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M618.869 16.1668V0H0V59.9105H75.9074H151.815C164.719 59.9105 166.795 61.4295 170.682 51.9501C174.568 42.4706 172.667 43.5387 177.665 32.1645C182.663 20.7902 185.5 16.1668 197.084 16.1668H618.869Z' fill='white'/%3E%3C/svg%3E%0A");
  background-repeat: no-repeat;
  background-size: auto 87%;
  background-position: 0 8.4px;
  background-position-x: -65px;
}

.heder-text {
  border-left: 5px solid #00a0e3;
  padding-left: 30px;
}
.heder-text .section-title {
  text-transform: uppercase;
  font-weight: 600;
  font-size: 2.4rem;
  color: #00a0e3;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}
.heder-text .text-title-info {
  color: #00a0e3;
  font-weight: 600;
  font-size: 1.5rem;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}
.heder-text .text-title-info span {
  font-size: 2rem;
  color: #ffffff;
  font-weight: 600;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

/* Hero section - fixed header */
.hero-section {
  position: relative;
  padding-top: 112px; /* Wysokość headera przed scrollem */
  height: 500px;
  display: flex;
  align-items: center;
}

.header-img {
  position: relative;
  background-image: linear-gradient(to right, rgb(0, 30, 70) 38%, rgba(0, 0, 0, 0) 80%), url("../img/Torwar_with_grain.webp");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  margin-top: -152px; /* Kompensacja fixed header */
  z-index: -1;
}
.header-img .container {
  height: 100%;
  display: flex;
  align-items: center;
}

#btnBackToTop {
  position: fixed;
  background-color: rgb(0, 30, 70);
  width: 35px;
  height: 35px;
  bottom: 60px;
  right: 4%;
  border-radius: 50%;
  border: none;
  display: none;
  z-index: 5;
}

main {
  background-image: url("../img/event-pattern.webp");
  background-repeat: repeat;
  background-size: auto;
}

.fa-arrow-up {
  color: #dadde6;
}

/* Booking CTA */
.booking-cta {
  background: #74b62e;
}

.booking-cta__text {
  font-family: "Montserrat", sans-serif;
  font-size: 1.4rem;
  font-weight: 700;
  color: #fff;
  margin: 0;
  letter-spacing: 0.5px;
}

.events-title {
  font-size: 1.2rem;
  font-weight: 900;
  margin: 0px;
  color: #fff;
  text-shadow: 2px -2px 1px rgba(15, 1, 1, 0.897);
  background-color: rgb(0, 30, 70);
  border-radius: 0.5rem;
  padding: 0.5rem 1rem;
}

/* Filter Bar */
.filter-bar {
  position: sticky;
  top: 70px; /* Wysokość headera przed scrollem */
  z-index: 15;
  background: rgba(0, 30, 70, 0.98);
  padding-bottom: 0.5rem;
  padding-top: 0.3rem;
  border-bottom: 2px solid #00a0e3;
  border-radius: 0.5rem;
  color: white;
  overflow: hidden;
  /* Po scrollu - filter bar przylega do góry */
}
.header--scrolled + main .filter-bar {
  top: 70px; /* Wysokość headera po scrollu */
}

.btn-toggle-filters {
  width: auto;
  height: auto;
  background: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 1rem;
  color: #fff;
  font-size: 0.8rem;
  padding: 0.25rem 0.65rem;
  display: flex;
  align-items: center;
  gap: 0.25rem;
  transition: background 0.3s, border-color 0.3s;
}

.btn-toggle-filters:hover {
  background: #00a0e3;
}

.calendar-icon,
.filter-bar .fa-search {
  color: #00a0e3;
  opacity: 0.85;
}

.filter-bar .form-control {
  background: rgba(255, 255, 255, 0.22);
  color: #d6dbe0;
  border: 1.5px solid #00a0e3;
  border-radius: 0.7rem;
  font-weight: 500;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04);
}

.filter-bar .form-control:focus {
  border-color: #009fe3;
  background: rgba(255, 255, 255, 0.5);
  color: #d3d8df;
}

.filter-bar .form-control::-moz-placeholder {
  color: #d0d6db;
  opacity: 1;
  font-style: italic;
}

.filter-bar .form-control::placeholder {
  color: #d0d6db;
  opacity: 1;
  font-style: italic;
}

/* Skeleton Loading */
.skeleton-card {
  width: 100%;
  max-width: 340px;
  min-height: 170px;
  background: linear-gradient(90deg, #e5eaf3 25%, #f5f7fa 50%, #e5eaf3 75%);
  background-size: 400% 100%;
  border-radius: 1rem;
  margin: 0.6rem;
  animation: shimmer 1.3s linear infinite;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.skeleton-header,
.skeleton-line {
  height: 22px;
  background: rgba(180, 190, 210, 0.13);
  border-radius: 6px;
}

.skeleton-header {
  width: 55%;
  margin: 1.1rem 0 0.4rem 0.9rem;
}

.skeleton-line {
  width: 85%;
  margin-left: 0.9rem;
}

/* Events Container */
#eventsContainer {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  position: relative;
  overflow: visible !important;
  margin: 1rem 0;
}

.card.fl-left {
  --bs-card-border-color: 0 !important;
  flex: 0 0 calc(50% - 0.5rem);
  background: var(--card-bg);
  border-radius: 0.5rem;
  overflow: hidden;
  display: flex;
  flex-direction: row;
  position: relative;
  border: none;
  border-left: 4px solid #00a0e3;
  color: #4f4f4f;
  box-shadow: none;
}

.card.fl-left:hover {
  transform: translateY(-6px);
}

.price.even-price {
  flex: 0 0 25%;
  padding: 1rem;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  min-height: 119px;
  border-right: 2px dashed #dadde6;
}

.price.even-price::before,
.price.even-price::after {
  content: "";
  position: absolute;
  width: var(--circle-size);
  height: var(--circle-size);
  background-color: #d8dfed;
  border-radius: 50%;
  right: var(--circle-offset);
  z-index: 3;
}

.price.even-price::before {
  top: var(--circle-offset);
}

.price.even-price::after {
  bottom: var(--circle-offset);
}

.price-label {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 0.2rem;
}

.price-amount {
  font-size: 1rem;
  font-weight: 700;
}

.price time p:last-child {
  color: #2b2b2b;
  font-weight: 600;
  font-size: 1.9rem;
}

.price time p:first-child {
  text-transform: uppercase;
  font-weight: 600;
  font-size: 3.4rem;
  color: #1480b3;
  margin-bottom: 0;
  padding: 0 1% 0 1%;
}

.card-cont {
  flex: 1;
  padding: 1rem;
  display: flex;
  flex-direction: column;
}

.card-cont h3 {
  color: #b019f7;
  font-size: 1.2rem;
  font-weight: 600;
  text-transform: uppercase;
}

.even-info-list {
  list-style: none;
  padding: 0;
  margin: 0 0 1rem;
  font-weight: 800;
}

.even-info-list dd {
  margin: 0 0 0.5rem 1.5rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.95rem;
  margin-left: 1%;
}

.even-org-name {
  font-size: 0.7rem;
  text-transform: uppercase;
  color: #222;
  padding: 4px 0 4px 0;
}

.card-cont .even-link {
  align-self: flex-end;
  margin-top: auto;
  padding-right: 3%;
}

.card-cont a.btn-outline-primary,
.btn {
  text-decoration: none;
  text-align: center;
  right: 10px;
  bottom: 10px;
  padding: 0.5rem 1rem;
  background: linear-gradient(135deg, #5dade2, #2e86c1);
  color: #fff !important;
  border: none;
  border-radius: 0.5rem;
  box-shadow: 0 4px 8px rgba(46, 134, 193, 0.4);
  text-transform: uppercase;
  font-size: small;
  font-weight: 600;
  transition: background 0.3s ease, transform 0.2s ease;
  font-family: "Montserrat", sans-serif;
  align-items: flex-end;
}

.btn:active {
  transform: scale(0.97);
}

.card a.btn-outline-primary:hover {
  background: linear-gradient(135deg, #85c1e9, #5499c7);
  transform: translateY(-2px);
  text-decoration: none;
}

.card a.btn-locked {
  background: #c0392b !important;
  border: none;
  box-shadow: none;
  opacity: 0.8;
  cursor: not-allowed;
  pointer-events: none;
  text-decoration: line-through;
}

/* Archival events */
.card.archival-event {
  opacity: 0.7;
  border-left: 4px solid #6c757d;
}
.card.archival-event:hover {
  opacity: 0.9;
  transform: translateY(-2px);
}
.card.archival-event .card.archival-event .btn-locked {
  opacity: 0.6 !important;
}
.card.archival-event .price.even-price {
  background-color: #f8f9fa;
}
.card.archival-event .price.even-price time p:first-child {
  color: #6c757d;
}
.card.archival-event .price.even-price .price-label,
.card.archival-event .price.even-price .price-amount {
  color: #6c757d;
}
.card.archival-event .card-cont h3.even-name {
  color: #6c757d;
}
.card.archival-event .card-cont .even-info-list dd {
  color: #6c757d;
}

/* Cookie Banner */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  background: rgba(32, 44, 80, 0.97);
  color: #fff;
  display: flex;
  align-items: center;
  gap: 1rem;
  justify-content: center;
  padding: 1rem 2rem;
  font-size: 0.8rem;
  box-shadow: 0 -2px 16px rgba(0, 0, 0, 0.12);
  transition: opacity 0.3s;
}

.cookie-banner__btn {
  border: none;
  background: #0d6efd;
  color: #fff;
  font-weight: 600;
  margin-left: 0.5rem;
  padding: 0.5rem 1.25rem;
  border-radius: 2rem;
  cursor: pointer;
  font-size: 1rem;
}

.cookie-banner__btn.reject {
  background: #fff;
  color: #0d6efd;
  border: 1px solid #0d6efd;
}

.no-events-anim {
  display: flex;
  flex-direction: column;
  align-items: center;
  color: #1a3569;
  margin-top: 2rem;
  opacity: 0.8;
  animation: pulse 1.5s infinite;
}

.no-events-anim i {
  margin-bottom: 1rem;
  color: #2574e6;
  animation: bounce 1.2s infinite;
}

/* Redirect Modal */
.redirect-modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 30, 80, 0.95);
  z-index: 10000;
  justify-content: center;
  align-items: center;
}

.redirect-modal.active {
  display: flex;
}

.redirect-modal__content {
  background: white;
  padding: 40px;
  border-radius: 12px;
  text-align: center;
  max-width: 400px;
  animation: modalFadeIn 0.3s ease;
}

@keyframes modalFadeIn {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.redirect-modal__icon {
  font-size: 48px;
  color: #0085c8;
  margin-bottom: 20px;
}

.redirect-modal__title {
  font-size: 24px;
  font-weight: 700;
  color: #001e50;
  margin-bottom: 15px;
}

.redirect-modal__text {
  font-size: 16px;
  color: #666;
  margin-bottom: 25px;
}

.redirect-modal__spinner {
  display: flex;
  justify-content: center;
}

.spinner {
  width: 40px;
  height: 40px;
  border: 4px solid #f3f3f3;
  border-top: 4px solid #0085c8;
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
/* Footer */
.footer .listHeader {
  font-weight: 600;
}
.footer .searchhero-image-bg {
  color: #fff;
  z-index: -2;
}
.footer .footeroverlay {
  background-color: rgb(0, 30, 70);
  height: 100%;
  right: 0;
  position: relative;
  top: 0;
  width: 100%;
  z-index: 0;
}
.footer .container {
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  margin-right: auto;
  margin-left: auto;
}
.footer .justify-content-end {
  justify-content: flex-end !important;
}
.footer img {
  vertical-align: middle;
  border-style: none;
}
.footer .footerList {
  font-size: 0.9rem;
}
.footer .footerList a {
  color: #fff;
  text-decoration: none;
}
.footer .footerList a:hover {
  text-decoration: underline;
}

/* Responsive -------------------------------------------------------------------------------*/
@media (max-width: 576px) {
  .booking-cta__text {
    font-size: 1.3rem;
  }
  .even-info-list dd {
    margin: 0 0 0.5rem 1.5rem;
    display: flex;
    gap: 0.5rem;
    font-size: 0.8rem;
    margin-left: 1%;
  }
}
@media (max-width: 768px) {
  .mobile-menu__header {
    padding: 0.75rem 1rem;
  }
  .mobile-menu__logo svg {
    width: 120px;
  }
  .mobile-menu__close {
    width: 35px;
    height: 35px;
    font-size: 1.3rem;
  }
  .mobile-menu__link {
    padding: 1rem 1rem;
    font-size: 1rem;
  }
  .mobile-menu__link:hover {
    padding-left: 1.5rem;
  }
  .mobile-menu__footer {
    padding: 1.5rem 1rem;
  }
  .navbar-text {
    display: none;
  }
  .header .navbar-top__left .navbar-text {
    font-size: 0.7rem;
  }
  .header .navbar-top .header__NavList .nav-item .nav-link .nav-icon {
    font-size: 0.9rem;
  }
  .header .navbar-top .header__NavList .nav-item .lang-select {
    padding: 2px 4px;
    font-size: 0.8rem;
  }
  .header .navbar-top .header__NavList .nav-item .date-time {
    font-size: 0.75rem;
  }
  .header__main-content {
    padding: 0 1rem;
    min-height: 19px;
  }
  .header__logo {
    display: block;
    padding: 5px 0;
  }
  .header__logo svg {
    height: auto;
    margin-bottom: 35px;
  }
  .header__nav-list {
    gap: 0.5rem;
  }
  .header__nav-item .header__nav-link {
    font-size: 0.8rem;
    padding: 0.3rem 0.9rem;
    gap: 1.3rem;
  }
  .header__nav-item .header__nav-link i {
    font-size: 0.9rem;
    margin-right: 0.25rem;
  }
  .header__nav-item .header__nav-link span {
    display: none;
  }
  .header.header--scrolled .header__nav-item .header__nav-link span {
    display: none;
  }
  .header--transparent {
    background-color: transparent;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 1134 70' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M618.869 16.1668V0H0V59.9105H75.9074H151.815C164.719 59.9105 166.795 61.4295 170.682 51.9501C174.568 42.4706 172.667 43.5387 177.665 32.1645C182.663 20.7902 185.5 16.1668 197.084 16.1668H618.869Z' fill='white'/%3E%3C/svg%3E%0A");
    background-repeat: no-repeat;
    background-size: auto 68%;
    background-position: 0 17px;
    background-position-x: -15px;
  }
  .hero-section {
    height: 400px;
    padding-top: 100px;
  }
  .header-img {
    background-image: linear-gradient(to right, rgb(0, 30, 70) 20%, rgba(0, 0, 0, 0) 80%), url("../img/Torwarmain_640.png");
    height: 390px;
  }
  .header-img .heder-text {
    padding-left: 1rem;
  }
  .header-img .heder-text .section-title {
    font-size: 1.5rem;
  }
  .header-img .heder-text .text-title-info {
    font-size: 1.1rem;
  }
  .header-img .heder-text .text-title-info span {
    font-size: 1.2rem;
  }
  .booking-cta__text {
    font-size: 1.1rem;
  }
  .events-title {
    font-weight: 700;
    font-size: 0.9rem;
  }
  .filter-bar {
    top: 70px;
    border-radius: 0 0 0.5rem 0.5rem;
  }
  .header--scrolled + main .filter-bar {
    top: 60px;
  }
  .filter-bar .ms-auto {
    margin-left: 1% !important;
  }
  .events-sec {
    padding-left: 0.5%;
    padding-right: 0.9%;
  }
  #btnBackToTop {
    bottom: 20px;
    right: 60px;
  }
  #eventsContainer {
    flex-direction: column;
    /* 3) Price section (.date.even-price) */
    /* 4) Drobne skalowanie tekstów */
    /* 6) Card content -> zachowaj padding, kolumnowo */
  }
  #eventsContainer .card.fl-left {
    flex: 0 0 100%; /* każda karta na 100% szerokości */
    max-width: 100%;
  }
  #eventsContainer .price.even-price {
    width: 100%;
    padding: 1rem 0.7rem;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    min-height: auto;
  }
  #eventsContainer .price time p i .fa-solid {
    font-size: 2rem;
  }
  #eventsContainer .price-label {
    font-size: 1rem;
    min-width: 95px;
  }
  #eventsContainer .price-amount {
    font-size: 1.9rem;
  }
  #eventsContainer .card-cont {
    padding: 1.1rem 0.3rem;
  }
  #eventsContainer .card-cont .even-link {
    align-self: flex-end;
    margin-top: auto;
    padding-right: 3%;
    padding-top: 3%;
  }
  #eventsContainer .even-date .even-mm-dd-rrrr {
    font-size: 0.8rem;
  }
  #eventsContainer .even-name {
    font-size: 0.9rem;
  }
  #eventsContainer .even-info-list {
    list-style: none;
    font-size: 1.1rem;
    padding: 1%;
    margin: 0 0 1rem;
  }
  #eventsContainer .even-info-list dt {
    font-weight: 400;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.25rem;
    padding: 0%;
  }
  #eventsContainer .even-info-list dd {
    margin: 0 0 0.5rem 1.5rem;
    display: flex;
    gap: 0.5rem;
    font-size: 0.9rem;
    margin-left: 3%;
  }
}
@media (max-width: 480px) {
  .navbar-top__center .navbar-text {
    font-size: 0.75rem;
  }
  .header .navbar-top__left .navbar-text {
    font-size: 0.7rem;
  }
  .header .navbar-top .header__NavList {
    gap: 0.5rem;
  }
  .header__logo svg {
    width: 140px;
  }
  .header.header--scrolled .header__logo svg {
    width: 120px;
  }
}
@media only screen and (max-width: 992px) {
  .hamburger {
    display: block;
  }
  .header__nav {
    display: none;
  }
  .header__main-content {
    justify-content: space-between;
  }
  #btnBackToTop {
    box-shadow: 0 -4px 10px rgba(218, 210, 210, 0.12);
    width: 30px;
    height: 30px;
    bottom: 60px;
    right: 3%;
  }
  .header .navbar-top {
    padding: 8px 1rem;
    height: 35px;
  }
  .header .navbar-top__left .navbar-text {
    font-size: 0.9rem;
  }
  .header .navbar-top .header__NavList {
    gap: 1.5rem;
  }
  .header .navbar-top .header__NavList .nav-item .nav-link .nav-text {
    display: none;
  }
  .header .navbar-top .header__NavList .nav-item .date-time {
    font-size: 0.8rem;
  }
  .header__main-content {
    padding: 0 1rem;
    min-height: 79px;
  }
  .header__logo svg {
    width: 140px;
  }
  .header__nav-list {
    gap: 1rem;
  }
  .header__nav-item .header__nav-link {
    font-size: 0.9rem;
    padding: 0.4rem 0.8rem;
  }
  .header .header--transparent {
    background-color: transparent;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 1134 120' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M618.869 16.1668V0H0V59.9105H75.9074H151.815C164.719 59.9105 166.795 61.4295 170.682 51.9501C174.568 42.4706 172.667 43.5387 177.665 32.1645C182.663 20.7902 185.5 16.1668 197.084 16.1668H618.869Z' fill='white'/%3E%3C/svg%3E%0A");
    background-repeat: no-repeat;
    background-size: auto 68%;
    background-position: 0 18px;
    background-position-x: -15px;
  }
  .header.header--scrolled .header__logo svg {
    width: 130px;
    margin: 15px;
  }
  .header.header--scrolled .header__main-content {
    min-height: 0px;
  }
  .header-img {
    background-image: linear-gradient(to right, rgb(0, 30, 70) 20%, rgba(0, 0, 0, 0) 80%), url("../img/Torwarmain_640.png");
  }
  .hero-section {
    padding-top: 112px;
  }
  .header-img {
    margin-top: -112px;
  }
  .filter-bar {
    top: 70px;
    border-radius: 0 0 0.5rem 0.5rem;
  }
  .header--scrolled + main .filter-bar {
    top: 60px;
  }
  .card.fl-left {
    flex: 0 0 100%; /* każda karta na 100% szerokości */
    max-width: 100%;
  }
  /* 4) Drobne skalowanie tekstów */
  .price-label {
    font-size: 1.1rem;
    min-width: 90px;
  }
  .price-amount {
    font-size: 1.9rem;
  }
  /* 6) Card content */
  .card-cont {
    padding: 1rem 0.5rem;
  }
  .even-date .even-mm-dd-rrrr {
    font-size: 0.8rem;
  }
  .even-info-list {
    list-style: none;
    font-size: 1rem;
    padding: 0;
    margin: 0 0 1rem;
  }
  .even-info-list dt {
    font-weight: 400;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.25rem;
  }
  .even-info-list dd {
    margin: 0 0 0.5rem 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.1rem;
    margin-left: 3%;
  }
}
@media (max-width: 1200px) {
  .header .navbar-top .header__NavList {
    gap: 1.4rem;
  }
  .price-label {
    font-size: 1rem;
    min-width: 100px;
  }
  .price-amount {
    font-size: 1rem;
  }
  .card-cont {
    padding: 1rem 0.5rem;
  }
  .even-date .even-mm-dd-rrrr {
    font-size: 1rem;
  }
  .even-info-list {
    list-style: none;
    font-size: 1.5rem;
    padding: 0;
    margin: 0 0 1rem;
  }
  .even-info-list dt {
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.25rem;
  }
  .even-info-list dd {
    margin: 0 0 0.5rem 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.2rem;
  }
}/*# sourceMappingURL=main.css.map */