/* =============== OGÓLNE =============== */
section[class^="radio-"] {
  margin: 40px 0;
  padding: 20px;
  background: #111;
  color: #fff;
  border-radius: 10px;
  box-shadow: 0 0 15px rgba(255,255,255,0.05);
}
section[class^="radio-"] h2 {
  text-align: center;
  margin-bottom: 20px;
  font-size: 1.6rem;
  color: #ff6600;
}

/* =============== RAMÓWKA =============== */
.ramowka-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
}
.ramowka-card {
  background: #1b1b1b;
  border-radius: 10px;
  overflow: hidden;
  transition: transform 0.2s;
}
.ramowka-card:hover { transform: scale(1.03); }
.ramowka-card img {
  width: 100%;
  height: 160px;
  object-fit: cover;
}
.ramowka-info {
  padding: 10px;
  text-align: center;
}
.weekly-schedule {
  background: #fff;
  padding: 20px;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
  margin: 40px auto;
  max-width: 900px;
}

.days-tabs {
  display: flex;
  gap: 18px;
  margin-bottom: 30px;
  flex-wrap: wrap;
}

.day-btn {
  padding: 8px 14px;
  border: none;
  border-radius: 6px;
  background: #eee;
  cursor: pointer;
  font-weight: 600;
}

.day-btn.active {
  background: #ff6600;
  color: #fff;
}

.day-schedule {
  display: none;
}
.day-schedule.active {
  display: block;
}

.show-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 5px solid #e00;
  padding: 10px 0;
  gap: 15px;
}

.show-left {
  display: flex;
  align-items: center;
  gap: 15px;
  flex: 1;
}

.show-img {
  width: 180px;
  height: 80px;
  border-radius: 18px;
  object-fit: cover;
}

.show-info {
  display: flex;
  flex-direction: column;
}

.show-time {
  font-size: 0.9rem;
  color: #666;
  margin-bottom: 4px;
}

.show-title {
  font-size: 1.1rem;
  color: #333;
}

.show-right {
  display: flex;
  align-items: center;
  gap: 10px;
  text-align: right;
}

.dj-img {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  object-fit: cover;
}

.show-dj {
  font-weight: bold;
  color: #444;
}

/* Responsywność */
@media (max-width: 768px) {
  .show-item {
    flex-direction: column;
    align-items: flex-start;
  }
  .show-right {
    justify-content: flex-start;
  }


/* =============================
   TOP 5 LISTA PRZEBOJÓW
============================= */
.top5-section {
    max-width: 700px;
    margin: 30px auto;
    padding: 20px;
    background: #fff;
    border-radius: 8px;
    border: 1px solid #ddd;
    box-shadow: 0 2px 6px rgba(0,0,0,0.05);
}

.top5-section h2 {
    text-align: center;
    margin-bottom: 20px;
    color: #222;
}

.top5-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.top5-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 10px;
    border-bottom: 1px solid #eee;
    background-color: #f9f9f9;
    border-radius: 6px;
    margin-bottom: 8px;
    transition: transform 0.2s ease, background 0.2s;
}

.top5-item:hover {
    background: #f0f8ff;
    transform: scale(1.02);
}

.top5-rank {
    font-size: 22px;
    font-weight: bold;
    color: #007bff;
    min-width: 40px;
    text-align: center;
}

.top5-cover {
    width: 60px;
    height: 60px;
    border-radius: 6px;
    object-fit: cover;
}

.top5-info {
    flex: 1;
}

.top5-title {
    font-size: 16px;
    font-weight: 600;
    color: #333;
}

.top5-votes {
    font-size: 14px;
    color: #555;
}

/* =============================
   RESPONSYWNOŚĆ
============================= */
@media (max-width: 600px) {
    .top5-item {
        flex-direction: column;
        align-items: flex-start;
    }
    .top5-cover {
        width: 100%;
        height: auto;
    }
    .top5-rank {
        align-self: flex-start;
    }



/* =============== SONDA =============== */
.radio-sonda ul {
  list-style: none;
  padding: 0;
}
.radio-sonda li {
  padding: 6px 0;
  border-bottom: 1px solid #333;
}

/* =============== EKIPA =============== */
.ekipa-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
}
.dj-card {
  width: 120px;
  text-align: center;
}
.dj-card img {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 8px;
}

/* =============== TERAZ/NEXT =============== */
.shows {
  display: flex;
  justify-content: space-around;
  gap: 30px;
}
.show {
  flex: 1;
  background: #1b1b1b;
  border-radius: 10px;
  padding: 15px;
  text-align: center;
}
.show h3 {
  color: #ff6600;
}
/* =============================
   NOWY UKŁAD RAMÓWKI (poprawiony)
============================= */

.weekly-schedule {
  background: #fff;
  padding: 25px;
  border-radius: 12px;
  box-shadow: 0 6px 18px rgba(0,0,0,0.08);
  margin: 40px auto;
  max-width: 900px;
}

.weekly-schedule h2 {
  text-align: center;
  margin-bottom: 25px;
  color: #ff6600;
  font-size: 1.8rem;
}

.days-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 25px;
  justify-content: center;
}

.day-btn {
  padding: 8px 14px;
  border: none;
  border-radius: 6px;
  background: #eee;
  cursor: pointer;
  font-weight: 600;
  transition: background 0.3s, color 0.3s;
}

.day-btn.active {
  background: #ff6600;
  color: #fff;
}

.day-btn:hover {
  background: #ffa366;
  color: #fff;
}

.day-schedule {
  display: none;
}

.day-schedule.active {
  display: block;
}

/* Pojedynczy blok audycji */
.show-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #f9f9f9;
  border-radius: 10px;
  padding: 12px 16px;
  margin-bottom: 12px;
  border: 1px solid #e0e0e0;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.show-item:hover {
  transform: scale(1.02);
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

/* Lewa kolumna: zdjęcie audycji + tytuł + godzina */
.show-left {
  display: flex;
  align-items: center;
  gap: 14px;
  flex: 1;
}

.show-img {
  width: 90px;
  height: 90px;
  border-radius: 10px;
  object-fit: cover;
  border: 2px solid #ddd;
}

.show-info {
  display: flex;
  flex-direction: column;
}

.show-time {
  font-size: 0.9rem;
  color: #777;
  margin-bottom: 4px;
}

.show-title {
  font-size: 1.2rem;
  font-weight: 600;
  color: #333;
}

/* Prawa kolumna: DJ + zdjęcie */
.show-right {
  display: flex;
  align-items: center;
  gap: 10px;
  text-align: right;
  min-width: 160px;
  justify-content: flex-end;
}

.show-dj {
  font-weight: 600;
  color: #444;
}

.dj-img {
  width: 65px;
  height: 65px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid #ccc;
}

/* =============================
   RESPONSYWNOŚĆ
============================= */
@media (max-width: 768px) {
  .show-item {
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
  }

  .show-right {
    justify-content: flex-start;
    margin-top: 8px;
  }

  .show-img {
    width: 100%;
    height: auto;
    max-height: 180px;
  }

  .dj-img {
    width: 50px;
    height: 50px;
  }
}
