/* Vibrant Orange Theme (活力橙 - Velvera) */
:root {
  /* Vibrant Orange Theme Colors */
  --primary: #FF7A00;
  --primary-light: #FFA95C;
  --bg: #FFF7F0;
  --text: #3B2B13;
  --accent: #FFE2CC;
  
  /* Override default forest theme colors */
  --forest-900: var(--text);
  --forest-700: var(--text);
  --forest-500: var(--primary);
  --leaf-300: var(--primary);
  --leaf-200: var(--primary-light);
  --bone-100: var(--bg);
  --bone-80: rgba(255, 247, 240, 0.8);
}

.theme-vibrant-orange {
  background: var(--bg);
  color: var(--text);
}

.theme-vibrant-orange .btn-primary {
  background: var(--primary);
  color: #fff;
}

.theme-vibrant-orange .btn-primary:hover {
  background: var(--primary-light);
  color: var(--text);
}

.theme-vibrant-orange .btn-secondary {
  background-color: transparent;
  color: var(--primary);
  border: 2px solid var(--primary);
}

.theme-vibrant-orange .btn-secondary:hover {
  background-color: var(--primary);
  color: #fff;
}

.theme-vibrant-orange .site-header {
  background-color: var(--bg);
  border-bottom: 1px solid var(--accent);
}

.theme-vibrant-orange .site-hero {
  background: linear-gradient(135deg, var(--bg) 0%, var(--accent) 100%);
}

.theme-vibrant-orange .site-services {
  background-color: #fff;
}

.theme-vibrant-orange .site-features {
  background-color: var(--accent);
}

.theme-vibrant-orange .feature-item {
  background-color: #fff;
}

.theme-vibrant-orange .site-testimonials {
  background-color: #fff;
}

.theme-vibrant-orange .testimonial-item {
  background-color: var(--accent);
  border-left: 4px solid var(--primary);
}

.theme-vibrant-orange .site-contact {
  background-color: var(--primary);
  color: #fff;
}

.theme-vibrant-orange .contact-info-item {
  background-color: rgba(255, 255, 255, 0.1);
}

.theme-vibrant-orange .site-footer {
  background-color: var(--text);
  color: var(--bg);
}

.theme-vibrant-orange .service-category {
  background-color: var(--accent);
  border: 1px solid var(--primary-light);
}

.theme-vibrant-orange .service-item {
  background-color: #fff;
  border: 1px solid var(--accent);
}

.theme-vibrant-orange .service-price {
  color: var(--primary);
}

.theme-vibrant-orange a {
  color: var(--primary);
}

.theme-vibrant-orange a:hover {
  color: var(--text);
}
