/* Midcentury Modern CSS - Clean, Sophisticated Design */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;700;900&family=Inter:wght@300;400;500;600&display=swap');

/* CSS Variables for midcentury modern theming */
:root {
  --primary-color: #2c5aa0;
  --secondary-color: #e67e22;
  --accent-color: #f39c12;
  --warm-gray: #8b7355;
  --cream: #f8f4e6;
  --off-white: #fafafa;
  --dark-gray: #2c3e50;
  --text-primary: #2c3e50;
  --text-secondary: #7f8c8d;
  --border-color: #bdc3c7;
  --shadow-light: rgba(0, 0, 0, 0.1);
  --shadow-medium: rgba(0, 0, 0, 0.15);
}

/* Global Styles */
* {
  box-sizing: border-box;
}

body {
  background: var(--off-white);
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  color: var(--text-primary);
  margin: 0;
  padding: 0;
  line-height: 1.7;
  font-weight: 400;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  background: var(--off-white);
}

/* Header */
.hero-header {
  background: linear-gradient(135deg, var(--primary-color) 0%, #34495e 100%);
  color: white;
  padding: 80px 40px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.hero-header::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(circle at 20% 80%, rgba(230, 126, 34, 0.3) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(243, 156, 18, 0.3) 0%, transparent 50%);
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 2;
}

.hero-title {
  font-family: 'Playfair Display', serif;
  font-size: 4rem;
  font-weight: 900;
  margin: 0 0 20px 0;
  letter-spacing: -0.02em;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-subtitle {
  font-family: 'Inter', sans-serif;
  font-size: 1.5rem;
  font-weight: 300;
  margin: 0 0 10px 0;
  opacity: 0.7;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.8);
}

.hero-description {
  font-size: 1.2rem;
  margin: 0 0 30px 0;
  opacity: 0.6;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  color: rgba(255, 255, 255, 0.7);
}

.hero-accent {
  width: 80px;
  height: 4px;
  background: var(--secondary-color);
  margin: 0 auto;
  border-radius: 2px;
}

/* Navigation */
.main-nav {
  background: white;
  border-bottom: 1px solid var(--border-color);
  padding: 0;
  box-shadow: 0 2px 10px var(--shadow-light);
}

.main-nav ul {
  list-style: none;
  display: flex;
  justify-content: center;
  padding: 0;
  margin: 0;
  max-width: 800px;
  margin: 0 auto;
}

.main-nav li {
  margin: 0;
}

.main-nav a {
  text-decoration: none;
  color: var(--text-primary);
  font-weight: 500;
  padding: 25px 30px;
  display: block;
  transition: all 0.3s ease;
  border-bottom: 3px solid transparent;
  position: relative;
}

.main-nav a:hover {
  color: var(--primary-color);
  background: var(--cream);
  border-bottom-color: var(--secondary-color);
}

.main-nav a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 3px;
  background: var(--secondary-color);
  transition: all 0.3s ease;
  transform: translateX(-50%);
}

.main-nav a:hover::after {
  width: 100%;
}

/* Main Content */
.main-content {
  padding: 60px 40px;
}

.content-section {
  margin-bottom: 80px;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.content-section.visible {
  opacity: 1;
  transform: translateY(0);
}

.section-header {
  text-align: center;
  margin-bottom: 50px;
}

.section-header h2 {
  font-family: 'Playfair Display', serif;
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--primary-color);
  margin: 0 0 20px 0;
  letter-spacing: -0.01em;
}

.section-accent {
  width: 60px;
  height: 3px;
  background: var(--secondary-color);
  margin: 0 auto;
  border-radius: 2px;
}

.content-card {
  background: white;
  border-radius: 12px;
  padding: 40px;
  box-shadow: 0 4px 20px var(--shadow-light);
  border: 1px solid var(--border-color);
  position: relative;
  overflow: hidden;
}

.content-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
}

/* Typography */
p {
  margin: 0 0 20px 0;
  font-size: 1.1rem;
  line-height: 1.8;
  color: var(--text-primary);
}

h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--primary-color);
  margin: 0 0 15px 0;
}

/* Lists */
.awards-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.awards-list li {
  padding: 15px 0;
  border-bottom: 1px solid var(--border-color);
  position: relative;
  padding-left: 30px;
}

.awards-list li:last-child {
  border-bottom: none;
}

.awards-list li::before {
  content: '✦';
  position: absolute;
  left: 0;
  color: var(--secondary-color);
  font-size: 1.2rem;
}

/* Testimonials */
.testimonial {
  margin: 30px 0;
  padding: 30px;
  background: var(--cream);
  border-radius: 8px;
  border-left: 4px solid var(--secondary-color);
  position: relative;
}

.testimonial::before {
  content: '"';
  position: absolute;
  top: -10px;
  left: 20px;
  font-size: 4rem;
  color: var(--secondary-color);
  font-family: 'Playfair Display', serif;
  opacity: 0.3;
}

.quote-content {
  font-style: italic;
  margin-bottom: 20px;
  font-size: 1.1rem;
  line-height: 1.8;
}

.quote-author {
  font-weight: 600;
  color: var(--primary-color);
  font-size: 0.95rem;
}

/* Podcast Grid */
.podcast-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.podcast-card {
  background: white;
  border-radius: 12px;
  padding: 25px;
  box-shadow: 0 4px 15px var(--shadow-light);
  border: 1px solid var(--border-color);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.podcast-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.podcast-card:hover::before {
  transform: scaleX(1);
}

.podcast-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px var(--shadow-medium);
}

.podcast-art {
  margin-bottom: 20px;
  text-align: center;
}

.podcast-art img {
  width: 120px;
  height: 120px;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: 0 4px 15px var(--shadow-light);
  transition: transform 0.3s ease;
}

.podcast-card:hover .podcast-art img {
  transform: scale(1.05);
}

.podcast-info h3 {
  margin: 0 0 15px 0;
  line-height: 1.4;
}

.podcast-info h3 a {
  color: var(--primary-color);
  text-decoration: none;
  transition: color 0.3s ease;
}

.podcast-info h3 a:hover {
  color: var(--secondary-color);
}

.podcast-details {
  color: var(--text-secondary);
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.6;
}

/* Back to Top */
.back-to-top {
  text-align: center;
  margin-top: 40px;
}

.back-to-top a {
  color: var(--secondary-color);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.back-to-top a:hover {
  color: var(--primary-color);
}

/* Footer */
.main-footer {
  background: var(--dark-gray);
  color: white;
  text-align: center;
  padding: 40px;
  margin-top: 60px;
}

.footer-content p {
  margin: 0;
  opacity: 0.8;
  font-size: 1rem;
}

/* Links */
a {
  color: var(--primary-color);
  text-decoration: none;
  transition: color 0.3s ease;
}

a:hover {
  color: var(--secondary-color);
}

/* Responsive Design */
@media (max-width: 768px) {
  .hero-title {
    font-size: 2.5rem;
  }
  
  .hero-subtitle {
    font-size: 1.2rem;
  }
  
  .hero-description {
    font-size: 1rem;
  }
  
  .main-nav ul {
    flex-direction: column;
  }
  
  .main-nav a {
    padding: 20px;
    text-align: center;
  }
  
  .main-content {
    padding: 40px 20px;
  }
  
  .content-card {
    padding: 25px;
  }
  
  .podcast-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .section-header h2 {
    font-size: 2rem;
  }
}

@media (max-width: 480px) {
  .hero-header {
    padding: 60px 20px;
  }
  
  .hero-title {
    font-size: 2rem;
  }
  
  .main-content {
    padding: 30px 15px;
  }
  
  .content-card {
    padding: 20px;
  }
  
  .testimonial {
    padding: 20px;
  }
}

/* Smooth scrolling */
html {
  scroll-behavior: smooth;
}

/* Focus states for accessibility */
a:focus,
button:focus {
  outline: 2px solid var(--secondary-color);
  outline-offset: 2px;
}

/* Print styles */
@media print {
  .hero-header {
    background: white !important;
    color: black !important;
  }
  
  .content-card {
    box-shadow: none;
    border: 1px solid #ccc;
  }
  
  .podcast-card {
    break-inside: avoid;
  }
}
