/*
Theme Name: NO5 Band Theme
Theme URI: https://no5band.sk
Author: DivArt
Author URI: https://divart.sk
Description: Moderná WordPress téma pre hudobnú skupinu NO5 – dizajn 1:1 ako HTML verzia.
Version: 1.0
Text Domain: no5
*/

:root {
      --bg: #050509;
      --bg-alt: #0d0d16;
      --accent: #ff3b6c;
      --accent-soft: rgba(255, 59, 108, 0.2);
      --text: #f7f7ff;
      --muted: #9fa0b8;
      --card: #151525;
      --border: #2a2a40;
      --radius-lg: 18px;
      --radius-sm: 999px;
      --shadow-soft: 0 18px 40px rgba(0, 0, 0, 0.55);
      --transition-fast: 0.2s ease-out;
      --max-width: 1120px;
    }

    * {
      box-sizing: border-box;
      margin: 0;
      padding: 0;
    }

    body {
      font-family: "Poppins", system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
      background: radial-gradient(circle at top, #151530 0, #050509 55%);
      color: var(--text);
      line-height: 1.6;
      min-height: 100vh;
    }
	body {
  overflow-x: hidden;
}


@media (min-width: 768px) {
  .lifeline-block {
    max-width: 80%;
    margin: 0 auto;
  }
}
    a {
      color: inherit;
      text-decoration: none;
    }

    img {
      max-width: 100%;
      display: block;
    }

    /* Layout helpers */
    .container {
      width: 100%;
      max-width: var(--max-width);
      margin: 0 auto;
      padding: 0 1.5rem;
    }
	
	.uk-card-secondary {
		background-color: #13132b!important;
		border-radius:20px
	}
	
	.uk-modal-dialog{
		background-color: #13132b!important;
	}
	
	.lifeline-block h3 {
  position: relative;
  padding-left: 0px;
  margin-bottom: 1em!important;
}

    section {
      padding: 2rem 0;
    }
	h1,h2 {color:white}
	
	ul{padding:0}
	
	h3 {color: #8385ff;}
	
	.btn-clean {
  display: inline-block;
  padding: 12px 26px;
  
  border: none;
  background: #111;
  color: #fff;
  font-size: 12px;
  
  letter-spacing: 0.5px;
  cursor: pointer;
  transition: 0.25s ease;
  box-shadow: 0 4px 14px rgba(0,0,0,0.25);
}

.btn-clean:hover {
  background: #e91e63;
  transform: translateY(-2px);
  box-shadow: 0 8px 18px rgba(233, 30, 99, 0.4);
}

.btn-clean:active {
  transform: translateY(0);
  box-shadow: 0 4px 10px rgba(233,30,99,0.35);
}

.track-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 8px;
}

.track-time {
  color: #aaa;
  font-size: 14px;
  margin-left: 12px;
  min-width: 40px;
  text-align: right;
}
	
	

    /* HEADER / NAVBAR */
    header {
      position: sticky;
      top: 0;
      z-index: 100;
      backdrop-filter: blur(20px);
      background: linear-gradient(to bottom, rgba(5, 5, 9, 0.96), rgba(5, 5, 9, 0.7));
      border-bottom: 1px solid rgba(255, 255, 255, 0.03);
    }

    .nav {
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 0.9rem 10px;
    }

    .logo {
      display: flex;
      align-items: center;
      gap: 0.5rem;
      font-weight: 700;
      letter-spacing: 0.16em;
      font-size: 0.9rem;
      text-transform: uppercase;
    }

    .logo-mark {
      width: auto;
      
     
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 0.9rem;
    }

    .nav-links {
		list-style: none;
      display: flex;
      align-items: center;
      gap: 1.5rem;
      font-size: 0.9rem;
      text-transform: uppercase;
      letter-spacing: 0.12em;
    }

    .nav-links a {
      color: var(--muted);
      position: relative;
      padding-bottom: 0.2rem;
    }

    .nav-links a::after {
      content: "";
      position: absolute;
      left: 0;
      bottom: 0;
      width: 0;
      height: 2px;
      background: var(--accent);
      transition: width var(--transition-fast);
    }

    .nav-links a:hover {
		text-decoration: none!important;
      color: var(--text);
    }

    .nav-links a:hover::after {
      width: 100%;
    }

    .nav-cta {
      padding: 0.5rem 1.2rem;
      border-radius: var(--radius-sm);
      border: 1px solid var(--accent-soft);
      background: rgba(255, 59, 108, 0.08);
      color: var(--accent);
      font-size: 0.8rem;
      text-transform: uppercase;
      letter-spacing: 0.12em;
      transition: background var(--transition-fast), transform var(--transition-fast), box-shadow var(--transition-fast);
    }

    .nav-cta:hover {
      background: var(--accent);
      color: #fff;
      transform: translateY(-1px);
      box-shadow: 0 0 18px rgba(255, 59, 108, 0.7);
    }

    /* Mobile nav toggle */
    .nav-toggle {
      display: none;
      width: 32px;
      height: 32px;
      border-radius: 999px;
      border: 1px solid rgba(255, 255, 255, 0.1);
      justify-content: center;
      align-items: center;
      cursor: pointer;
	  background: transparent;
    }

    .nav-toggle span {
      width: 16px;
      height: 2px;
      background: #fff;
      position: relative;
      transition: transform var(--transition-fast), opacity var(--transition-fast);
    }

    .nav-toggle span::before,
    .nav-toggle span::after {
      content: "";
      position: absolute;
      width: 16px;
      height: 2px;
      background: #fff;
      left: 0;
      transition: transform var(--transition-fast), top var(--transition-fast), bottom var(--transition-fast);
    }

    .nav-toggle span::before {
      top: -5px;
    }

    .nav-toggle span::after {
      bottom: -5px;
    }

    .nav-open .nav-toggle span {
      transform: rotate(45deg);
    }

    .nav-open .nav-toggle span::before {
      top: 0;
      transform: rotate(-90deg);
    }

    .nav-open .nav-toggle span::after {
      bottom: 0;
      opacity: 0;
    }

    @media (max-width: 768px) {
      .nav-links {
        position: fixed;
        inset: 0px 0 auto 0;
        background: rgba(5, 5, 9, 0.98);
        backdrop-filter: blur(20px);
        border-bottom: 1px solid rgba(255, 255, 255, 0.06);
        flex-direction: column;
        padding: 1rem 1.5rem 1.5rem;
        transform: translateY(-110%);
        transition: transform 0.25s ease-out;
      }

      .nav-open .nav-links {
        transform: translateY(0);
      }

      .nav-cta {
        width: 100%;
        text-align: center;
        justify-content: center;
      }

      .nav-toggle {
        display: flex;
      }
    }

    /* HERO */
    #hero {
      padding: 5.5rem 0 4.5rem;
    }

    .hero-grid {
      display: grid;
      grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr);
      align-items: center;
      gap: 3rem;
    }

    @media (max-width: 900px) {
      .hero-grid {
        grid-template-columns: minmax(0, 1fr);
      }
    }

    .eyebrow {
      font-size: 0.8rem;
      text-transform: uppercase;
      letter-spacing: 0.18em;
      color: var(--accent);
      margin-bottom: 0.4rem;
    }

    .hero-title {
      font-size: clamp(2.5rem, 4vw, 3.2rem);
      line-height: 1.1;
      margin-bottom: 0.8rem;
    }

    .hero-highlight {
      background: linear-gradient(120deg, #ffffff, #ff9bb9, #ff3b6c);
      -webkit-background-clip: text;
      color: transparent;
    }

    .hero-sub {
      color: var(--muted);
      font-size: 0.96rem;
      max-width: 30rem;
      margin-bottom: 1.5rem;
    }

    .hero-actions {
      display: flex;
      flex-wrap: wrap;
      gap: 0.9rem;
      align-items: center;
    }

    .btn-primary,
    .btn-ghost {
      display: inline-flex;
      align-items: center;
      gap: 0.5rem;
      padding: 0.8rem 1.5rem;
      border-radius: var(--radius-sm);
      border: 1px solid transparent;
      font-size: 0.85rem;
      text-transform: uppercase;
      letter-spacing: 0.14em;
      cursor: pointer;
      transition: background var(--transition-fast), transform var(--transition-fast), box-shadow var(--transition-fast), border-color var(--transition-fast);
    }

    .btn-primary {
      background: var(--accent);
      color: #fff;
      box-shadow: 0 0 18px rgba(255, 59, 108, 0.6);
    }

    .btn-primary:hover {
      transform: translateY(-1px);
      box-shadow: 0 18px 40px rgba(0, 0, 0, 0.9);
    }

    .btn-ghost {
      border-color: rgba(255, 255, 255, 0.15);
      color: var(--muted);
      background: rgba(255, 255, 255, 0.02);
    }

    .btn-ghost:hover {
      border-color: rgba(255, 255, 255, 0.4);
      color: var(--text);
      transform: translateY(-1px);
    }

    .hero-meta {
      display: flex;
      flex-wrap: wrap;
      gap: 1.2rem;
      margin-top: 1.4rem;
      font-size: 0.8rem;
      color: var(--muted);
    }

    .hero-meta-item {
      display: flex;
      align-items: center;
      gap: 0.4rem;
    }

    .dot {
      width: 7px;
      height: 7px;
      border-radius: 999px;
      background: radial-gradient(circle, #ff9bb9, #ff3b6c);
      box-shadow: 0 0 10px rgba(255, 59, 108, 0.9);
    }

    /* Hero visual */
    .hero-visual {
      position: relative;
    }

    .hero-card {
      position: relative;
      padding: 1.2rem;
      border-radius: 22px;
      background: radial-gradient(circle at top left, #292945, #141422 50%, #050509 100%);
      border: 1px solid rgba(255, 255, 255, 0.08);
      box-shadow: var(--shadow-soft);
      overflow: hidden;
    }

    .hero-card::before {
      content: "";
      position: absolute;
      inset: -40%;
      background: radial-gradient(circle at top, rgba(255, 59, 108, 0.18), transparent 55%);
      opacity: 0.9;
      pointer-events: none;
    }

    .hero-tag {
      display: inline-flex;
      align-items: center;
      gap: 0.4rem;
      padding: 0.25rem 0.7rem;
      border-radius: var(--radius-sm);
      background: rgba(0, 0, 0, 0.55);
      border: 1px solid rgba(255, 255, 255, 0.1);
      font-size: 0.72rem;
      color: var(--muted);
      margin-bottom: 0.9rem;
    }

    .hero-band-photo {
      position: relative;
      border-radius: 18px;
      overflow: hidden;
      border: 1px solid rgba(255, 255, 255, 0.1);
      background: linear-gradient(135deg, #11111b, #252543);
      aspect-ratio: 4 / 3;
      display: flex;
      align-items: flex-end;
      padding: 1rem;
      color: #f5f5fb;
      isolation: isolate;
    }

    .hero-band-photo::after {
      content: "";
      position: absolute;
      inset: 0;
      background: radial-gradient(circle at bottom, rgba(0, 0, 0, 0.7), transparent 60%);
      mix-blend-mode: multiply;
      opacity: 0.9;
    }

    .hero-band-photo-content {
      position: relative;
      z-index: 1;
    }

    .hero-band-photo h3 {
      font-size: 1.15rem;
      margin-bottom: 0.2rem;
    }

    .hero-band-photo span {
      font-size: 0.8rem;
      color: var(--muted);
    }

    .hero-overlay-badge {
      position: absolute;
      right: 1.2rem;
      top: 1.2rem;
      padding: 0.4rem 0.8rem;
      border-radius: 999px;
      background: rgba(0, 0, 0, 0.7);
      font-size: 0.7rem;
      text-transform: uppercase;
      letter-spacing: 0.18em;
      color: #fddde9;
      border: 1px solid rgba(255, 255, 255, 0.2);
    }

    .hero-mini {
      margin-top: 1rem;
      display: grid;
      grid-template-columns: 1.4fr 1fr;
      gap: 0.8rem;
      font-size: 0.78rem;
      color: var(--muted);
    }

    @media (max-width: 600px) {
      .hero-mini {
        grid-template-columns: 1fr;
      }
    }

    .hero-pill {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 0.4rem;
      padding: 0.55rem 0.7rem;
      border-radius: 999px;
      background: rgba(0, 0, 0, 0.6);
      border: 1px solid rgba(255, 255, 255, 0.08);
    }

    .hero-pill strong {
      color: var(--text);
      font-weight: 500;
      font-size: 0.8rem;
    }

    .hero-pill span {
      color: var(--muted);
    }

    .hero-pill .pulse {
      width: 9px;
      height: 9px;
      border-radius: 999px;
      background: #35ff9c;
      box-shadow: 0 0 15px rgba(53, 255, 156, 0.9);
    }

    /* SECTION HEADERS */
    .section-header {
      display: flex;
      justify-content: space-between;
      align-items: baseline;
      gap: 1.5rem;
      margin-bottom: 2rem;
      flex-wrap: wrap;
    }

    .section-title {
      font-size: 1.5rem;
	  color:white
    }

    .section-subtitle {
      color: var(--muted);
      font-size: 0.9rem;
      max-width: 26rem;
    }

    /* ABOUT */
    .about-grid {
      display: grid;
      grid-template-columns: minmax(0, 1.3fr) minmax(0, 1fr);
      gap: 2.5rem;
    }

    @media (max-width: 900px) {
      .about-grid {
        grid-template-columns: minmax(0, 1fr);
      }
    }

    .about-text p {
      margin-bottom: 1rem;
      font-size: 0.95rem;
      color: var(--muted);
    }

    .about-tags {
      display: flex;
      flex-wrap: wrap;
      gap: 0.4rem;
      margin-top: 0.5rem;
    }

    .chip {
      font-size: 0.78rem;
      padding: 0.35rem 0.7rem;
      border-radius: 999px;
      border: 1px solid rgba(255, 255, 255, 0.1);
      color: var(--muted);
      background: rgba(255, 255, 255, 0.02);
    }

    .members-card {
      background: var(--card);
      border-radius: var(--radius-lg);
      border: 1px solid var(--border);
      padding: 1.2rem 1.3rem;
      box-shadow: var(--shadow-soft);
      font-size: 0.9rem;
    }

    .members-card h3 {
      font-size: 0.95rem;
      margin-bottom: 0.9rem;
    }

    .member-list {
      list-style: none;
      display: grid;
      gap: 0.5rem;
    }

    .member-role {
      display: flex;
      justify-content: space-between;
      gap: 1rem;
      color: var(--muted);
    }

    .member-role strong {
      color: var(--text);
      font-weight: 500;
    }

    /* MUSIC / PLAYER SECTION */
    .music-layout {
      display: grid;
      grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr);
      gap: 2rem;
      align-items: start;
    }

    @media (max-width: 900px) {
      .music-layout {
        grid-template-columns: minmax(0, 1fr);
      }
    }

    .player-card {
      background: var(--card);
      border-radius: var(--radius-lg);
      border: 1px solid var(--border);
      padding: 1rem;
      box-shadow: var(--shadow-soft);
    }

    .player-inner {
      display: grid;
      grid-template-columns: 110px minmax(0, 1fr);
      gap: 1rem;
      align-items: center;
    }

    @media (max-width: 600px) {
      .player-inner {
        grid-template-columns: minmax(0, 1fr);
      }
    }

    .cover {
      position: relative;
      border-radius: 14px;
      overflow: hidden;
      background: radial-gradient(circle at 30% 10%, #ff9bb9, #ff3b6c 40%, #050509 90%);
      aspect-ratio: 1 / 1;
      display: flex;
      align-items: center;
      justify-content: center;
      color: #fdf5f8;
      font-weight: 700;
      letter-spacing: 0.14em;
      text-transform: uppercase;
      font-size: 0.75rem;
    }

    .cover::after {
      content: "";
      position: absolute;
      inset: 0;
      background: linear-gradient(145deg, rgba(0, 0, 0, 0.1), transparent);
      mix-blend-mode: screen;
    }

    .track-meta h3 {
      font-size: 1rem;
      margin-bottom: 0.1rem;
    }

    .track-meta span {
      font-size: 0.82rem;
      color: var(--muted);
    }

    .player-bar {
      margin-top: 0.8rem;
    }

    audio {
      width: 100%;
      outline: none;
      border-radius: 999px;
    }

    .track-list {
      margin-top: 1.2rem;
      font-size: 0.85rem;
      color: var(--muted);
    }

    .track-list ul {
      list-style: none;
      display: grid;
      gap: 0.4rem;
    }

    .track-list li {
      display: flex;
      justify-content: space-between;
      gap: 1rem;
    }

    .track-list li span:first-child {
      color: var(--text);
    }

    .platforms {
      margin-top: 1rem;
      display: flex;
      flex-wrap: wrap;
      gap: 0.5rem;
      font-size: 0.78rem;
    }

    .platform-pill {
      padding: 0.28rem 0.7rem;
      border-radius: 999px;
      border: 1px solid rgba(255, 255, 255, 0.12);
      color: var(--muted);
      background: rgba(255, 255, 255, 0.02);
    }

    .video-card {
      background: var(--card);
      border-radius: var(--radius-lg);
      border: 1px solid var(--border);
      padding: 1rem;
      box-shadow: var(--shadow-soft);
      font-size: 0.85rem;
      color: var(--muted);
    }

    .video-frame {
      border-radius: 14px;
      overflow: hidden;
      margin-top: 0.6rem;
      aspect-ratio: 16 / 9;
      background: #000;
      border: 1px solid rgba(255, 255, 255, 0.08);
    }

    .video-frame iframe {
      width: 100%;
      height: 100%;
      border: 0;
    }

    /* TOUR DATES */
    #tour {
      background: radial-gradient(circle at top, #151530 0, #050509 70%);
    }

.tour-table table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.9rem;
}

.tour-table table thead {
  background: rgba(0, 0, 0, 0.4);
}

.tour-table table th,
.tour-table table td {
  padding: 0.7rem 0.5rem;
  text-align: left;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.tour-table table th {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--muted);
}

.tour-table table tr:hover {
  background: rgba(255, 255, 255, 0.02);
}

    .tour-table {
      width: 100%;
      border-collapse: collapse;
      font-size: 0.9rem;
    }

    .tour-table thead {
      background: rgba(0, 0, 0, 0.4);
    }

    .tour-table th,
    .tour-table td {
      padding: 0.7rem 0.5rem;
      text-align: left;
      border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    }

    .tour-table th {
      font-size: 0.8rem;
      text-transform: uppercase;
      letter-spacing: 0.16em;
      color: var(--muted);
    }

    .tour-table tr:hover {
      background: rgba(255, 255, 255, 0.02);
    }

    .tour-status {
      font-size: 0.75rem;
      padding: 0.2rem 0.7rem;
      border-radius: 999px;
      border: 1px solid rgba(255, 255, 255, 0.15);
    }

    .tour-status.soon {
      color: #35ff9c;
      border-color: rgba(53, 255, 156, 0.4);
      background: rgba(53, 255, 156, 0.06);
    }

    .tour-status.tickets {
      color: #ffd66c;
      border-color: rgba(255, 214, 108, 0.4);
      background: rgba(255, 214, 108, 0.06);
    }

    .tour-status.past {
      color: var(--muted);
      border-style: dashed;
    }


    /* GALLERY */
    .gallery-grid {
      display: grid;
      grid-template-columns: repeat(4, minmax(0, 1fr));
      gap: 0.6rem;
    }

    @media (max-width: 900px) {
      .gallery-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
      }
    }

    @media (max-width: 600px) {
      .gallery-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
      }
    }

    .gallery-item {
      position: relative;
      border-radius: 14px;
      overflow: hidden;
      background: linear-gradient(120deg, #252543, #050509);
      aspect-ratio: 3 / 4;
      cursor: pointer;
      transform: translateY(0);
      transition: transform var(--transition-fast), box-shadow var(--transition-fast), opacity var(--transition-fast);
    }

    .gallery-item:hover {
      transform: translateY(-4px);
      box-shadow: 0 18px 40px rgba(0, 0, 0, 0.9);
    }

    .gallery-item span {
      position: absolute;
      left: 0.6rem;
      bottom: 0.5rem;
      font-size: 0.7rem;
      text-transform: uppercase;
      letter-spacing: 0.15em;
      color: #f1f1ff;
      text-shadow: 0 0 10px rgba(0, 0, 0, 0.9);
    }

    .gallery-overlay {
      position: absolute;
      inset: 0;
      background: radial-gradient(circle at top, rgba(255, 59, 108, 0.15), transparent 60%);
      mix-blend-mode: screen;
    }

    /* CONTACT */
    .contact-grid {
      display: grid;
      grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr);
      gap: 2.5rem;
    }

    @media (max-width: 900px) {
      .contact-grid {
        grid-template-columns: minmax(0, 1fr);
      }
    }

    .contact-card {
      background: var(--card);
      border-radius: var(--radius-lg);
      border: 1px solid var(--border);
      padding: 1.4rem 1.3rem;
      box-shadow: var(--shadow-soft);
      font-size: 0.9rem;
    }

    .contact-card h3 {
      font-size: 1rem;
      margin-bottom: 0.5rem;
    }

    .contact-card p {
      color: var(--muted);
      margin-bottom: 1.1rem;
    }

    form {
      display: grid;
      gap: 0.9rem;
    }

    label {
      font-size: 0.8rem;
      text-transform: uppercase;
      letter-spacing: 0.2em;
      color: var(--muted);
    }

    input,
    textarea {
      width: 100%;
      padding: 0.7rem 0.9rem;
      border-radius: 12px;
      border: 1px solid rgba(255, 255, 255, 0.15);
      background: rgba(5, 5, 9, 0.9);
      color: var(--text);
      font-size: 0.9rem;
      outline: none;
      transition: border-color var(--transition-fast), box-shadow var(--transition-fast), background var(--transition-fast);
    }

    input:focus,
    textarea:focus {
      border-color: var(--accent);
      box-shadow: 0 0 0 1px rgba(255, 59, 108, 0.4);
      background: rgba(5, 5, 9, 1);
    }

    textarea {
      min-height: 160px;
      resize: vertical;
    }

    .contact-meta {
      font-size: 0.9rem;
      color: var(--muted);
    }

    .contact-meta a {
      color: var(--text);
      text-decoration: underline;
      text-decoration-color: rgba(255, 255, 255, 0.25);
    }

    .contact-meta a:hover {
      text-decoration-color: var(--accent);
    }

    .contact-meta-item {
      margin-bottom: 1rem;
    }

    .social-row {
      display: flex;
      flex-wrap: wrap;
      gap: 0.6rem;
      font-size: 0.8rem;
    }

    .social-pill {
      padding: 0.4rem 0.8rem;
      border-radius: 999px;
      border: 1px solid rgba(255, 255, 255, 0.15);
      background: rgba(255, 255, 255, 0.02);
    }

    /* FOOTER */
    footer {
      border-top: 1px solid rgba(255, 255, 255, 0.06);
      padding: 1.5rem 0 2rem;
      margin-top: 1rem;
      font-size: 0.8rem;
      color: var(--muted);
    }

    .footer-inner {
      display: flex;
      justify-content: space-between;
      gap: 1rem;
      flex-wrap: wrap;
      align-items: center;
    }

    .footer-inner span {
      opacity: 0.9;
    }

    .footer-links {
      display: flex;
      gap: 1.2rem;
      flex-wrap: wrap;
    }

    .footer-links a {
      text-transform: uppercase;
      letter-spacing: 0.18em;
    }
