/* ============================================
   social.css — Social Media Page Styles
   Yihuchun Tea International Website
   ============================================ */

/* Hero */
.social-hero {
  padding: 160px 0 80px;
  background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
  color: #fff;
  text-align: center;
}

.social-hero-content {
  max-width: 720px;
  margin: 0 auto;
}

.social-hero-content h1 {
  font-family: 'Cormorant Garamond', 'Cormorant Garamond Fallback', Georgia, serif;
  font-size: 3.2rem;
  font-weight: 700;
  margin: 16px 0 20px;
  line-height: 1.2;
  color: #e8d5a3;
}

.social-hero-desc {
  font-size: 1.1rem;
  line-height: 1.7;
  color: rgba(255,255,255,0.8);
  margin-bottom: 32px;
}

.social-hero-stats {
  display: flex;
  justify-content: center;
  gap: 48px;
  margin-bottom: 36px;
}

.social-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.social-stat-num {
  font-family: 'Cormorant Garamond', 'Cormorant Garamond Fallback', Georgia, serif;
  font-size: 2.6rem;
  font-weight: 700;
  color: #e8d5a3;
  line-height: 1;
}

.social-stat-label {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgba(255,255,255,0.6);
  margin-top: 4px;
}

/* Channel Intro */
.channel-intro {
  display: flex;
  gap: 32px;
  align-items: flex-start;
  max-width: 800px;
  margin: 0 auto;
}

.channel-avatar {
  flex-shrink: 0;
}

.channel-avatar-icon {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: linear-gradient(135deg, #2d5016, #4a7c2e);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.4rem;
  box-shadow: 0 4px 20px rgba(45,80,22,0.25);
}

.channel-info h2 {
  font-family: 'Cormorant Garamond', 'Cormorant Garamond Fallback', Georgia, serif;
  font-size: 1.8rem;
  color: #2d5016;
  margin-bottom: 4px;
}

.channel-handle {
  font-size: 0.9rem;
  color: #888;
  margin-bottom: 12px;
  font-family: monospace;
}

.channel-bio {
  font-size: 1rem;
  line-height: 1.8;
  color: #444;
}

/* Theme Grid */
.theme-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 24px;
  margin-top: 40px;
}

.theme-card {
  background: #fff;
  border-radius: 12px;
  padding: 28px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.theme-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(0,0,0,0.1);
}

.theme-icon {
  font-size: 2rem;
  margin-bottom: 12px;
}

.theme-card h3 {
  font-family: 'Cormorant Garamond', 'Cormorant Garamond Fallback', Georgia, serif;
  font-size: 1.3rem;
  color: #2d5016;
  margin-bottom: 8px;
}

.theme-card p {
  font-size: 0.95rem;
  line-height: 1.7;
  color: #666;
}

/* Popular Grid */
.popular-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 20px;
  margin-top: 40px;
}

.popular-item {
  background: #fafaf7;
  border-left: 3px solid #2d5016;
  padding: 20px 24px;
  border-radius: 0 8px 8px 0;
  transition: background 0.2s ease;
}

.popular-item:hover {
  background: #f0f5ec;
}

.popular-count {
  display: inline-block;
  font-size: 0.85rem;
  font-weight: 600;
  color: #e74c3c;
  margin-bottom: 8px;
}

.popular-item h4 {
  font-size: 1.1rem;
  font-weight: 600;
  color: #333;
  margin-bottom: 6px;
  line-height: 1.4;
}

.popular-item p {
  font-size: 0.9rem;
  color: #666;
  line-height: 1.5;
  margin-bottom: 8px;
}

.popular-tag {
  font-size: 0.78rem;
  color: #8b9dc3;
}

/* Philosophy */
.philosophy-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
  gap: 24px;
  margin-top: 40px;
}

.philosophy-quote {
  background: rgba(255,255,255,0.06);
  border-left: 3px solid #e8d5a3;
  padding: 24px 28px;
  border-radius: 0 8px 8px 0;
  color: rgba(255,255,255,0.9);
  font-size: 1.05rem;
  line-height: 1.7;
  font-style: italic;
  margin: 0;
  font-family: 'Cormorant Garamond', 'Cormorant Garamond Fallback', Georgia, serif;
}

/* Tags Cloud */
.tags-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 40px;
  justify-content: center;
}

.tag {
  display: inline-block;
  padding: 6px 16px;
  border-radius: 20px;
  background: #f0f5ec;
  color: #2d5016;
  font-size: 0.85rem;
  white-space: nowrap;
  transition: background 0.2s ease;
}

.tag:hover {
  background: #d4e4c8;
}

.tag-xl { font-size: 1.15rem; padding: 8px 20px; background: #2d5016; color: #fff; }
.tag-l { font-size: 1.05rem; padding: 7px 18px; background: #4a7c2e; color: #fff; }
.tag-m { font-size: 0.9rem; }
.tag-s { font-size: 0.8rem; }

/* Responsive */
@media (max-width: 768px) {
  .social-hero {
    padding: 120px 0 60px;
  }
  
  .social-hero-content h1 {
    font-size: 2.2rem;
  }
  
  .social-hero-stats {
    gap: 24px;
  }
  
  .social-stat-num {
    font-size: 2rem;
  }
  
  .channel-intro {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  
  .theme-grid,
  .popular-grid,
  .philosophy-grid {
    grid-template-columns: 1fr;
  }
  
  .tags-cloud {
    gap: 8px;
  }
  
  .tag-xl { font-size: 1rem; }
  .tag-l { font-size: 0.9rem; }
}