/*
Theme Name: ZambianMusic Promos
Theme URI: https://zambianmusicpromos.co
Developer: Hendrix Lukwesa | Zina Digital
Author URI: https://zinadigital.com
Description: A modern stylish music blog theme for Zambian music promos.
Version: 1.0
License: GNU General Public License v2 or later
Text Domain: zmp-theme
*/

body {
  font-family: 'Poppins', sans-serif;
  background-color: #f8f9fa;
  color: #222;
}

.site-header, .site-footer {
  font-size: 15px;
}

.card {
  border: none;
  border-radius: 12px;
  overflow: hidden;
  transition: transform 0.3s ease;
}
.card:hover {
  transform: translateY(-5px);
}

.nav a {
  color: #fff !important;
  margin: 0 10px;
  font-weight: 600;
}
.nav a:hover {
  color: #25D366 !important; /* WhatsApp green accent */
}


/*single music css code */
.single-music-container {
    max-width: 1000px;
    margin: auto;
    padding: 20px;
}

.music-hero {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    align-items: center;
}

.music-cover img {
    width: 300px;
    border-radius: 15px;
    box-shadow: 0px 4px 15px rgba(0,0,0,0.2);
}

.music-details {
    flex: 1;
}

.music-title {
    font-size: 2rem;
    margin-bottom: 10px;
}

.music-artist {
    font-weight: 500;
    color: #25D366; /* WhatsApp Green as accent */
    margin-bottom: 15px;
}

.music-player {
    width: 100%;
    margin-bottom: 15px;
}

.download-btn {
    display: inline-block;
    padding: 12px 20px;
    background: #25D366;
    color: white;
    border-radius: 30px;
    text-decoration: none;
    font-weight: bold;
    transition: 0.3s;
}
.download-btn:hover {
    background: #1ebe57;
}

.music-description {
    margin: 40px 0;
    line-height: 1.6;
}

.related-music h2 {
    margin-bottom: 20px;
}

.related-grid {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.related-item {
    flex: 1 1 calc(33.3% - 20px);
    text-align: center;
}

.related-item img {
    width: 100%;
    border-radius: 10px;
    margin-bottom: 10px;
    transition: transform 0.3s;
}
.related-item img:hover {
    transform: scale(1.05);
}
.latest-promos {
  padding: 2rem;
  background: #fff;
}

.latest-promos h2 {
  font-size: 1.8rem;
  margin-bottom: 1rem;
  color: #25D366; /* WhatsApp green */
}

.promo-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 1.5rem;
}

.promo-card {
  border: 1px solid #eee;
  border-radius: 12px;
  overflow: hidden;
  background: #fafafa;
  transition: transform 0.2s ease-in-out;
}

.promo-card:hover {
  transform: translateY(-4px);
}

.promo-card img {
  width: 100%;
  height: auto;
  display: block;
}

.promo-card h3 {
  font-size: 1rem;
  padding: 0.8rem;
  margin: 0;
  color: #333;
}
/* Make thumbnails smaller on mobile */
@media (max-width: 576px) {
  .music-section li img {
    width: 45px !important;
    height: 45px !important;
  }
  .music-section li h6 {
    font-size: 14px;
  }
  .nav-tabs .nav-link {
    font-size: 13px;
    padding: 6px 10px;
  }
}
