/* Axon Tech Labs — Custom Styles */

/* Hero Section */
.hero-section {
  background: linear-gradient(135deg, #232F3E 0%, #1a1a2e 60%, #16213e 100%);
  min-height: 500px;
  display: flex;
  align-items: center;
}

/* Navbar brand */
.navbar-brand {
  font-size: 1.4rem;
  letter-spacing: 0.5px;
}

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

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

/* Individual product cards — always show subtle border */
.card.border-0.shadow-sm {
  border: 1px solid #e0d0b0 !important;
}

.card.border-0.shadow-sm:hover {
  border: 1px solid #8B4513 !important;
}

/* Warning color overrides for AWS orange feel */
.btn-warning {
  background-color: #FF9900;
  border-color: #FF9900;
  color: #000;
}

.btn-warning:hover {
  background-color: #e68a00;
  border-color: #e68a00;
  color: #000;
}

.btn-outline-warning {
  border-color: #FF9900;
  color: #8B4513;
}

.btn-outline-warning:hover {
  background-color: #FF9900;
  color: #000 !important;
  border-color: #FF9900;
}

.text-warning {
  color: #FF9900 !important;
}

.badge.bg-warning {
  background-color: #FF9900 !important;
}

.border-warning {
  border-color: #FF9900 !important;
}

/* Section spacing */
section {
  padding-top: 4rem;
  padding-bottom: 4rem;
}

/* Footer */
footer a:hover {
  color: #FF9900 !important;
}
