/* Senioren-Tierpflege spezifische Styles */

.hero-section {
  background: linear-gradient(135deg, #4a7c59 0%, #6b9b7a 100%);
  position: relative;
  overflow: hidden;
}

.hero-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('../images/senioren-pattern.svg') repeat;
  opacity: 0.1;
  z-index: 1;
}

.hero-section .container {
  position: relative;
  z-index: 2;
}

.hero-stats .stat-item {
  padding: 1rem;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.icon-circle {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
}

.section-title {
  color: #4a7c59;
  border-bottom: 3px solid #4a7c59;
  padding-bottom: 0.5rem;
  margin-bottom: 2rem;
}

.info-box {
  background: #f8f9fa;
  border-left: 4px solid #4a7c59;
  padding: 1.5rem;
  border-radius: 0 10px 10px 0;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.card {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: none;
  border-radius: 15px;
}

.card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

.card-header {
  border-radius: 15px 15px 0 0 !important;
  border: none;
}

.alert {
  border-radius: 15px;
  border: none;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.cta-section {
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  border: 2px solid #4a7c59;
}

.sidebar .card {
  border-radius: 15px;
  overflow: hidden;
}

.sidebar .card-header {
  font-weight: 600;
  border: none;
}

.sidebar .list-unstyled li {
  padding: 0.5rem 0;
  border-bottom: 1px solid #e9ecef;
}

.sidebar .list-unstyled li:last-child {
  border-bottom: none;
}

.sidebar .list-unstyled a {
  color: #4a7c59;
  text-decoration: none;
  transition: color 0.3s ease;
}

.sidebar .list-unstyled a:hover {
  color: #6b9b7a;
  text-decoration: underline;
}

/* Mobile Optimierung */
@media (max-width: 768px) {
  .hero-section {
    padding: 3rem 0;
  }
  
  .hero-section h1 {
    font-size: 2.5rem;
  }
  
  .hero-stats .stat-item {
    margin-bottom: 1rem;
  }
  
  .icon-circle {
    width: 40px;
    height: 40px;
    font-size: 1rem;
  }
  
  .card-body {
    padding: 1rem;
  }
  
  .cta-section {
    padding: 2rem 1rem;
  }
}

/* Accessibility */
@media (prefers-reduced-motion: reduce) {
  .card {
    transition: none;
  }
  
  .card:hover {
    transform: none;
  }
}

/* High contrast mode */
@media (prefers-contrast: high) {
  .hero-section {
    background: #000;
    color: #fff;
  }
  
  .card {
    border: 2px solid #000;
  }
  
  .info-box {
    border-left-color: #000;
  }
}

/* Print styles */
@media print {
  .hero-section {
    background: none !important;
    color: #000 !important;
  }
  
  .card {
    box-shadow: none !important;
    border: 1px solid #000 !important;
  }
  
  .btn {
    display: none !important;
  }
}
