/* Landing pages: page title + themed clickable hero banner */

.landing-header .landing-brand {
  margin: 0 0 8px;
  font-size: clamp(0.95rem, 2.5vw, 1.1rem);
  font-weight: var(--font-weight-bold);
}

.landing-header .landing-brand a {
  color: var(--color-brand-accent);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.landing-header .landing-brand a:hover {
  text-decoration: underline;
}

.landing-page-title {
  margin: 0;
  font-size: clamp(1.75rem, 6vw, 3rem);
  font-weight: var(--font-weight-boldest);
  line-height: 1.15;
  color: var(--color-primary);
  text-shadow: var(--text-shadow-header-title);
}

.landing-tagline {
  margin: 12px 0 0;
  font-size: clamp(0.9rem, 3vw, 1.1rem);
  opacity: 0.85;
}

.landing-hero-banner {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  max-width: 728px;
  min-width: 320px;
  width: calc(100% - 40px);
  height: 90px;
  margin: var(--spacing-md) auto var(--spacing-sm);
  padding: 12px 20px;
  border-radius: var(--border-radius-large);
  box-shadow: var(--shadow-medium);
  text-decoration: none;
  color: #fff;
  cursor: pointer;
  box-sizing: border-box;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  border: 2px solid transparent;
}

.landing-hero-banner:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-large);
}

.landing-hero-banner:focus {
  outline: none;
  border-color: rgba(255, 255, 255, 0.85);
  box-shadow: 0 0 0 3px rgba(54, 124, 255, 0.35), var(--shadow-large);
}

.landing-hero-title {
  font-size: clamp(1.35rem, 4.5vw, 2rem);
  font-weight: var(--font-weight-boldest);
  letter-spacing: 0.02em;
  text-align: center;
}

.landing-hero-subtitle {
  font-size: clamp(0.8rem, 2.5vw, 1rem);
  font-weight: var(--font-weight-bold);
  opacity: 0.92;
  text-align: center;
}

.landing-hero--pop {
  background: linear-gradient(135deg, #ff6b9d 0%, #c44dff 50%, #367cff 100%);
}

.landing-hero--rock {
  background: linear-gradient(135deg, #1a1a2e 0%, #e94560 45%, #533483 100%);
}

.landing-hero--jazz {
  background: linear-gradient(135deg, #2d1b4e 0%, #d4a574 50%, #8b4513 100%);
}

.landing-hero--electronic {
  background: linear-gradient(135deg, #0f0c29 0%, #302b63 50%, #00d4ff 100%);
}

.landing-hero--news {
  background: linear-gradient(135deg, #1e3c72 0%, #2a5298 50%, #c0392b 100%);
}

.landing-hero--poland {
  background: linear-gradient(135deg, #dc143c 0%, #ffffff 45%, #dc143c 100%);
  color: #1a1a1a;
}

.landing-hero--poland .landing-hero-subtitle {
  color: #333;
}

.landing-hero--russia {
  background: linear-gradient(135deg, #0039a6 0%, #ffffff 50%, #d52b1e 100%);
  color: #1a1a1a;
}

.landing-hero--russia .landing-hero-subtitle {
  color: #333;
}

.landing-hero--ukraine {
  background: linear-gradient(135deg, #0057b7 0%, #ffd700 100%);
  color: #1a1a1a;
}

.landing-hero--ukraine .landing-hero-subtitle {
  color: #333;
}

.landing-hero--germany {
  background: linear-gradient(135deg, #000 0%, #dd0000 50%, #ffce00 100%);
}

.landing-hero--usa {
  background: linear-gradient(135deg, #3c3b6e 0%, #ffffff 40%, #b22234 100%);
  color: #1a1a1a;
}

.landing-hero--usa .landing-hero-subtitle {
  color: #333;
}

html.dark-theme .landing-page-title {
  color: #10E0F0;
}

html.dark-theme .landing-tagline,
html.dark-theme .landing-tagline a {
  color: #fff;
}

@media (max-width: 768px) {
  .landing-hero-banner {
    width: calc(100% - 30px);
    height: 80px;
    margin: var(--spacing-sm) auto;
  }
}
