/* =========================================================
   HERO (homepage)
========================================================= */

.homepage-hero {
  position: relative;
  height: 100vh;
  min-height: 600px;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-bg img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0,0,0,0.2),
    rgba(0,0,0,0.45)
  );
}

.hero-box {
  background: rgba(0, 0, 0, 0.55);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);

  padding: 32px;
  border-radius: 16px;

  max-width: 600px;
}



.hero-content {
  position: relative;
  z-index: 2;
  max-width: 700px;
}

.hero-content::before {
  content: "";
  position: absolute;
  inset: -40px;
  
  background: radial-gradient(
    circle at center,
    rgba(0,0,0,0.6) 0%,
    rgba(0,0,0,0.3) 10%,
    transparent 40%
  );

  z-index: -1;
}


.hero-content h1,
.hero-content p {
  text-shadow:
    0 2px 10px rgba(0,0,0,0.8),
    0 0 20px rgba(0,0,0,0.6);
}

.hero-content h1 {
  font-size: 72px;
  line-height: 1.1;
  text-transform: uppercase;
  letter-spacing: 3px;
  margin-bottom: var(--space-md);
}

.hero-tagline {
  font-size: 20px;
  color: var(--muted);
  margin-bottom: var(--space-lg);
}

/* =========================================================
   HOMEPAGE SECTIONS
========================================================= */

.homepage section {
  margin-top: 80px;
}

.homepage section:first-of-type {
  margin-top: 0;
}

.homepage section h2 {
  margin-bottom: 16px;
}

.homepage section > p {
  margin-bottom: 32px;
  max-width: 600px;
}

.social-section {
  display: grid;
  gap: 16px;
  margin-top: 40px;
}

.social-banner {
  display: flex;
  align-items: center;
  justify-content: space-between;

  padding: 20px 24px;
  margin-bottom: 16px;

  background: linear-gradient(145deg, #0a0a0a, #050505);
  border-radius: 12px;

  border: 1px solid rgba(255,255,255,0.08);

  transition: all 0.25s ease;

  position: relative;
  overflow: hidden;
}

.kiss-logo {
  height: 68px;
  filter: brightness(0) invert(1);
}

.social-logo {
  height: 42px;
  filter: brightness(0) invert(1);
}

.social-banner::before {
  content: "";
  position: absolute;
  inset: 0;

  background: linear-gradient(
    120deg,
    transparent,
    rgba(255,255,255,0.08),
    transparent
  );

  opacity: 0;
  transition: 0.3s;
}
.social-banner:hover {
  transform: translateY(-4px) scale(1.02);

  border: 1px solid rgba(255,50,50,0.6);

  box-shadow:
    0 0 12px rgba(255,50,50,0.4),
    0 0 30px rgba(255,50,50,0.2),
    inset 0 0 10px rgba(255,255,255,0.05);
}

.social-banner:hover::before {
  opacity: 1;
}

.social-banner:hover img {
  filter: brightness(0) invert(1) drop-shadow(0 0 8px rgba(255,255,255,0.4));
}

.concerts.container {
  margin-top: 80px;
  padding-bottom: 60px;
}

.concerts-layout {
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 40px;
  align-items: start;
  margin-top: 80px;
}

.concerts-links {
  background: rgba(0,0,0,0.6);
  padding: 24px;
  border-radius: 16px;

  border: 1px solid rgba(255,255,255,0.06);

  box-shadow:
    0 0 40px rgba(255,0,0,0.1),
    inset 0 0 20px rgba(255,255,255,0.03);
}

.concerts-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

@media (max-width: 900px) {
  .concerts-layout {
    grid-template-columns: 1fr;
  }
}

.homepage .swiper,
.homepage .grid,
.homepage .concerts-grid {
  margin-top: 24px;
}

.homepage-media.container {
  margin-top: 80px;
}

.homepage-about {
  margin-top: 80px;
}

.homepage-news > h2 {
  font-size: 32px !important;
}

.homepage-about h2 {
  margin-bottom: 24px;
}

.homepage-about p {
  max-width: 800px;
  color: #ccc;
  line-height: 1.6;
  margin-bottom: 16px;
}

.homepage-about .highlight {
  font-size: 20px;
  font-weight: 600;
  color: #fff;
  margin-top: 24px;
}

.about-preview {
  padding: 80px 0;
  background: #0a0a0a;
}

.homepage-news {
  margin-top: 80px;
}

.homepage-media {
  position: relative;
}

/* =========================================================
   KONCERTY
========================================================= */

.concert-years {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 30px 0 50px;
}

.concert-years a {
  padding: 8px 16px;
  background: #111;
  border-radius: 20px;
  color: #aaa;
  transition: 0.3s;
}

.concert-years a:hover,
.concert-years a.active {
  background: #fff;
  color: #000;
}

#concert-map {
  height: 300px !important;
  margin-bottom: 50px;
  border-radius: 12px;
  overflow: hidden;
}

.concert-card__content .date {
  font-size: 14px;
  color: #aaa;
  margin-bottom: 6px;
}

.concert-card__content .city {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 4px;
}

.concert-card__content .place {
  font-size: 14px;
  color: #888;
}

.concert-content p {
  text-align: justify;
  hyphens: auto;
}

.concert-media .media-item {
  display: block;
}

.concert-media .media-item.is-full {
  grid-column: 1 / -1;
}

.concert-media .media-header {
  width: 100%;
}

.concert-media {
  grid-column: 1 / -1;
  width: 100%;
}

.concert-media iframe {
  width: 100%;
  height: 500px;
}

.concert-media .media-gallery {
  width: 100%;
  grid-template-columns: repeat(4, 1fr);
}

@media (max-width: 768px) {
  .concert-media .media-gallery {
    grid-template-columns: 1fr;
  }
}

.concert-cta {
  margin-top: 40px;
}

/* =========================================================
   MÉDIA
========================================================= */

.media-filter {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 30px 0;
}

.media-filter a {
  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;

  transition: 0.2s;
}

.media-filter a:hover {
  background: #1a1a1a;
  color: #fff;
  transform: translateY(-2px);
}

.media-filter a.active {
  background: #ff2e2e;
  color: #fff;
  box-shadow: 0 0 10px rgba(255, 46, 46, 0.5);
}

.media-press-gallery {
  margin-top: 20px;
}

.media-press-gallery a {
  display: block;
  margin-bottom: 20px;
}

.media-press-gallery img {
  max-width: 100%;
  border-radius: 10px;
}

/* =========================================================
   HEADER
========================================================= */

.site-header {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 9999;

  transform: translateY(-100%);
  transition: 0.3s;
}

/* WP admin bar fix */
body.admin-bar .site-header { top: 32px; }
@media (max-width: 782px) {
  body.admin-bar .site-header { top: 46px; }
}

/* homepage hidden */
.home .site-header {
  opacity: 0;
}

/* visible */
.site-header.is-visible {
  transform: translateY(0);
  opacity: 1;
  background: rgba(0,0,0,0.95);
  backdrop-filter: blur(6px);
  box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}

/* =========================================================
   FOOTER + PLAYER
========================================================= */

.site-footer {
  padding: var(--space-lg) 0;
  text-align: center;
  color: var(--muted);
  border-top: 1px solid #222;
  margin-top: var(--space-xl);
}

.footer-copy {
  color: var(--muted);
}

/* PLAYER */

#sticky-player {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;

  background: #111;
  border-top: 2px solid #e60000;
  z-index: 9999;
}

.mini-info {
  font-size: 14px;
}

#player-close {
  background: none;
  border: none;
  color: white;
  font-size: 20px;
  cursor: pointer;
}

#player-close:hover {
  color: #e60000;
}

#yt-player {
  width: 0;
  height: 0;
  border: 0;
}

/* =========================================================
   BOOKING
========================================================= */

.booking-hero {
  margin-bottom: var(--space-lg);
}

.booking-intro {
  color: #ccc;
  max-width: 700px;
}

.booking-section {
  margin-bottom: var(--space-xl);
}

.booking-note {
  margin-top: 15px;
  color: #aaa;
}

.booking-trust { opacity: 0.9; }
.booking-seo {
  opacity: 0.6;
  font-size: 14px;
}

.form-success {
  color: #0f0;
  margin-top: 10px;
}

/* =========================================================
   GUESTBOOK
========================================================= */

.guestbook-form {
  margin-bottom: 40px;
}

.guestbook-form input,
.guestbook-form textarea {
  width: 100%;
  padding: 10px;
  margin-bottom: 10px;
  background: #111;
  border: 1px solid #333;
  color: #fff;
}

.guestbook-form button {
  background: #ff2e2e;
  border: none;
  padding: 10px 20px;
  color: #fff;
  cursor: pointer;
}

/* =========================================================
   ORGANIZER
========================================================= */

.organizer-hero {
  margin-bottom: var(--space-lg);
}

.organizer-intro {
  color: #ccc;
  max-width: 700px;
  margin-bottom: var(--space-md);
}

.organizer-section {
  margin: 40px 0;
}

.organizer-list li,
.organizer-downloads li {
  margin-bottom: 8px;
}

.organizer-downloads a {
  text-decoration: underline;
}

.organizer-cta {
  text-align: center;
}

/* =========================================================
   BIO
========================================================= */

#bio-page {
  max-width: 900px;
  margin: auto;
  padding: 2rem;
}

/* =========================================================
   PLAYLIST + VIDEO
========================================================= */

.setlist li {
  display: flex;
  align-items: center;
  gap: 8px;
}

.encore {
  margin-top: var(--space-md);
}

.video-popup {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 9999;
}

.video-popup.active {
  display: block;
}

.video-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.8);
}

.video-container {
  position: relative;
  width: 90%;
  max-width: 900px;
  margin: 5% auto;
  background: black;
  border-radius: 10px;
  overflow: hidden;
}

.video-container iframe {
  width: 100%;
  height: 500px;
}

.video-close {
  position: absolute;
  top: 10px;
  right: 15px;
  font-size: 30px;
  color: white;
  cursor: pointer;
}

/* =========================================================
   DISCOGRAPHY
========================================================= */

#band-discography {
  max-width: 1000px;
  margin: 0 auto;
}

/* =========================================================
   MAINTENANCE
========================================================= */

.maintenance-hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.maintenance-content {
  max-width: 800px;
  background: rgba(0,0,0,0.55);
  border-radius: 12px;
  padding: 30px;
}

.maintenance-title {
  font-size: 64px;
}

.lead {
  color: var(--accent);
}

.lang-switch {
  position: absolute;
  top: 20px;
  right: 20px;
}

.fade {
  opacity: 0;
  transition: 0.3s;
}

.fade.visible {
  opacity: 1;
}