/*
Theme Name: Total Self Care Theme
Theme URI: http://example.com/
Author: You
Description: A custom WordPress theme using a gradient background (#BDAADA, #4F0685, #C69329)
Version: 1.0
License: GNU General Public License v2 or later
Text Domain: total-self-care
*/

/* Basic theme styles */

html, body {
  margin: 0;
  padding: 0;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  color: #222;
  background: linear-gradient(to right, #BDAADA, #4F0685, #C69329);
  min-height: 100vh;
}

a { 
  color: #fff; 
  text-decoration: none; 
}

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

/* Header */
.site-header {
  background: rgba(8,10,13,0.95);
  color: #fff;
  border-bottom: 3px solid #4F0685;
}

.site-branding h1 { 
  margin: 0; 
  font-size: 22px; 
}

.site-nav { 
  display:flex; 
  gap:18px; 
  align-items:center; 
}

/* Content */
.site-main { 
  padding: 48px 0; 
  color: #fff; 
  text-align: center; 
}

.entry-title { 
  font-size: 36px; 
  margin-bottom: 12px; 
}

.entry-content { 
  font-size: 18px; 
  max-width: 900px; 
  margin: 0 auto; 
}

/* Footer */
.site-footer {
  background: rgba(8,10,13,0.95);
  color: #fff;
  border-top: 1px solid #4F0685;
  text-align: center;
  padding: 24px 0;
}

/* Responsive */
@media (max-width: 768px) {
  .site-nav { 
    display: block; 
  }
  .site-branding h1 { 
    font-size: 18px; 
  }
}

/* --------------------------------------------- */
/*  MUSIC GRID SECTION (Updated for all boxes)   */
/* --------------------------------------------- */

.music-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 25px;
  justify-content: center;
  padding: 40px 0;
}

.music-card {
  background: #ffffff;
  padding: 25px;
  border-radius: 16px;
  color: #000;
  width: 100%;
  max-width: 310px;
  box-shadow: 0 4px 14px rgba(0,0,0,0.10);
  text-align: center;

  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.music-card h3 {
  font-size: 18px;
  font-weight: 700;
  margin: 10px 0;
}

.music-card p {
  font-size: 14px;
  line-height: 1.5;
  margin-bottom: 15px;
}

.music-card audio {
  width: 100%;
  margin-top: 10px;
}

/* Optional hover effect */
.music-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 6px 20px rgba(0,0,0,0.15);
  transition: 0.25s ease;
}
