/* ============================================================
   iRock.sk — style.css
   Reconstructed from archive 2025-09-10
   Colors: #000000 bg, #d90202 accent, #353535 secondary
   ============================================================ */

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

:root {
  --accent: #d90202;
  --accent2: #bb0505;
  --bg: #111111;
  --bg2: #1a1a1a;
  --bg3: #222222;
  --text: #ffffff;
  --text-muted: #aaaaaa;
  --radius: 3px;
}

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: Roboto, Arial, sans-serif;
  font-size: 14px;
  line-height: 1.6;
}

a { color: var(--text); text-decoration: none; }
a:hover { color: var(--accent); }

.container {
  max-width: 1170px;
  margin: 0 auto;
  padding: 0 20px;
}

/* ===== HEADER ===== */
#header { position: sticky; top: 0; z-index: 100; }

.secondary-bar {
  background: #000;
  padding: 6px 0;
  border-bottom: 1px solid #1f1f1f;
}
.secondary-bar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.now-playing {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  color: var(--text-muted);
}
.now-playing .material-icons { font-size: 14px; color: var(--accent); }
.social-bar {
  list-style: none;
  display: flex;
  gap: 12px;
}
.social-bar a { color: var(--text-muted); display: flex; }
.social-bar a:hover { color: var(--text); }

#navbar {
  background: #000;
  border-bottom: 2px solid var(--accent);
}
.nav-inner {
  display: flex;
  align-items: center;
  gap: 30px;
  height: 60px;
}
.logo svg { display: block; }
.nav-menu {
  list-style: none;
  display: flex;
  gap: 0;
  flex: 1;
}
.nav-menu li a {
  display: block;
  padding: 8px 14px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.5px;
  color: var(--text-muted);
  transition: color .2s;
  text-transform: uppercase;
}
.nav-menu li a:hover,
.nav-menu li.active a { color: var(--text); }
.nav-menu li.active a { border-bottom: 2px solid var(--accent); }

.has-sub { position: relative; }
.submenu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background: #111;
  border: 1px solid #333;
  list-style: none;
  min-width: 160px;
  z-index: 200;
}
.submenu li a { padding: 8px 14px; font-size: 12px; display: block; white-space: nowrap; }
.has-sub:hover .submenu { display: block; }

.nav-actions { display: flex; align-items: center; gap: 10px; margin-left: auto; }
.btn-play {
  background: transparent;
  border: 2px solid var(--text-muted);
  color: var(--text);
  width: 36px; height: 36px;
  border-radius: 50%;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: border-color .2s;
}
.btn-play:hover { border-color: var(--accent); }
.btn-play .material-icons { font-size: 20px; }
.btn-player {
  background: linear-gradient(45deg, var(--accent), var(--accent2));
  color: #fff;
  padding: 7px 16px;
  border-radius: var(--radius);
  font-size: 12px;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 6px;
}
.btn-player .material-icons { font-size: 14px; }

/* ===== HERO ===== */
#hero {
  position: relative;
  min-height: 520px;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0;
  background: url('https://www.irock.sk/wp-content/uploads/2021/04/Depositphotos_150805276_xl-2015-1-1170x781.jpg') center/cover no-repeat;
}
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(45deg, rgba(0,0,0,0.15) 0%, #000 100%);
}
.hero-content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 60px 20px;
}
.hero-caption {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 16px;
}
.hero-title {
  font-size: clamp(48px, 8vw, 90px);
  font-weight: 900;
  line-height: 1;
  text-transform: uppercase;
  letter-spacing: -2px;
  margin-bottom: 30px;
}
.hero-divider {
  width: 80px;
  height: 1px;
  background: rgba(255,255,255,0.3);
  margin: 10px 0;
}
.btn-play-hero {
  width: 64px; height: 64px;
  border-radius: 50%;
  background: linear-gradient(45deg, var(--accent), var(--accent2));
  border: none;
  color: #fff;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  font-size: 0;
  transition: transform .2s;
  margin: 10px 0;
}
.btn-play-hero:hover { transform: scale(1.08); }
.btn-play-hero .material-icons { font-size: 36px; }

/* ===== SHOWS SLIDER ===== */
.shows-slider {
  position: relative;
  overflow: hidden;
  background: #000;
}
.slider-track { display: flex; transition: transform .5s ease; }
.slide { min-width: 100%; position: relative; height: 400px; flex-shrink: 0; }
.slide-img {
  position: absolute; inset: 0;
  background-size: cover;
  background-position: center;
  filter: brightness(0.4);
}
.slide-content {
  position: relative; z-index: 2;
  display: flex; align-items: flex-end;
  height: 100%; padding-bottom: 40px;
}
.slide-content h3 { font-size: 28px; font-weight: 700; margin-bottom: 6px; }
.slide-content h5 { font-size: 14px; color: var(--text-muted); margin-bottom: 8px; }
.show-time { font-size: 13px; color: var(--text-muted); display: flex; align-items: center; gap: 5px; }
.show-time .material-icons { font-size: 15px; }

.slider-prev, .slider-next {
  position: absolute; top: 50%; transform: translateY(-50%);
  background: rgba(0,0,0,0.5);
  border: none; color: #fff;
  width: 40px; height: 40px;
  font-size: 28px; line-height: 1;
  cursor: pointer;
  z-index: 10;
}
.slider-prev { left: 10px; }
.slider-next { right: 10px; }
.slider-dots {
  position: absolute; bottom: 12px; left: 50%; transform: translateX(-50%);
  display: flex; gap: 8px; z-index: 10;
}
.dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,0.3);
  cursor: pointer;
}
.dot.active { background: var(--accent); }

/* ===== CAT LABEL ===== */
.cat-label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 6px;
}

/* ===== PROGRAM ===== */
.program-section {
  padding: 60px 0;
  background: var(--bg2);
}
.section-caption {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 8px;
  text-align: center;
}
.program-section h2 {
  font-size: 28px;
  font-weight: 700;
  text-align: center;
  margin-bottom: 30px;
}

.schedule-tabs { margin-top: 20px; }
.tab-list {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
  margin-bottom: 20px;
}
.tab-btn {
  display: block;
  padding: 8px 16px;
  font-size: 12px;
  font-weight: 600;
  background: var(--bg3);
  border: 1px solid #333;
  border-radius: var(--radius);
  cursor: pointer;
  transition: background .2s, color .2s;
}
.tab-btn:hover { background: #333; }
.tab-btn.active {
  background: linear-gradient(45deg, var(--accent), var(--accent2));
  border-color: var(--accent);
  color: #fff;
}

.tab-content { display: none; }
.tab-content.active { display: block; }

.shows-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(230px, 1fr));
  gap: 15px;
}
.show-card {
  background: var(--bg3);
  border-radius: var(--radius);
  overflow: hidden;
  position: relative;
}
.show-card-img {
  height: 180px;
  background-size: cover;
  background-position: center;
  filter: brightness(0.6) saturate(0.7);
}
.show-card-body { padding: 12px; }
.show-card-body h4 {
  font-size: 13px;
  font-weight: 700;
  margin-bottom: 4px;
  line-height: 1.3;
}
.show-time-small {
  font-size: 12px;
  color: var(--text-muted);
}

/* ===== PODCASTS ===== */
.podcasts-section {
  padding: 60px 0;
  background: var(--bg);
}
.podcasts-section.dark { background: var(--bg2); }
.podcasts-section h2 {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 8px;
}
.podcasts-section > .container > p {
  color: var(--text-muted);
  margin-bottom: 30px;
}
.podcast-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 15px;
  margin-top: 20px;
}
.podcast-card {
  background: var(--bg3);
  border-radius: var(--radius);
  overflow: hidden;
}
.podcast-img {
  height: 220px;
  background-size: cover;
  background-position: top center;
  filter: brightness(0.7) saturate(0.8);
}
.podcast-body { padding: 12px; }
.podcast-body h4 {
  font-size: 13px;
  font-weight: 700;
  margin-bottom: 6px;
  line-height: 1.3;
}
.meta-small {
  font-size: 11px;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 4px;
}
.meta-small .material-icons { font-size: 13px; }

/* ===== APPS ===== */
.apps-section {
  padding: 50px 0;
  background: var(--bg3);
  text-align: center;
}
.apps-section h4 {
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 24px;
}
.app-btns { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }
.app-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  background: linear-gradient(45deg, var(--accent), var(--accent2));
  color: #fff;
  border-radius: var(--radius);
  font-size: 13px;
  font-weight: 600;
  transition: opacity .2s;
}
.app-btn:hover { opacity: 0.85; color: #fff; }

/* ===== FOOTER ===== */
#footer { background: #000; }
.footer-main { padding: 50px 0 30px; border-bottom: 1px solid #222; }
.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 40px;
}
.footer-col h5 {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 16px;
}
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 8px; }
.footer-col ul li a { font-size: 13px; color: var(--text-muted); }
.footer-col ul li a:hover { color: var(--text); }

.footer-copy { padding: 16px 0; }
.footer-copy-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
}
.footer-copy p { font-size: 12px; color: var(--text-muted); }
.footer-copy ul {
  list-style: none;
  display: flex;
  gap: 16px;
  align-items: center;
}
.footer-copy ul li a {
  font-size: 12px;
  color: var(--text-muted);
  display: flex;
  align-items: center;
}
.footer-copy ul li a:hover { color: var(--text); }

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
  .nav-menu { display: none; }
  .hero-title { font-size: 48px; }
  .shows-grid { grid-template-columns: 1fr 1fr; }
  .podcast-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
}
@media (max-width: 480px) {
  .shows-grid { grid-template-columns: 1fr; }
  .podcast-grid { grid-template-columns: 1fr; }
}