/* 
 * Therammunity Discovery CSS - Emotional Stories
 * Brand Colors: #1DB954 (Primary Green), #121212 (Dark), #FFFFFF (Light)
 */

:root {
  --primary-green: #1DB954;
  --dark-bg: #121212;
  --dark-surface: #1e1e1e;
  --text-light: #ffffff;
  --text-gray: #b3b3b3;
  --accent-hover: #1ed760;
  --border-color: #282828;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  background-color: var(--dark-bg);
  color: var(--text-light);
  line-height: 1.7;
  padding: 20px;
}

header.hero {
  background: linear-gradient(135deg, var(--primary-green) 0%, #159944 100%);
  padding: 40px 30px;
  border-radius: 12px;
  margin-bottom: 40px;
  box-shadow: 0 8px 24px rgba(29, 185, 84, 0.3);
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

header.hero h1 {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 16px;
  color: var(--text-light);
  line-height: 1.3;
}

header.hero p.summary {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.95);
  font-weight: 400;
  font-style: italic;
}

.article {
  max-width: 900px;
  margin: 0 auto;
}

section {
  background-color: var(--dark-surface);
  padding: 30px;
  margin-bottom: 30px;
  border-radius: 10px;
  border: 1px solid var(--border-color);
}

h2 {
  font-size: 1.6rem;
  color: var(--primary-green);
  margin-bottom: 16px;
  font-weight: 600;
}

h3 {
  font-size: 1.3rem;
  color: var(--primary-green);
  margin-bottom: 12px;
  font-weight: 600;
}

p {
  margin-bottom: 16px;
  color: var(--text-gray);
  font-size: 1.05rem;
  line-height: 1.8;
}

ul {
  margin-left: 24px;
  margin-bottom: 20px;
  color: var(--text-gray);
}

ul li {
  margin-bottom: 12px;
  line-height: 1.8;
}

a {
  color: var(--primary-green);
  text-decoration: none;
  transition: color 0.2s ease;
}

a:hover {
  color: var(--accent-hover);
  text-decoration: underline;
}

section.cta {
  background: linear-gradient(135deg, #159944 0%, var(--primary-green) 100%);
  border: none;
  text-align: center;
  padding: 50px 30px;
}

section.cta h2 {
  color: var(--text-light);
  font-size: 1.8rem;
  margin-bottom: 16px;
}

section.cta p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.1rem;
  margin-bottom: 24px;
}

.cta-btn {
  display: inline-block;
  background-color: var(--text-light);
  color: var(--dark-bg);
  padding: 16px 40px;
  font-size: 1.1rem;
  font-weight: 700;
  border-radius: 50px;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.cta-btn:hover {
  background-color: var(--accent-hover);
  color: var(--text-light);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(29, 185, 84, 0.4);
  text-decoration: none;
}

section.related {
  background-color: var(--dark-surface);
  border-left: 4px solid var(--primary-green);
}

section.related ul {
  list-style: none;
  margin-left: 0;
}

section.related ul li {
  padding-left: 24px;
  position: relative;
}

section.related ul li::before {
  content: "→";
  position: absolute;
  left: 0;
  color: var(--primary-green);
  font-weight: bold;
}

/* Responsive Design */
@media (max-width: 768px) {
  body {
    padding: 10px;
  }

  header.hero {
    padding: 30px 20px;
  }

  header.hero h1 {
    font-size: 1.6rem;
  }

  header.hero p.summary {
    font-size: 1rem;
  }

  section {
    padding: 20px;
  }

  h2 {
    font-size: 1.4rem;
  }

  h3 {
    font-size: 1.2rem;
  }

  p {
    font-size: 1rem;
  }
}
