/* -------- THEME VARIABLES -------- */

/* Warm / patient-friendly */
.theme-a {
  --primary: #f5a623;   /* Peach Amber */
  --secondary: #f7f7f7;
  --highlight: #e76f51; /* Coral */
  --text: #333333;
}

/* Professional & balanced */
.theme-b {
  --primary: #f5a623;   /* Peach Amber */
  --secondary: #243447; /* Navy */
  --highlight: #5dade2; /* Sky Blue */
  --text: #2d2d2d;
}

/* Minimal & eco-conscious */
.theme-c {
  --primary: #f5a623;   /* Peach Amber */
  --secondary: #fce9d0; /* Pale Sand */
  --highlight: #6a994e; /* Sage */
  --text: #111111;
}

.theme-toggle {
  position: fixed;
  top: 1rem;
  right: 1rem;
  z-index: 1000;
}

.theme-toggle button {
  background-color: var(--primary);
  border: none;
  color: #fff;
  padding: 0.5rem 1rem;
  border-radius: 4px;
  cursor: pointer;
  font-weight: bold;
}

.theme-toggle button:hover {
  background-color: var(--highlight);
}

/* -------- GLOBAL STYLES -------- */
body {
  margin: 0;
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  background-color: #fff;
  color: var(--text);
  line-height: 1.6;
}

header {
  text-align: center;
  padding: 2rem 1rem;
}

.logo {
  font-size: 2.5rem;
  font-weight: bold;
  color: var(--primary);
  margin: 0;
  text-transform: lowercase;
}

.tagline {
  font-size: 1.1rem;
  margin-top: 0.5rem;
  color: var(--text);
}

.hero {
  text-align: center;
  padding: 2rem 1rem;
}

.hero-line {
  font-size: 1.25rem;
  max-width: 800px;
  margin: 0 auto;
}

.about {
  text-align: center;
  padding: 2rem 1rem;
  max-width: 900px;
  margin: 0 auto;
}

.audiences {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.5rem;
  padding: 2rem 1rem;
  max-width: 1200px;
  margin: 0 auto;
}

.audience-box {
  background-color: var(--secondary);
  color: #fff;
  flex: 1 1 250px;
  min-width: 250px;
  padding: 1.5rem;
  border-radius: 8px;
}

.audience-box h2 {
  color: var(--highlight);
  margin-top: 0;
}

.contact {
  text-align: center;
  padding: 2rem 1rem;
}

.contact a {
  color: var(--primary);
  text-decoration: none;
  font-weight: bold;
}

.contact a:hover {
  text-decoration: underline;
}

footer {
  text-align: center;
  padding: 1rem;
  font-size: 0.9rem;
  background-color: #f9f9f9;
}

.disclaimer {
  font-size: 0.8rem;
  color: #666;
  max-width: 600px;
  margin: 0.5rem auto 0;
}


