/* About Page Dark Mode Styles */

[data-theme="dark"] .about-hero {
  background-image: linear-gradient(rgba(30, 6, 101, 0.167), rgba(30, 6, 101, 0.555), rgba(30, 6, 101, 0.833)), url('../images/about-hero.jpg');
}

[data-theme="dark"] .about-hero::before {
background-color: rgba(0, 0, 0, 0.368);}

[data-theme="dark"] .inspiration-section {
  background-color: #1e1e1e;
  color: #e0e0e0;
}

[data-theme="dark"] .section-title {
  color: #f0f0f0;
}

[data-theme="dark"] .inspiration-content {
  color: #d0d0d0;
}

[data-theme="dark"] .why-choose-section {
  background-color: #121212;
  color: #e0e0e0;
}

[data-theme="dark"] .why-choose-title {
  background-color: #2d2d2d;
  color: #f0f0f0;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.3);
}

[data-theme="dark"] .feature-card {
  background-color: #1e1e1e;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  border: 1px solid #333;
  transition: all 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
}

[data-theme="dark"] .feature-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.4);
  border-color: #4a4a4a;
}

[data-theme="dark"] .feature-icon {
  background-color: #2d2d2d;
}

[data-theme="dark"] .feature-title {
  color: #f0f0f0;
}

[data-theme="dark"] .feature-description {
  color: #b0b0b0;
}

[data-theme="dark"] .contact-btn {
  background-color: #4a4a4a;
  color: white;
  border: 1px solid #555;
}

[data-theme="dark"] .contact-btn:hover {
  background-color: #666;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.4);
}

/* Highlight style for dark mode */
[data-theme="dark"] .highlight {
  color: #aaa;
  font-weight: 600;
}

/* Animation for feature cards */
@media (prefers-reduced-motion: no-preference) {
  [data-theme="dark"] .feature-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease, background-color 0.3s ease;
  }
  
  [data-theme="dark"] .feature-card:hover {
    background-color: #242424;
  }
}

/* Responsive styles */
@media (max-width: 768px) {
  [data-theme="dark"] .feature-card {
    background-color: #1a1a1a;
  }
  
  [data-theme="dark"] .feature-card:hover {
    background-color: #222;
  }
} 