/* Custom styles for SMCWare */

/* Custom colors */
:root {
  --bs-primary: #0284C7;
  --bs-primary-rgb: 59, 130, 246;
  --bs-primary-dark: #0c4a6e;
}

/* Background gradient for hero section */
.bg-gradient-primary {
  background: linear-gradient(to right, #0284C7, #0c4a6e);
}

/* Text colors */
.text-light-blue {
  color: rgba(255, 255, 255, 0.85);
}

.text-white-75 {
  color: rgba(255, 255, 255, 0.75);
}

/* Hover effects */
.hover-shadow {
  transition: box-shadow 0.3s ease;
}

.hover-shadow:hover {
  box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15) !important;
}

.hover-text-white {
  transition: color 0.3s ease;
}

.hover-text-white:hover {
  color: #fff !important;
}

/* Spacing utilities */
.py-6 {
  padding-top: 4rem;
  padding-bottom: 4rem;
}

/* Opacity */
.opacity-70 {
  opacity: 0.7;
}

/* Border radius */
.rounded-4 {
  border-radius: 0.5rem;
}

/* Object fit */
.object-cover {
  object-fit: cover;
}

/* Custom styles for Django integration */
.django-content {
  width: 100%;
  max-width: 1320px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 0.75rem;
  padding-right: 0.75rem;
}

/* Custom animations */
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

.animate-fadeIn {
  animation: fadeIn 0.5s ease-in-out;
}

/* Responsive adjustments */
@media (min-width: 992px) {
  .py-lg-6 {
    padding-top: 4rem;
    padding-bottom: 4rem;
  }

  .display-4 {
    font-size: 3.5rem;
  }

  .display-5 {
    font-size: 3rem;
  }

  .display-6 {
    font-size: 2.5rem;
  }
}

.alert-debug {
  color: black;
  background-color: white;
  border-color: #d6e9c6;
}

.alert-error {
  color: #b94a48;
  background-color: #f2dede;
  border-color: #eed3d7;
}
