/* Repertoar stranica */

body.gbd-repertoar-page {
  position: relative;
  min-height: 100vh;
}

body.gbd-repertoar-page::before {
  content: "";
  position: fixed;
  inset: -4% 0;
  z-index: -2;
  background-image: var(--gbd-bg-repertoar, var(--gbd-bg-section-video, var(--gbd-bg-hero)));
  background-size: cover;
  background-position: center 35%;
  background-repeat: no-repeat;
  filter: brightness(0.72) saturate(1.15) contrast(1.05);
  pointer-events: none;
}

body.gbd-repertoar-page::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background:
    linear-gradient(180deg, rgba(13, 15, 20, 0.82) 0%, rgba(13, 15, 20, 0.65) 35%, rgba(13, 15, 20, 0.88) 100%),
    radial-gradient(ellipse 70% 55% at 15% 8%, rgba(124, 58, 237, 0.28), transparent 55%),
    radial-gradient(ellipse 55% 45% at 88% 20%, rgba(59, 130, 246, 0.22), transparent 50%);
}

body.gbd-repertoar-page .site-footer {
  position: relative;
  z-index: 1;
  background: rgba(7, 7, 13, 0.78);
  backdrop-filter: blur(10px);
  color: #fff;
}

body.gbd-repertoar-page .site-footer a {
  color: #fff;
}

.gbd-rep {
  position: relative;
  z-index: 1;
  color: #fff;
}

/* Buttons */
.gbd-rep-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  padding: 0.85rem 1.5rem;
  border-radius: 999px;
  font-family: var(--gbd-font-body);
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  text-decoration: none;
  transition: transform 0.25s var(--gbd-ease), box-shadow 0.25s var(--gbd-ease), background 0.25s var(--gbd-ease);
}

.gbd-rep-btn--primary {
  background: var(--gbd-gradient);
  color: #fff;
  box-shadow: 0 8px 28px rgba(124, 58, 237, 0.35);
}

.gbd-rep-btn--primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 36px rgba(124, 58, 237, 0.45);
}

.gbd-rep-btn--ghost {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.22);
  color: #fff;
}

.gbd-rep-btn--ghost:hover {
  background: rgba(255, 255, 255, 0.12);
  transform: translateY(-2px);
}

/* Hero */
.gbd-rep-hero {
  position: relative;
  padding: calc(var(--gbd-header-h) + 3.5rem) clamp(1.25rem, 4vw, 2.5rem) 3.5rem;
  overflow: hidden;
}

.gbd-rep-hero__glow {
  position: absolute;
  top: -20%;
  left: 50%;
  width: min(900px, 120vw);
  height: 420px;
  transform: translateX(-50%);
  background: radial-gradient(ellipse at center, rgba(124, 58, 237, 0.35) 0%, transparent 70%);
  pointer-events: none;
  animation: gbd-rep-pulse 6s ease-in-out infinite;
}

@keyframes gbd-rep-pulse {
  0%, 100% { opacity: 0.6; transform: translateX(-50%) scale(1); }
  50% { opacity: 1; transform: translateX(-50%) scale(1.05); }
}

.gbd-rep-hero__inner {
  position: relative;
  max-width: var(--gbd-max);
  margin: 0 auto;
  text-align: center;
}

.gbd-rep-hero__eyebrow {
  margin: 0 0 0.75rem;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.65);
}

.gbd-rep-hero__title {
  margin: 0 0 1rem;
  font-family: var(--gbd-font-display);
  font-size: clamp(3.5rem, 12vw, 7rem);
  line-height: 0.95;
  letter-spacing: 0.04em;
  background: linear-gradient(135deg, #fff 0%, #c4b5fd 45%, #93c5fd 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  text-shadow: none;
}

.gbd-rep-hero__lead {
  max-width: 640px;
  margin: 0 auto 2rem;
  font-size: clamp(1rem, 2.2vw, 1.15rem);
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.88);
}

.gbd-rep-hero__stats {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem 2rem;
  margin-bottom: 2rem;
}

.gbd-rep-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.15rem;
}

.gbd-rep-stat__num {
  font-family: var(--gbd-font-display);
  font-size: clamp(2rem, 5vw, 2.75rem);
  line-height: 1;
  letter-spacing: 0.04em;
  background: var(--gbd-gradient);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.gbd-rep-stat__label {
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55);
}

.gbd-rep-hero__actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem;
}

/* Song list */
.gbd-rep-list {
  padding: 1rem clamp(1.25rem, 4vw, 2.5rem) 3rem;
}

.gbd-rep-list__head {
  max-width: var(--gbd-max);
  margin: 0 auto 2rem;
  text-align: center;
}

.gbd-rep-list__title {
  margin: 0 0 0.5rem;
  font-family: var(--gbd-font-display);
  font-size: clamp(2rem, 5vw, 2.75rem);
  letter-spacing: 0.05em;
}

.gbd-rep-list__sub {
  margin: 0;
  max-width: 520px;
  margin-inline: auto;
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.6;
}

.gbd-rep-grid {
  list-style: none;
  margin: 0 auto;
  padding: 0;
  max-width: var(--gbd-max);
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 0.65rem;
}

.gbd-rep-item {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  padding: 0.85rem 1.1rem;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(8, 10, 16, 0.55);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  transition: border-color 0.25s var(--gbd-ease), background 0.25s var(--gbd-ease), transform 0.25s var(--gbd-ease), box-shadow 0.25s var(--gbd-ease);
  animation: gbd-rep-fade-in 0.5s var(--gbd-ease) both;
  animation-delay: calc(var(--gbd-rep-i, 0) * 18ms);
}

.gbd-rep-item:hover {
  border-color: rgba(124, 58, 237, 0.45);
  background: rgba(12, 14, 22, 0.78);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.35), 0 0 0 1px rgba(124, 58, 237, 0.15);
}

.gbd-rep-item__num {
  flex-shrink: 0;
  width: 2rem;
  font-family: var(--gbd-font-display);
  font-size: 1.1rem;
  letter-spacing: 0.04em;
  color: rgba(124, 58, 237, 0.85);
  text-align: center;
}

.gbd-rep-item__title {
  font-size: 0.92rem;
  font-weight: 500;
  line-height: 1.35;
  color: rgba(255, 255, 255, 0.92);
}

@keyframes gbd-rep-fade-in {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* CTA */
.gbd-rep-cta {
  padding: 1rem clamp(1.25rem, 4vw, 2.5rem) 5rem;
}

.gbd-rep-cta__card {
  max-width: 720px;
  margin: 0 auto;
  padding: clamp(2rem, 5vw, 3rem);
  text-align: center;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(8, 8, 14, 0.82);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.45);
}

.gbd-rep-cta__icon {
  font-size: 2.5rem;
  margin-bottom: 0.75rem;
  line-height: 1;
}

.gbd-rep-cta__title {
  margin: 0 0 0.75rem;
  font-family: var(--gbd-font-display);
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  letter-spacing: 0.04em;
  line-height: 1.1;
}

.gbd-rep-cta__text {
  margin: 0 0 1.75rem;
  font-size: 1rem;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.8);
}

.gbd-rep-cta__actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem;
}

@media (max-width: 640px) {
  .gbd-rep-hero {
    padding-top: calc(var(--gbd-header-h) + 2.5rem);
  }

  .gbd-rep-grid {
    grid-template-columns: 1fr;
  }

  .gbd-rep-item {
    padding: 0.75rem 1rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  .gbd-rep-hero__glow {
    animation: none;
  }

  .gbd-rep-item {
    animation: none;
  }

  .gbd-rep-btn:hover,
  .gbd-rep-item:hover {
    transform: none;
  }
}
