/* 
 * Therammunity CSS - Recovery Support Platform
 * 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.6;
  padding: 20px;
  max-width: 900px;
  margin: 0 auto;
}

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);
}

header.hero h1 {
  font-size: 2.2rem;
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--text-light);
}

header.hero p {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.9);
  font-weight: 400;
}

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-top: 30px;
  margin-bottom: 15px;
  font-weight: 600;
}

h2:first-child {
  margin-top: 0;
}

p {
  margin-bottom: 16px;
  color: var(--text-gray);
  font-size: 1rem;
}

ul {
  margin-left: 24px;
  margin-bottom: 20px;
  color: var(--text-gray);
}

ul li {
  margin-bottom: 10px;
  line-height: 1.7;
}

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;
}

/* Responsive Design */
@media (max-width: 768px) {
  body {
    padding: 10px;
  }

  header.hero h1 {
    font-size: 1.8rem;
  }

  header.hero p {
    font-size: 1rem;
  }

  section {
    padding: 20px;
  }

  h2 {
    font-size: 1.4rem;
  }
}
