/* ===================================
   Soni Family Hub - Bootstrap 5 Styles
   Purple Theme: #667eea to #764ba2
   =================================== */

/* Purple gradient background for navbar */
.bg-gradient-purple {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

/* Text purple color */
.text-purple {
  color: #667eea;
}

/* Border purple color */
.border-purple {
  border-color: #667eea !important;
}

/* Purple button styles */
.btn-purple {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  border: none;
  color: white;
}

.btn-purple:hover {
  background: linear-gradient(135deg, #764ba2 0%, #667eea 100%);
  color: white;
}

.btn-outline-purple {
  border-color: #667eea;
  color: #667eea;
}

.btn-outline-purple:hover {
  background-color: #667eea;
  border-color: #667eea;
  color: white;
}

/* Purple badge */
.bg-purple {
  background-color: #667eea !important;
}

/* Progress bar purple */
.progress-bar-purple {
  background: linear-gradient(90deg, #667eea 0%, #764ba2 100%);
}

/* Hero section stat cards */
.stat-card-hero {
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: transform 0.3s ease, background 0.3s ease;
}

.stat-card-hero:hover {
  transform: translateY(-5px);
  background: rgba(255, 255, 255, 0.25);
}

/* Navbar brand styling */
.navbar-brand {
  font-size: 1.2rem;
}

.navbar-brand strong {
  display: block;
}

/* Card hover effects */
.card {
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.card:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15) !important;
}

/* List group item hover */
.list-group-item-action:hover {
  background-color: #f8f9fa;
  transform: translateX(5px);
  transition: all 0.2s ease;
}

/* Accordion button styling */
.accordion-button:not(.collapsed) {
  background-color: #f8f9fa;
  color: #667eea;
}

.accordion-button:focus {
  box-shadow: none;
  border-color: rgba(102, 126, 234, 0.25);
}

/* Footer styling */
footer {
  margin-top: 4rem;
}

/* Smooth scrolling */
html {
  scroll-behavior: smooth;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .hero-section .display-4 {
    font-size: 2rem;
  }

  .hero-section .display-5 {
    font-size: 1.5rem;
  }

  .stat-card-hero {
    padding: 1rem !important;
  }
}

/* Custom utility classes */
.shadow-sm {
  box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075) !important;
}
