/* Minimal custom styles - Mostly using Bootstrap classes */

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

/* Navbar fix for smooth scroll */
section {
  scroll-margin-top: 80px;
}

form {
  gap: 15px;
  display: flex;
  flex-direction: column;
}

#manage, #register, #login {
  color: #fff !important;
}

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

.hover-shadow:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1) !important;
}

/* Image object fit helper */
.object-fit-cover {
  object-fit: cover;
}

/* Transition utility */
.transition-all {
  transition: all 0.3s ease;
}

/* Hero section adjustments */
@media (max-width: 768px) {
  .display-2 {
    font-size: 2.5rem !important;
  }

  .lead {
    font-size: 1.1rem !important;
  }
}

/* Logo fix */
.navbar-brand img {
  max-height: 60px;
  width: auto;
}
