/*
 Theme Name:   inspiro-blk-child
 Theme URI:    http://blackdayjuly.com/inspiro-blk-child
 Description:  Child theme for BDay Insp
 Author:       Cross / Black Day In July
 Template:     wpzoom-inspiro-pro
 Version:      1.0.0
*/

/* =======================
   Artist + Merch Layouts
   ======================= */

/* Wrapper */
.artists-wrapper { max-width: 1200px; margin: 0 auto; padding: 40px 20px; }

/* Header */
.artists-header { text-align: center; margin-bottom: 30px; }
.artists-header h1 { font-size: 2.5em; margin-bottom: 20px; }

/* Desktop nav */
.desktop-nav { margin-bottom: 20px; }
.desktop-nav a {
  margin: 0 10px;
  font-size: 1.1em;
  text-decoration: none;
  color: #666;
  padding-bottom: 4px;
  border-bottom: 2px solid transparent;
}
.desktop-nav a.active {
  color: #000;
  border-color: #000;
}

/* Mobile nav */
.mobile-nav { display: none; margin: 20px 0; }
.mobile-nav select {
  font-size: 1em;
  padding: 10px;
  border: 1px solid #ccc;
}

/* Grid */
.artists-grid { 
  display: none;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 30px;
}
.artists-grid.active { display: grid; }

/* Artist Cards */
.artist-card { text-align: center; }
.artist-card a {
  text-decoration: none;
  color: inherit;
  display: block;
  transition: transform 0.2s ease;
}
.artist-card a:hover { transform: translateY(-5px); }
.artist-card img {
  width: 100%;
  height: auto;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid #eee;
}
.artist-card h3 { margin-top: 12px; font-size: 1.1em; }
.artist-card p { font-size: 0.9em; color: #555; margin-top: 4px; }

/* Responsive */
@media (max-width: 768px) {
  .desktop-nav { display: none; }
  .mobile-nav { display: block; }
}

/* =======================
   Artist Profile Pages
   ======================= */

.artist-page {
  max-width: 1000px;
  margin: 0 auto;
  padding: 40px 20px;
  font-family: Arial, sans-serif;
  color: #222;
  line-height: 1.6;
}

.artist-hero img {
  width: 100%;
  height: auto;
  object-fit: cover;
  border-radius: 4px;
  margin-bottom: 40px;
}

/* Bio + Links row */
.artist-info-row {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  margin-bottom: 50px;
}
.artist-bio { flex: 2; min-width: 280px; }
.artist-bio h1 { font-size: 2.5em; margin-bottom: 20px; }
.artist-links { flex: 1; min-width: 200px; }
.artist-links h2 { font-size: 1.8em; margin-bottom: 15px; }
.artist-links ul { list-style: none; padding: 0; }
.artist-links ul li { margin-bottom: 10px; }
.artist-links ul a {
  color: #0073aa;
  text-decoration: none;
}
.artist-links ul a:hover { text-decoration: underline; }

/* Sections */
.artist-section { margin-bottom: 60px; }
.artist-section h2 { font-size: 2em; margin-bottom: 20px; }

/* Latest Release */
.artist-latest-release .release-item {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}
.artist-latest-release img {
  width: 200px;
  height: 200px;
  object-fit: cover;
}
.release-details {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.release-details a {
  font-size: 1.3em;
  text-decoration: none;
  color: #222;
}
.release-details a:hover { text-decoration: underline; }

/* Releases list */
.artist-releases ul { list-style: none; padding: 0; }
.artist-releases ul li { margin-bottom: 10px; }

/* Merch */
.artist-merch .merch-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
  gap: 30px;
}
.merch-item img {
  width: 100%;
  height: auto;
  object-fit: cover;
  border: 1px solid #ddd;
  border-radius: 4px;
}
.merch-item p {
  margin-top: 10px;
  font-size: 1em;
  text-align: center;
}

/* Tour */
.artist-tour ul { list-style: none; padding: 0; }
.artist-tour ul li {
  margin-bottom: 12px;
  font-size: 1.1em;
}

/* Responsive */
@media (max-width: 768px) {
  .artist-info-row { flex-direction: column; }
  .artist-latest-release .release-item {
    flex-direction: column;
    align-items: center;
  }
  .release-details { align-items: center; }
}

/* =======================
   Sub-tabs (Apparel + Music)
   ======================= */

.sub-nav {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  margin: 20px 0 30px;
  border-bottom: 1px solid #e5e5e5;
}

.sub-nav a {
  margin: 0 15px;
  padding: 10px 0;
  font-size: 1.1em;
  color: #555;
  text-decoration: none;
  border-bottom: 2px solid transparent;
  transition: all 0.2s ease;
}

.sub-nav a:hover { color: #000; }

.sub-nav a.active {
  color: #000;
  border-bottom: 2px solid #000;
}

/* Sub-grid containers */
.sub-grid { display: none; }
.sub-grid.active { display: block; }

/* Mobile tweaks */
@media (max-width: 768px) {
  .sub-nav {
    justify-content: flex-start;
    overflow-x: auto;
    white-space: nowrap;
    -webkit-overflow-scrolling: touch;
    border-bottom: 1px solid #ddd;
    padding-bottom: 5px;
  }
  .sub-nav a {
    margin: 0 10px;
    font-size: 1em;
  }
}
/* ===== Artists Hub Tabs ===== */

/* Desktop Nav */
.desktop-nav {
  display: flex;
  justify-content: center;
  margin-bottom: 30px;
  border-bottom: 1px solid #ddd;
  padding-bottom: 10px;
}
.desktop-nav a {
  margin: 0 15px;
  font-size: 1.1em;
  text-decoration: none;
  color: #666;
  padding-bottom: 6px;
  border-bottom: 2px solid transparent;
  transition: all 0.2s ease;
}
.desktop-nav a:hover {
  color: #000;
}
.desktop-nav a.active {
  color: #000;
  border-color: #000;
}

/* Mobile Nav */
.mobile-nav {
  display: none;
  margin-bottom: 20px;
  text-align: center;
}
.mobile-nav select {
  font-size: 1em;
  padding: 8px 12px;
  border: 1px solid #ccc;
  border-radius: 4px;
}

/* Artists Grid */
.artists-grid {
  display: none;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 30px;
}
.artists-grid.active {
  display: grid;
}

/* Artist Card */
.artist-card {
  text-align: center;
}
.artist-card a {
  text-decoration: none;
  color: inherit;
  display: block;
  transition: transform 0.2s ease;
}
.artist-card a:hover {
  transform: translateY(-5px);
}
.artist-card img {
  width: 100%;
  height: auto;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid #eee;
}
.artist-card h3 {
  margin-top: 12px;
  font-size: 1.1em;
  font-weight: 600;
}

/* Responsive */
@media (max-width: 768px) {
  .desktop-nav {
    display: none;
  }
  .mobile-nav {
    display: block;
  }
}
/* ===== Artists Section Headers ===== */
.artists-header {
  text-align: center;
  margin-bottom: 40px;
}
.artists-header h1 {
  font-size: 2.4em;
  font-weight: 700;
  margin: 0;
  color: #111;
  letter-spacing: 1px;
}
.artists-header p {
  font-size: 1.1em;
  color: #666;
  margin-top: 10px;
}
/* ===== Artists Hub Tabs ===== */

/* Desktop Nav */
.desktop-nav {
  display: flex;
  justify-content: center;
  margin: 0 auto 30px auto;
  border-bottom: 1px solid #ddd;
  padding-bottom: 10px;
}
.desktop-nav .tab-link {
  margin: 0 15px;
  font-size: 1.1em;
  text-decoration: none;
  color: #666;
  padding-bottom: 6px;
  border-bottom: 2px solid transparent;
  transition: all 0.2s ease;
}
.desktop-nav .tab-link:hover {
  color: #000;
}
.desktop-nav .tab-link.active {
  color: #000;
  border-color: #000; /* underline for active tab */
}

/* Mobile Nav */
.mobile-nav {
  display: none;
  margin-bottom: 20px;
  text-align: center;
}
.mobile-nav select {
  font-size: 1em;
  padding: 8px 12px;
  border: 1px solid #ccc;
  border-radius: 4px;
}

/* Artists Grid */
.artists-grid {
  display: none;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 30px;
}
.artists-grid.active {
  display: grid;
}

/* Artist Card */
.artist-card {
  text-align: center;
}
.artist-card a {
  text-decoration: none;
  color: inherit;
  display: block;
  transition: transform 0.2s ease;
}
.artist-card a:hover {
  transform: translateY(-5px);
}
.artist-card img {
  width: 100%;
  height: auto;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid #eee;
}
.artist-card h3 {
  margin-top: 12px;
  font-size: 1.1em;
  font-weight: 600;
}

/* Responsive (switch to dropdown on mobile) */
@media (max-width: 768px) {
  .desktop-nav {
    display: none;
  }
  .mobile-nav {
    display: block;
  }
}
/* ===== Past Artists (grayscale look) ===== */
#past-artists .artist-card img {
  filter: grayscale(100%);
  opacity: 0.8;
  transition: all 0.3s ease;
}
#past-artists .artist-card img:hover {
  filter: grayscale(0%);
  opacity: 1;
}

/* ===== Project Guests (gold highlight) ===== */
#project-guests .artist-card h3 {
  color: #c7a008; /* gold-ish text */
  font-weight: 700;
}
#project-guests .artist-card img {
  border: 2px solid #c7a008; /* gold border around images */
}

/* ===== Artists Hub Styling ===== */

/* Wrapper spacing */
.artists-wrapper {
  padding: 30px;
}

/* Header */
.artists-header {
  text-align: center;
  margin-bottom: 30px;
}
.artists-header h1 {
  font-size: 2.2em;
  margin-bottom: 10px;
}
.artists-header p {
  font-size: 1.1em;
  color: #555;
}

/* Section titles */
.artists-section-title {
  font-size: 1.8em;
  margin: 25px 0;
  text-align: center;
  font-weight: bold;
  border-bottom: 2px solid #000;
  display: inline-block;
  padding-bottom: 6px;
  animation: fadeIn 0.6s ease both;
}

/* Tabs - desktop */
.desktop-nav {
  text-align: center;
  margin-bottom: 20px;
}
.desktop-nav a {
  margin: 0 12px;
  font-size: 1.1em;
  text-decoration: none;
  color: #666;
  padding-bottom: 4px;
  border-bottom: 2px solid transparent;
  transition: all 0.3s ease;
}
.desktop-nav a.active {
  color: #000;
  font-weight: bold;
  border-color: #000;
  box-shadow: 0 2px 0 #000;
}
.desktop-nav a:hover {
  color: #000;
  border-color: #aaa;
}

/* Mobile nav */
.mobile-nav {
  display: none;
  margin-bottom: 20px;
  text-align: center;
}
.mobile-nav select {
  padding: 8px 12px;
  font-size: 1em;
}

/* Grid layout */
.artists-grid {
  display: none;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 30px;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}
.artists-grid.active {
  display: grid;
  opacity: 1;
  transform: translateY(0);
}

/* Artist cards */
.artist-card {
  text-align: center;
  transition: all 0.3s ease;
}
.artist-card a {
  text-decoration: none;
  color: inherit;
  display: block;
}
.artist-card img {
  width: 100%;
  height: auto;
  border-radius: 50%;
  border: 2px solid #eee;
  transition: all 0.3s ease;
}
.artist-card h3 {
  margin-top: 12px;
  font-size: 1.1em;
  transition: all 0.3s ease;
}
.artist-card:hover h3 {
  text-decoration: underline;
}

/* Hover effects: Current Artists */
#current-artists .artist-card:hover img {
  transform: scale(1.05);
  box-shadow: 0 4px 15px rgba(0,0,0,0.15);
}
#current-artists .artist-card:hover h3 {
  color: #000;
  font-weight: bold;
}

/* Past Artists - grayscale */
#past-artists .artist-card img {
  filter: grayscale(100%);
  opacity: 0.8;
}
#past-artists .artist-card img:hover {
  filter: grayscale(0%);
  opacity: 1;
  transform: scale(1.03);
}

/* Project Guests - gold */
#project-guests .artist-card img {
  border: 2px solid #c7a008;
}
#project-guests .artist-card h3 {
  color: #c7a008;
  font-weight: 700;
}
#project-guests .artist-card:hover img {
  transform: scale(1.05);
  box-shadow: 0 4px 15px rgba(199,160,8,0.3);
}

/* Featured Artist pulse */
.artist-card.featured img {
  border: 3px solid #ff0000;
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(255,0,0,0.4); }
  70% { box-shadow: 0 0 0 15px rgba(255,0,0,0); }
  100% { box-shadow: 0 0 0 0 rgba(255,0,0,0); }
}

/* Accessibility */
.artist-card a:focus {
  outline: 3px solid #0073aa;
  outline-offset: 5px;
}

/* Responsive */
@media (max-width: 768px) {
  .desktop-nav { display: none; }
  .mobile-nav { display: block; }
  .artist-card img {
    max-width: 250px;
    margin: 0 auto;
  }
  .artists-wrapper {
    padding: 20px;
  }
}

/* Fade-in */
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

