/* =========================================================
   BUTTONS
========================================================= */

.btn {
  display: inline-block;
  padding: 12px 22px;
  margin-top: var(--space-md);

  background: var(--accent);
  color: #fff;

  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 1px;

  border-radius: 2px;
  transition: 0.2s ease;
}

.btn:hover {
  transform: translateY(-2px);
  opacity: 0.9;
}

.btn-outline {
  background: transparent;
  border: 1px solid #fff;
  border-radius: 2px;
}

.btn-primary {
  padding: 0.8rem 1.5rem;
  background: #e60023;
  border-radius: 6px;
}


/* =========================================================
   CARDS – CONCERT
========================================================= */

.concert-card {
  display: block;
  position: relative;

  padding: var(--space-md);
  background: #111;
  border-radius: 12px;

  color: inherit;
  text-decoration: none;

  transition: 0.3s ease;

  scroll-margin-top: 120px;
}

.concert-card:hover {
  background: #181818;
  transform: translateY(-2px);
}

.concert-card.highlight {
  outline: 2px solid #ff2e2e;
  transform: scale(1.02);
  box-shadow: 0 0 20px rgba(255, 46, 46, 0.5);
  transition: 0.3s;
}

/* image */

.concert-card__image {
  width: 220px;
  height: 140px;

  display: flex;
  align-items: center;
  justify-content: center;

  background: #111;
  border-radius: 8px;
  overflow: hidden;
}

.concert-card__image img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;

  transition: transform 0.4s ease;
}

.concert-card:hover .concert-card__image img {
  transform: scale(1.05);
}

@media (max-width: 768px) {

  .concert-card__image {
    width: 100%;
    height: auto;
  }

  .concert-card__image img {
    width: 100%;
    height: auto;
    object-fit: cover;
  }

}

/* text */

.concert-title {
  font-size: 18px;
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 8px;
  color:#fff
}

.concert-card .city {
  color: var(--text);
}

.concert-meta {
  color: #aaa;
  padding-bottom: var(--space-sm);
}

/* media icons */

.concert-card__media {
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: center;
  justify-content: center;
}

.concert-card__media a {
  display: flex;
  align-items: center;
  justify-content: center;

  width: 40px;
  height: 40px;

  background: #111;
  border-radius: 8px;

  font-size: 18px;
  text-decoration: none;

  transition: 0.2s;
}

.concert-card__media a:hover {
  background: var(--accent);
  transform: scale(1.1);
}


/* =========================================================
   CONCERT DETAIL
========================================================= */

.concert-links-wrapper {
  margin-top: var(--space-lg);
}

.concert-links-title {
  font-size: 18px;
  margin-bottom: var(--space-sm);
}

.concert-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.concert-links a {
  display: flex;
  align-items: center;
  justify-content: center;

  width: 36px;
  height: 36px;

  background: #111;
  border-radius: 8px;

  transition: 0.2s ease;
}

.concert-links a:hover {
  background: #181818;
  transform: translateY(-2px);
}

.concert-links img {
  width: 18px;
  height: 18px;
}

.concert-poster img {
  width: 100%;
  border-radius: 12px;
  transition: transform 0.3s ease;
}

.concert-poster:hover img {
  transform: scale(1.03);
}


/* =========================================================
   SHARE
========================================================= */

.share-bar {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 16px;
}

.share-icons {
  display: flex;
  gap: 8px;
}

.share-btn {
  display: flex;
  align-items: center;
  justify-content: center;

  width: 36px;
  height: 36px;

  background: #111;
  border-radius: 6px;

  color: #fff;
  border: none;
  cursor: pointer;

  transition: 0.2s;
}

.share-btn svg {
  width: 16px;
  height: 16px;
  fill: currentColor;
}

.share-btn:hover {
  transform: translateY(-2px);
}

/* brand hover */
.share-btn.fb:hover { color: #1877f2; }
.share-btn.whatsapp:hover { color: #25d366; }
.share-btn.x:hover { color: #aaa; }

.share-btn.copy.copied {
  background: #e11;
  color: #fff;
}


/* =========================================================
   MEDIA
========================================================= */

.media-card {
  display: block;
  text-decoration: none;
  color: inherit;
}

.media-thumb {
  width: 100%;
  aspect-ratio: 16 / 9;

  background: #111;
  border-radius: 10px;
  overflow: hidden;
}

.media-thumb img,
.media-thumb iframe {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 20%;
}

.media-card h3 {
  margin-top: 10px;
  font-size: 18px;
}

.media-date {
  font-size: 14px;
  color: #aaa;
  margin-left: 8px;
}

.media-author {
  font-size: 13px;
  color: #888;
}

.media-meta {
  font-size: 14px;
  opacity: 0.7;
  margin: 5px 0 20px;
}

.media-video {
  margin-top: 10px;
}

.media-content {
  margin-top: 20px;
}


/* =========================================================
   NEWS
========================================================= */

.news-card {
  display: block;
  text-decoration: none;
  color: inherit;
}

.news-thumb {
  aspect-ratio: 16/9;
  overflow: hidden;
  border-radius: 10px;
}

.news-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.news-thumb-placeholder {
  width: 100%;
  height: 100%;
  background: #111;
}

.news-date {
  font-size: 14px;
  color: var(--muted);
  margin-bottom: 6px;
}

.news-content {
  margin-top: var(--space-md);
}

.news-content h3 {
  margin-top: 10px;
  color: var(--accent);
}

.news-excerpt {
  line-height: 1.75;
}

.news-excerpt p {
  margin-bottom: 14px;
}


/* =========================================================
   PAGINATION
========================================================= */

.pagination {
  margin-top: var(--space-xl);
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 8px;
}

.pagination a,
.pagination span {
  display: inline-flex;
  align-items: center;
  justify-content: center;

  min-width: 40px;
  height: 40px;
  padding: 0 12px;

  background: #111;
  color: #aaa;

  border-radius: 8px;
  font-size: 14px;
  font-weight: 600;

  text-decoration: none;
  transition: 0.2s ease;
}

.pagination a:hover {
  background: #1a1a1a;
  color: #fff;
  transform: translateY(-2px);
}

.pagination .current {
  background: var(--accent);
  color: #fff;
}

.pagination .dots {
  background: transparent;
  pointer-events: none;
}


/* =========================================================
   SOCIAL / FOOTER
========================================================= */

.social-links {
  display: flex;
  gap: 15px;
  align-items: center;
}

.social-links a {
  display: flex;
  align-items: center;
  justify-content: center;

  width: 42px;
  height: 42px;

  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 50%;

  transition: 0.3s ease;
}

.social-links a:hover {
  border-color: var(--accent);
  transform: translateY(-2px);
}

.social-links svg {
  width: 20px;
  height: 20px;
  fill: white;
}

.bandzone-text {
  font-size: 11px;
  font-weight: 700;
  color: #fff;
  letter-spacing: 1px;
}

.footer-heading {
  font-size: 14px;
  color: #aaa;
  margin-bottom: 10px;
}


/* =========================================================
   FORMS
========================================================= */

.form-group label {
  font-size: 14px;
  color: #ccc;
  margin-bottom: 6px;
}

.form-group input,
.form-group select,
.form-group textarea {
  padding: 12px;
  background: transparent;
  border: 1px solid #444;
  color: #fff;

  border-radius: 6px; /* 🔥 nové */
  transition: border 0.2s ease, box-shadow 0.2s ease;
}

/* focus efekt */
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--accent);
  outline: none;
  box-shadow: 0 0 0 2px rgba(255, 46, 46, 0.2);
}
.form-group textarea {
  min-height: 120px;
}

.form-group.error input,
.form-group.error textarea,
.form-group.error select {
  border-color: red;
}

/* CONTACT FORM BUTTON */
/* CONTACT FORM BUTTON = stejné jako .btn */
.contact-form button {
  display: inline-block;
  padding: 12px 22px;
  margin-top: var(--space-md);

  background: var(--accent);
  color: #fff;

  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 1px;

  border-radius: 2px;
  border: none;

  cursor: pointer;
  transition: 0.2s ease;
}

.contact-form button:hover {
  transform: translateY(-2px);
  opacity: 0.9;
}

.error-message {
  font-size: 12px;
  color: red;
  margin-top: 4px;
  display: none;
}

.form-group.error .error-message {
  display: block;
}


/* =========================================================
   GUESTBOOK
========================================================= */

.gb-card {
  background: #111;
  padding: 20px;
  border-radius: 12px;
  transition: 0.3s;
}

.gb-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 0 20px rgba(255,50,50,0.3);
}

.gb-card p {
  color: #ccc;
}

.gb-like {
  background: none;
  border: none;
  color: var(--accent);
  cursor: pointer;
}


/* =========================================================
   CONTENT / TYPO
========================================================= */

.microheadline {
  color: #aaa;
  font-size: 0.95rem;
  margin-bottom: 1rem;
}

.section-image {
  width: 100%;
  margin: 1.5rem 0;
  border-radius: 10px;
}

.band-members {
  list-style: none;
}

.band-members li {
  padding: 0.5rem 0;
  border-bottom: 1px solid #333;
}

.legend {
  font-size: 14px;
  color: #aaa;
  margin-bottom: 20px;
}

.rare {
  color: #e60023;
}

.hint {
  font-size: 14px;
  opacity: 0.6;
  margin-bottom: 10px;
}


/* =========================================================
   MEDIA PLAYER
========================================================= */

.play-btn {
  display: flex;
  align-items: center;
  background: none;
  border: none;
  cursor: pointer;
}

.play-btn svg {
  transition: transform 0.2s ease;
}

.play-btn:hover svg {
  transform: scale(1.15);
}

.tracklist li {
  padding: 10px 0;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.tracklist li[data-video] {
  position: relative;
  padding-left: 25px;
  cursor: pointer;
}

.tracklist li[data-video]::before {
  content: "▶";
  position: absolute;
  left: 0;
  opacity: 0.5;
}

.tracklist li[data-video]:hover {
  color: #e60000;
}

.tracklist li.playing {
  color: #ffcc00;
}


/* =========================================================
   MISC
========================================================= */

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-md);
}

.hero-actions .btn {
  white-space: nowrap;
  padding: 14px 24px;
  font-size: 14px;
  min-width: 160px;
  text-align: center;
  border-radius: 6px;
  letter-spacing: 1px;
}

@media (max-width: 600px) {
  .hero-actions {
    flex-direction: column;
  }

  .hero-actions .btn {
    width: 100%;
  }
}

.section-more {
  margin-bottom: var(--space-xl);
}

.contact-box {
  margin-top: var(--space-md);
}

.booking-benefits li {
  margin-bottom: 8px;
  margin-left: 16px;
}

.booking-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

.booking-text {
  max-width: 600px;
}

/* mobil */
@media (max-width: 768px) {
  .booking-inner {
    grid-template-columns: 1fr;
  }

  .about-image {
    margin-top: 20px;
  }
}

.booking-section:nth-child(even) .booking-inner {
  direction: rtl;
}

.booking-section:nth-child(even) .booking-text {
  direction: ltr;
}

.logo a {
  font-size: 18px;
  font-weight: 700;
  color: var(--text);
}

.nav a {
  margin-left: var(--space-md);
  font-size: 14px;
}

.about-image img,
.about-preview__image img {
  width: 100%;
  border-radius: 12px;
}

.about-image img {
  transition: transform 0.4s ease;
}

.about-image:hover img {
  transform: scale(1.03);
}

/* =========================================================
   WP GALLERY FIX
========================================================= */

.wp-block-gallery {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.wp-block-gallery .wp-block-image {
  flex: 1 1 calc(33.333% - 16px);
}

/* obrázky */
.wp-block-gallery img {
  width: 100%;
  height: auto;
  display: block;

  border-radius: 12px; /* 🔥 to chceš */
  transition: transform 0.3s ease;
}

/* hover */
.wp-block-gallery a:hover img {
  transform: scale(1.03);
}

/* ============================================================
   SWIPER – FINAL FIX ALL
============================================================ */

/* základ */
.swiper {
  overflow: hidden;
  cursor: grab;
}

.swiper:active {
  cursor: grabbing;
}

.swiper-wrapper {
  display: flex;
}

.swiper-slide {
  height: auto;
}

:root {
  --swiper-theme-color: var(--accent);
}

/* ===== PAGINATION ===== */

.media-swiper .swiper-pagination,
.news-swiper .swiper-pagination {
  margin-top: 40px;
  text-align: center;
  position: relative;
  z-index: 20;
}

.media-swiper .swiper-pagination-bullet,
.news-swiper .swiper-pagination-bullet {
  width: 12px !important;
  height: 12px !important;

  background: transparent !important;
  border: 2px solid #fff !important;

  opacity: 1 !important;
  margin: 0 6px !important;

  cursor: pointer;
  transition: opacity 0.2s ease;
}

.media-swiper .swiper-pagination-bullet:hover,
.news-swiper .swiper-pagination-bullet:hover {
  opacity: 0.7;
}

.media-swiper .swiper-pagination-bullet-active,
.news-swiper .swiper-pagination-bullet-active {
  background: var(--accent) !important;
  border-color: var(--accent) !important;
}

/* ===== NAV WRAPPER ===== */

.media-swiper,
.news-swiper {
  position: relative;
}

.media-swiper .swiper-nav,
.news-swiper .swiper-nav {
  position: absolute;
  inset: 0;
  z-index: 200;
  pointer-events: none;
}

/* ===== ARROWS ===== */

.media-swiper .swiper-button-prev,
.media-swiper .swiper-button-next,
.news-swiper .swiper-button-prev,
.news-swiper .swiper-button-next {
  pointer-events: auto;

  position: absolute;

  background: none;
  border: none;

  color: #fff;
  font-size: 42px;

  display: flex;
  align-items: center;
  justify-content: center;

  cursor: pointer;
  user-select: none;

  transition: color 0.2s ease;

  text-shadow: 0 0 10px rgba(0,0,0,0.7);
}

/* odstraní default */
.media-swiper .swiper-button-prev::after,
.media-swiper .swiper-button-next::after,
.news-swiper .swiper-button-prev::after,
.news-swiper .swiper-button-next::after {
  content: '' !important;
}

/* ikony */
.media-swiper .swiper-button-prev::before,
.news-swiper .swiper-button-prev::before {
  content: '‹';
}

.media-swiper .swiper-button-next::before,
.news-swiper .swiper-button-next::before {
  content: '›';
}

/* hover */
.media-swiper .swiper-button-prev:hover,
.media-swiper .swiper-button-next:hover,
.news-swiper .swiper-button-prev:hover,
.news-swiper .swiper-button-next:hover {
  color: var(--accent);
}

/* pozice */
.media-swiper .swiper-button-prev,
.news-swiper .swiper-button-prev {
  left: 12px;
  top: 30%;
  transform: translateY(-50%);
}

.media-swiper .swiper-button-next,
.news-swiper .swiper-button-next {
  right: 12px;
  top: 30%;
  transform: translateY(-50%);
}

/* ===== CLICK FIX ===== */

.media-swiper .swiper-slide,
.media-swiper .media-card,
.news-swiper .swiper-slide,
.news-swiper .news-card {
  position: relative;
  z-index: 1;
}

.media-swiper .swiper-wrapper,
.news-swiper .swiper-wrapper {
  position: relative;
  z-index: 1;
}

/* ===== FADE – ONLY IMAGES ===== */

.media-swiper .media-thumb,
.news-swiper .news-thumb {
  position: relative;
  overflow: hidden;
}

/* levý */
.media-swiper .media-thumb::before,
.news-swiper .news-thumb::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 60px;
  height: 100%;

  background: linear-gradient(to right, rgba(0,0,0,0.9), transparent);

  z-index: 2;
  pointer-events: none;
}

/* pravý */
.media-swiper .media-thumb::after,
.news-swiper .news-thumb::after {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 60px;
  height: 100%;

  background: linear-gradient(to left, rgba(0,0,0,0.9), transparent);

  z-index: 2;
  pointer-events: none;
}

/* ===== FORCE CLICK FIX ===== */

.media-swiper *,
.news-swiper * {
  pointer-events: none;
}

.media-swiper .media-card,
.media-swiper .swiper-button-prev,
.media-swiper .swiper-button-next,
.media-swiper .swiper-pagination,
.media-swiper .swiper-pagination-bullet,
.news-swiper .news-card,
.news-swiper .swiper-button-prev,
.news-swiper .swiper-button-next,
.news-swiper .swiper-pagination,
.news-swiper .swiper-pagination-bullet {
  pointer-events: auto;
}