/* Theme 3: Emerald Green - Fresh and Vibrant */
.template-theme-3 {
  --brand-primary: #22C55E;
  --brand-secondary: #7C3AED;
  --brand-accent: #FDE047;
  --brand-dark: #0F172A;
  --brand-light: #F1F5F9;
  --brand-success: #16A34A;
  --brand-warning: #F59E0B;
  --brand-error: #DC2626;
  --brand-info: #22D3EE;
  --brand-heroTextColor: #000000;
  --brand-heroSubtitleColor: #000000;
  --bg: #ECFDF5; /* Light Green */
  --bg-light: #D1FAE5; /* Very Light Green */
  --bg-card: #FFFFFF; /* White */
  --ink: #064E3B; /* Dark Green */
  --ink-dark: #065F46; /* Medium Green */
}

/* .header-theme-3 {
  background: linear-gradient(135deg, var(--brand-primary), var(--brand-secondary));
  box-shadow: 0 4px 6px rgba(16, 185, 129, 0.1);
  border-bottom: 3px solid var(--brand-accent);
}

.header-theme-3 .logo {
  color: white;
  font-weight: 700;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.header-theme-3 .logo:hover {
  color: var(--brand-accent);
}

.header-theme-3 nav a {
  color: rgba(255, 255, 255, 0.9);
  font-weight: 500;
  transition: all 0.3s ease;
}

.header-theme-3 nav a:hover {
  color: var(--brand-accent);
  transform: translateY(-1px);
} */

/* .main-theme-3 {
  background: var(--bg);
  min-height: calc(100vh - 200px);
}

.footer-theme-3 {
  background: var(--brand-secondary);
  color: rgba(255, 255, 255, 0.8);
  border-top: 3px solid var(--brand-accent);
} */

.hero-section {
  background: linear-gradient(135deg, var(--brand-primary), var(--brand-accent));
  color: white;
  position: relative;
  overflow: hidden;
}

.hero-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="leaves" width="25" height="25" patternUnits="userSpaceOnUse"><path d="M12.5,2 C8,2 4,6 4,12.5 C4,19 8,23 12.5,23 C17,23 21,19 21,12.5 C21,6 17,2 12.5,2 Z" fill="none" stroke="rgba(255,255,255,0.1)" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23leaves)"/></svg>');
  opacity: 0.3;
}

.hero-title {
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  position: relative;
  z-index: 1;

  color: #000000;}

.hero-subtitle {
  position: relative;
  z-index: 1;

  color: #000000;}

.cta-card {
  background: linear-gradient(135deg, var(--brand-primary), var(--brand-secondary));
  border: 2px solid var(--brand-accent);
  box-shadow: 0 8px 25px rgba(16, 185, 129, 0.15);
}

.cta-card .btn {
  background: white;
  color: var(--brand-primary);
  border: 2px solid white;
  font-weight: 600;
}

.cta-card .btn:hover {
  background: var(--brand-accent);
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(16, 185, 129, 0.3);
}

.card h2::before {
  content: '🍀';
  margin-right: 8px;
}

.fact-box {
  background: linear-gradient(135deg, rgba(16, 185, 129, 0.1), rgba(5, 150, 105, 0.1));
  border-left: 4px solid var(--brand-primary);
}

.comparison-table th {
  background: linear-gradient(135deg, var(--brand-primary), var(--brand-secondary));
  color: white;
}

.comparison-table .highlight {
  background: rgba(16, 185, 129, 0.1);
  color: var(--brand-primary);
  font-weight: 600;
}

.faq-question {
  background: linear-gradient(135deg, var(--brand-primary), var(--brand-accent));
  color: white;
}

.faq-question:hover {
  background: linear-gradient(135deg, var(--brand-secondary), var(--brand-primary));
}
