/*
Theme Name: Bill Mick Podcast
Theme URI: https://billmickpodcast.com
Description: A clean podcast theme with mic and mixer aesthetics
Version: 1.0
Author: Bill Mick
License: GPL v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Text Domain: billmick-podcast
Domain Path: /languages
*/

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
  line-height: 1.6;
  color: #1a1a1a;
  background: #ffffff;
  font-size: 16px;
}

/* Header */
header.site-header {
  background: #0f0f0f;
  padding: 1.5rem 0;
  border-bottom: 3px solid #ff6b35;
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 2px 8px rgba(0,0,0,0.2);
}

.header-content {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 2rem;
}

.site-branding {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.mic-icon {
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, #ff6b35 0%, #ff8c5a 100%);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  flex-shrink: 0;
}

.site-title {
  color: #ffffff;
  font-size: 24px;
  font-weight: 700;
  letter-spacing: -0.5px;
  margin: 0;
}

.site-description {
  color: #ff6b35;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin: 0;
}

/* Navigation */
nav.main-nav {
  display: flex;
  gap: 2rem;
}

nav.main-nav a {
  color: #ffffff;
  text-decoration: none;
  font-weight: 500;
  font-size: 14px;
  padding: 0.5rem 0;
  border-bottom: 2px solid transparent;
  transition: all 0.3s ease;
}

nav.main-nav a:hover,
nav.main-nav a.active {
  color: #ff6b35;
  border-bottom-color: #ff6b35;
}

.header-action {
  background: #ff6b35;
  color: white;
  border: none;
  padding: 0.75rem 1.5rem;
  border-radius: 6px;
  font-weight: 600;
  cursor: pointer;
  font-size: 14px;
  transition: background 0.3s ease;
}

.header-action:hover {
  background: #ff5520;
}

/* Hero Section */
.hero {
  background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
  padding: 4rem 2rem;
  color: white;
  border-bottom: 1px solid #ff6b35;
}

.hero-content {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 3rem;
  align-items: center;
}

.hero-featured {
  position: relative;
}

.featured-image {
  width: 100%;
  max-width: 300px;
  aspect-ratio: 1;
  border-radius: 12px;
  overflow: hidden;
  border: 3px solid #ff6b35;
  box-shadow: 0 8px 32px rgba(255, 107, 53, 0.2);
}

.featured-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-text h1 {
  font-size: 42px;
  font-weight: 700;
  margin-bottom: 1rem;
  line-height: 1.2;
}

.hero-text p {
  font-size: 16px;
  line-height: 1.8;
  color: #e0e0e0;
  margin-bottom: 1.5rem;
}

.hero-meta {
  display: flex;
  gap: 2rem;
  margin-bottom: 1.5rem;
  flex-wrap: wrap;
}

.meta-item {
  display: flex;
  flex-direction: column;
}

.meta-label {
  font-size: 12px;
  text-transform: uppercase;
  color: #ff6b35;
  font-weight: 600;
  letter-spacing: 1px;
}

.meta-value {
  font-size: 18px;
  font-weight: 700;
  color: white;
}

.cta-links {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.cta-button {
  display: inline-block;
  padding: 0.875rem 1.75rem;
  background: #ff6b35;
  color: white;
  text-decoration: none;
  border-radius: 6px;
  font-weight: 600;
  font-size: 14px;
  transition: all 0.3s ease;
  border: 2px solid #ff6b35;
}

.cta-button:hover {
  background: #ff5520;
  border-color: #ff5520;
}

.cta-button.secondary {
  background: transparent;
  color: #ff6b35;
  border-color: #ff6b35;
}

.cta-button.secondary:hover {
  background: #ff6b35;
  color: white;
}

/* Player Embed */
.player-embed {
  background: #1a1a1a;
  border-radius: 8px;
  padding: 1.5rem;
  margin-top: 1.5rem;
  border: 2px solid #ff6b35;
}

.player-embed iframe {
  width: 100%;
  border: none;
  border-radius: 6px;
}

/* Main Content */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

main {
  padding: 4rem 2rem;
}

/* Section Title */
.section-title {
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: #1a1a1a;
  position: relative;
  padding-bottom: 1rem;
  display: inline-block;
}

.section-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 60px;
  height: 3px;
  background: #ff6b35;
}

/* Episode Grid */
.episodes-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.episode-card {
  background: white;
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid #e5e5e5;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  height: 100%;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

.episode-card:hover {
  border-color: #ff6b35;
  box-shadow: 0 8px 24px rgba(255, 107, 53, 0.15);
  transform: translateY(-4px);
}

.episode-image {
  width: 100%;
  aspect-ratio: 16 / 9;
  background: linear-gradient(135deg, #f0f0f0 0%, #e0e0e0 100%);
  overflow: hidden;
}

.episode-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.episode-content {
  padding: 1.5rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.episode-date {
  font-size: 12px;
  color: #ff6b35;
  text-transform: uppercase;
  font-weight: 600;
  letter-spacing: 0.5px;
  margin-bottom: 0.5rem;
}

.episode-title {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 0.75rem;
  line-height: 1.3;
  color: #1a1a1a;
}

.episode-description {
  font-size: 14px;
  color: #666;
  line-height: 1.6;
  margin-bottom: 1rem;
  flex: 1;
}

.episode-meta {
  display: flex;
  gap: 1rem;
  margin-bottom: 1rem;
  font-size: 12px;
  color: #999;
}

.episode-actions {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.episode-link {
  flex: 1;
  min-width: 120px;
}

.episode-link a {
  display: block;
  padding: 0.625rem 1rem;
  background: #f5f5f5;
  color: #1a1a1a;
  text-decoration: none;
  border-radius: 4px;
  font-size: 13px;
  font-weight: 600;
  text-align: center;
  transition: all 0.3s ease;
  border: 1px solid #e0e0e0;
}

.episode-link a:hover {
  background: #ff6b35;
  color: white;
  border-color: #ff6b35;
}

/* Footer */
footer.site-footer {
  background: #0f0f0f;
  color: #e0e0e0;
  padding: 3rem 2rem 1rem;
  border-top: 3px solid #ff6b35;
  margin-top: 4rem;
}

.footer-content {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  margin-bottom: 2rem;
}

.footer-section h3 {
  color: white;
  font-size: 16px;
  margin-bottom: 1rem;
}

.footer-section a {
  color: #e0e0e0;
  text-decoration: none;
  font-size: 14px;
  line-height: 1.8;
  transition: color 0.3s ease;
}

.footer-section a:hover {
  color: #ff6b35;
}

.footer-bottom {
  border-top: 1px solid #333;
  padding-top: 1.5rem;
  text-align: center;
  font-size: 14px;
  color: #999;
}

/* Responsive */
@media (max-width: 768px) {
  .header-content {
    flex-wrap: wrap;
    gap: 1rem;
  }

  nav.main-nav {
    width: 100%;
    flex-wrap: wrap;
    gap: 1rem;
    padding-top: 1rem;
    border-top: 1px solid #333;
    order: 3;
  }

  .hero-content {
    grid-template-columns: 1fr;
  }

  .hero-text h1 {
    font-size: 28px;
  }

  .episodes-grid {
    grid-template-columns: 1fr;
  }

  .site-title {
    font-size: 20px;
  }

  main {
    padding: 2rem 1rem;
  }

  .hero {
    padding: 2rem 1rem;
  }
}

@media (max-width: 480px) {
  .header-content {
    padding: 0 1rem;
  }

  .hero-meta {
    gap: 1rem;
  }

  .cta-links {
    flex-direction: column;
  }

  .cta-button {
    width: 100%;
    text-align: center;
  }
}
