/* =========================
   RESET I PODSTAWY
========================= */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Arial', sans-serif;
    line-height: 1.5;
    background-color: #f4f4f4;
    color: #222;
}

a {
    text-decoration: none;
    color: inherit;
}

/* =========================
   TOP BAR
========================= */
.top-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #1a1a1a;
    color: #fff;
    padding: 8px 20px;
    font-size: 0.9rem;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.top-bar .btn-small {
    background-color: #ff6600;
    border: none;
    padding: 6px 12px;
    cursor: pointer;
    color: #fff;
    border-radius: 4px;
    font-size: 0.85rem;
    transition: background 0.3s;
}

.top-bar .btn-small:hover {
    background-color: #e65c00;
}

/* =========================
   MENU BAR
========================= */
.menu-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #222;
    color: #fff;
    padding: 15px 30px; /* większy nagłówek */
    position: sticky;
    z-index: 999;
    box-shadow: 0 4px 6px rgba(0,0,0,0.3);
}

.menu-bar .logo img {
    height: 75px; /* większe logo */
}

.menu-bar nav ul {
    list-style: none;
    display: flex;
    gap: 25px;
}

.menu-bar nav ul li a {
    color: #fff;
    font-weight: bold;
    font-size: 1rem;
    transition: color 0.3s;
}

.menu-bar nav ul li a:hover {
    color: #ff6600;
}

.menu-bar .player-btn button {
    background: #ff6600;
    border: none;
    padding: 10px 18px;
    color: #fff;
    cursor: pointer;
    border-radius: 5px;
    font-size: 1rem;
    transition: background 0.3s;
}

.menu-bar .player-btn button:hover {
    background: #e65c00;
}

/* =========================
   MAIN
========================= */
main {
    padding: 25px 20px;
}

/* =========================
   NEWS CAROUSEL
========================= */
.show-slider {
  position: relative;
  max-width: 1000px;
  margin: 40px auto;
  padding: 0 20px;
  text-align: center;
}

.show-slider h2 {
  margin-bottom: 20px;
  color: #ff6600;
  font-size: 1.8rem;
}

.slider-container {
  position: relative;
  overflow: hidden;
  border-radius: 12px;
  box-shadow: 0 4px 16px rgba(0,0,0,0.2);
}

.slider-wrapper {
  display: flex;
  transition: transform 0.6s ease-in-out;
}

.slide {
  min-width: 100%;
  position: relative;
}

.slide img {
  width: 100%;
  height: 450px;
  object-fit: cover;
  display: block;
}

.slide-info {
  position: absolute;
  bottom: 20px;
  left: 20px;
  background: rgba(0,0,0,0.6);
  color: #fff;
  padding: 10px 15px;
  border-radius: 8px;
  text-align: left;
}

.slider-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0,0,0,0.5);
  border: none;
  color: white;
  font-size: 2rem;
  padding: 8px 14px;
  cursor: pointer;
  border-radius: 50%;
  transition: background 0.3s;
}

.slider-btn:hover {
  background: rgba(0,0,0,0.8);
}

.slider-btn.prev {
  left: 15px;
}

.slider-btn.next {
  right: 15px;
}

/* 📱 Responsywność */
@media (max-width: 768px) {
  .slide img {
    height: 250px;
  }
  .slide-info {
    font-size: 0.9rem;
    padding: 6px 10px;
  }
}


/* =========================
   RADIO SHOWS
========================= */
.shows-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-top: 25px;
}

.show-card {
    background: #fff;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.15);
    text-align: center;
}

.show-card .dj-photo {
    width: 120px;
    height: 120px;
    object-fit: cover;
    border-radius: 50%;
    margin-bottom: 12px;
}

.show-card h3 {
    margin-bottom: 10px;
    font-size: 1.1rem;
}

.show-info strong {
    display: block;
    margin-bottom: 6px;
}

/* =========================
   TOP 5 PRZEBOJÓW
========================= */
.top5 {
  margin-top: 35px;
}

.top5 h2 {
  margin-bottom: 20px;
}

.top5-item {
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 2px 4px rgba(0,0,0,0.1);
  display: flex;
  align-items: center;
  padding: 15px 20px;
  margin-bottom: 12px;
  border-left: 4px solid #ff6600;
  transition: all 0.25s ease;
  position: relative;
}

.top5-item:hover {
  transform: translateY(-3px);
  box-shadow: 0 4px 10px rgba(0,0,0,0.2);
}

/* delikatna linia oddzielająca */
.top5-item::after {
  content: "";
  position: absolute;
  bottom: -6px;
  left: 10%;
  width: 80%;
  height: 1px;
  background: rgba(0,0,0,0.08);
}

.top5-left {
  display: flex;
  align-items: center;
  gap: 15px;
  flex-shrink: 0;
}

.top5-item .pos {
  font-weight: bold;
  font-size: 1.8rem;
  color: #ff6600;
  width: 35px;
  text-align: center;
}

.top5-item .cover-img {
  width: 100px;
  height: 100px;
  object-fit: cover;
  border-radius: 8px;
  border: 2px solid #f4f4f4;
}

.top5-right {
  margin-left: 20px;
  flex-grow: 1;
}

.top5-item .song-info {
  font-size: 1rem;
  margin-bottom: 6px;
  color: #222;
}

.top5-item .song-info strong {
  font-size: 1.1rem;
  color: #000;
}

.top5-item .links a {
  color: #ff6600;
  font-weight: bold;
  margin-right: 10px;
  font-size: 0.9rem;
  transition: color 0.3s;
}

.top5-item .links a:hover {
  color: #e65c00;
}

/* --- RESPONSYWNOŚĆ --- */
@media (max-width: 768px) {
  .top5-item {
    flex-direction: column;
    text-align: center;
  }

  .top5-left {
    flex-direction: column;
    margin-bottom: 10px;
  }

  .top5-item .cover-img {
    width: 140px;
    height: 140px;
  }

  .top5-right {
    margin-left: 0;
  }

  .top5-item::after {
    left: 5%;
    width: 90%;
  }
}


/* --- RESPONSYWNOŚĆ --- */
@media (max-width: 768px) {
  .top5-item {
    flex-direction: column;
    text-align: center;
  }

  .top5-left {
    flex-direction: column;
    margin-bottom: 10px;
  }

  .top5-item .cover-img {
    width: 150px;
    height: 150px;
  }

  .top5-right {
    margin-left: 0;
  }
}


/* =========================
   NEWSROOM
========================= */
.news-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
    margin-top: 25px;
}

.news-card {
    background: #fff;
    padding: 15px;
    border-radius: 8px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.15);
}

.news-card h4 {
    margin-bottom: 8px;
    font-size: 1rem;
}

.news-card p {
    font-size: 0.9rem;
}

/* =========================
   MULTIMEDIA
========================= */
.media-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 15px;
    margin-top: 20px;
}

.media-item iframe {
    width: 100%;
    height: 180px;
}

/* =========================
   TEAM
========================= */
.team-carousel {
    display: flex;
    overflow-x: auto;
    gap: 12px;
    padding: 15px 0;
}

.team-carousel .carousel-item {
    min-width: 150px;
    background: #fff;
    border-radius: 8px;
    text-align: center;
    padding: 12px;
    flex-shrink: 0;
    box-shadow: 0 2px 6px rgba(0,0,0,0.15);
}

.team-carousel img {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 6px;
}

.team-carousel p {
    font-size: 0.9rem;
}

/* =========================
   FOOTER
========================= */
footer {
    background: #222;
    color: #fff;
    display: flex;
    justify-content: space-between;
    padding: 15px 20px;
    font-size: 0.9rem;
    flex-wrap: wrap;
}

footer a {
    color: #ff6600;
    margin-left: 5px;
}

/* =========================
   RESPONSYWNOŚĆ
========================= */
@media (max-width: 768px) {
    .menu-bar {
        flex-direction: column;
        align-items: flex-start;
        padding: 12px 20px;
    }

    .menu-bar nav ul {
        flex-direction: column;
        gap: 10px;
        margin-top: 10px;
    }

    .menu-bar .player-btn {
        margin-top: 10px;
    }

    .shows-grid, .top5-grid, .news-grid, .media-grid {
        grid-template-columns: 1fr;
    }

    .news-carousel .show-carousel,
    .team-carousel {
        overflow-x: auto;
    }

    .top-bar {
        flex-direction: column;
        align-items: flex-start;
        padding: 10px 15px;
    }
/* --- AUDYCJE NA ANTENIE --- */
.radio-shows {
  text-align: center;
  margin: 40px auto;
  padding: 0 15px;
}

.shows-grid {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 20px;
}

.show-card {
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  width: 350px;
  max-width: 100%;
  padding: 15px;
  text-align: center;
  transition: transform 0.2s ease;
}

.show-card:hover {
  transform: translateY(-4px);
}

.show-card img.dj-photo {
  width: 100%;
  height: auto;
  border-radius: 8px;
  margin-bottom: 10px;
}

.show-info {
  font-size: 15px;
  line-height: 1.4;
}

/* --- RESPONSYWNOŚĆ --- */
@media (max-width: 768px) {
  .shows-grid {
    flex-direction: column;
    align-items: center;
  }

  .show-card {
    width: 90%;
  }
}

@media (max-width: 480px) {
  .show-card {
    padding: 10px;
  }
  .show-info strong {
    font-size: 16px;
  }
}

}
