* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  font-family: Arial, sans-serif;
}

body {
  background: #000;
  color: #fff;
}

a {
  color: #fff;
  text-decoration: none;
}

.topbar {
  position: sticky;
  top: 15px;
  margin: 0 15px;
  padding: 14px 20px;
  border-radius: 16px;

  display: flex;
  justify-content: space-between;
  align-items: center;

  background: rgba(20, 20, 20, 0.75);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);

  border: 1px solid rgba(255,255,255,0.08);
  z-index: 1000;
}

.top-center img {
  height: 40px;
}

.slider {
  position: relative;
  width: 100%;
  aspect-ratio: 1 / 1;
  overflow: hidden;
}

.slides img {
  width: 100%;
  height: 100%;
  object-position: center center;
  display: none;
}

.slides img.active {
  display: block;
}

.prev, .next {
  position: absolute;
  top: 50%;
  background: rgba(0,0,0,0.5);
  border: none;
  color: #fff;
  font-size: 30px;
  padding: 5px 10px;
}

.prev { left: 10px; }
.next { right: 10px; }

.events {
  padding: 20px;
}

.event-card {
  display: flex;
  gap: 15px;
  margin-top: 20px;
}

.event-card img {
  width: 80px;
  height: 80px;
  object-fit: cover;
}

.btn {
  display: inline-block;
  margin-top: 10px;
  padding: 10px 15px;
  background: #fff;
  color: #000;
  font-weight: bold;
}

.event-page {
  padding: 20px;
  text-align: center;
}

.event-poster {
  width: 100%;
  max-width: 400px;
  margin: 0 auto 20px;
}

.tickets {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.event-description {
  max-width: 600px;
  margin: 40px auto 0;
  padding: 0 20px;
  color: #fff;
}

.event-title {
  text-align: center;
  font-size: 1.4rem;
  letter-spacing: 1px;
  margin-bottom: 25px;
}

.event-facts {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  font-size: 0.9rem;
  opacity: 0.85;
  margin-bottom: 30px;
}

.event-text p {
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 15px;
}

.event-section {
  margin-top: 30px;
}

.event-section h3 {
  font-size: 1rem;
  margin-bottom: 10px;
  letter-spacing: 0.5px;
}

.event-list {
  list-style: none;
  padding: 0;
}

.event-list li {
  padding: 6px 0;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  font-size: 0.9rem;
}

.event-note {
  margin-top: 30px;
  font-size: 0.85rem;
  opacity: 0.8;
}

.event-note p {
  margin-bottom: 10px;
}

.event-footer {
  text-align: center;
  margin-top: 40px;
  font-weight: bold;
  letter-spacing: 1px;
}
.event-card {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px;
  border-radius: 14px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.06);
  margin-bottom: 14px;
}

.event-thumb {
  width: 64px;
  height: 64px;
  border-radius: 10px;
  object-fit: cover;
  flex-shrink: 0;
}

.event-info {
  flex: 1;
}

.event-city {
  font-size: 0.7rem;
  opacity: 0.6;
  letter-spacing: 1px;
}

.event-info h4 {
  font-size: 0.9rem;
  margin: 4px 0;
}

.event-info p {
  font-size: 0.75rem;
  opacity: 0.6;
}

.buy-btn {
  background: #7CFF00;
  color: #000;
  font-weight: bold;
  font-size: 0.75rem;
  padding: 8px 12px;
  border-radius: 999px;
  white-space: nowrap;
}
.slider::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 80px;
  background: linear-gradient(to bottom, transparent, #000);
}
/* DESKTOP – slider jak sohard (kontrola kadru) */
@media (min-width: 1024px) {
  .slider {
    height: 420px;
  }

  .slider img {
    height: 420px;
    object-fit: cover;
    object-position: center 20%;
  }
}
@media (min-width: 1024px) {
  .slider img:nth-child(3) {
    object-position: center 50%;
  }
}
/* =========================
   MOBILE ONLY – FIX TOPBARA
========================= */
@media (max-width: 768px) {

  .topbar-right {
    font-size: 0.45rem;
    letter-spacing: 0.4px;
    white-space: nowrap;
  }

  .topbar-left {
    font-size: 0.45rem;
    white-space: nowrap;
  }

  .top-center img {
    height: 36px;
  }

}
/* =========================
   HAMBURGER – MOBILE
========================= */

.hamburger {
  display: none;
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
}

.hamburger span {
  display: block;
  width: 18px;
  height: 2px;
  background: #fff;
  margin: 4px 0;
  border-radius: 2px;
}

/* MOBILE MENU */
.mobile-menu {
  display: none;
  position: absolute;
  top: 70px;
  right: 20px;
  background: rgba(20,20,20,0.95);
  border-radius: 12px;
  padding: 12px 16px;
  border: 1px solid rgba(255,255,255,0.1);
  z-index: 999;
}

.mobile-menu a {
  display: block;
  font-size: 0.8rem;
  padding: 6px 0;
}

/* =========================
   RESPONSIVE
========================= */
@media (max-width: 768px) {
  .nav-desktop {
    display: none;
  }

  .hamburger {
    display: block;
  }
}
.mobile-menu.open {
  display: block;
}
/* =========================
   DESKTOP – EVENT PAGE LAYOUT
========================= */
@media (min-width: 1024px) {

  .event-page {
    max-width: 1100px;
    margin: 80px auto;
    padding: 0 40px;
    text-align: left;
  }

  .event-header {
    display: grid;
    grid-template-columns: 420px 1fr;
    gap: 60px;
    align-items: start;
  }

  .event-poster {
    max-width: 420px;
    width: 100%;
    margin: 0;
  }

  .event-title {
    text-align: left;
    font-size: 2rem;
    margin-bottom: 20px;
  }

  .tickets {
    flex-direction: row;
    gap: 20px;
    margin: 20px 0 30px;
  }

  .tickets a {
    min-width: 220px;
    text-align: center;
  }

  .event-description {
    max-width: 800px;
    margin: 80px auto 0;
    text-align: center;
  }

}
@media (min-width: 1024px) {

  .event-header {
    display: grid;
    grid-template-columns: 420px 1fr;
    gap: 60px;
    align-items: start;
    max-width: 1100px;
    margin: 80px auto 0;
    padding: 0 40px;
  }

  .event-poster {
    max-width: 100%;
  }

  .event-main {
    padding-top: 40px;
  }

  .tickets {
    margin-top: 30px;
    display: flex;
    gap: 20px;
  }

}
/* =========================
   MOBILE TOPBAR – JAK NA MAIN
========================= */
@media (max-width: 768px) {

  .topbar {
    height: 56px;                 /* TA SAMA WYSOKOŚĆ */
    padding: 0 16px;
    display: flex;
    align-items: center;
    justify-content: space-between;
  }

  .topbar-left,
  .topbar-right {
    font-size: 0.7rem;
    opacity: 0.85;
    min-width: 40px;              /* wyrównanie szerokości */
    text-align: center;
  }

  .top-center {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
  }

  .top-center img {
    height: 26px;                 /* DOKŁADNIE JAK NA MAIN */
  }

  .hamburger {
    background: none;
    border: none;
    color: #fff;
    font-size: 1.2rem;
    cursor: pointer;
  }
}
/* =========================
   MOBILE TOPBAR – FINAL (JAK NA MAIN)
========================= */
@media (max-width: 768px) {

  .topbar {
    height: 56px;
    padding: 0 16px;
    display: flex;
    align-items: center;
    justify-content: space-between;
  }

  .topbar-left,
  .topbar-right {
    font-size: 0.7rem;
    opacity: 0.85;
    min-width: 44px;
    text-align: center;
    white-space: nowrap;
  }

   .top-center {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
  }

  .top-center a {
    pointer-events: auto;
  }

  .top-center img {
    height: 26px;
  }

  .hamburger {
    display: block;
  }

}
/* =========================
   TOPBAR – SOCIAL ICONS
========================= */
.social-links {
  display: flex;
  gap: 10px;
  align-items: center;
}

.social-links img {
  width: 18px;
  height: 18px;
  display: block;
  opacity: 0.85;
}

.social-links a:hover img {
  opacity: 1;
}
/* =========================
   TOPBAR – SOCIAL ICONS FIX
========================= */
.top-left.social-links img {
  width: 18px !important;
  height: 18px !important;
  max-width: 18px;
  max-height: 18px;
  object-fit: contain;
  display: block;
}
