/* ============================================
   PATH OF EXCELLENCE - GLOBAL STYLES
   ============================================ */

/* CSS Variables */
:root {
  --primary-red: #dc3545;
  --dark-red: #b02a37;
  --light-red: #ffebee;
  --accent-red: #ff1744;
  --white: #ffffff;
  --light-gray: #f8f9fa;
  --gray: #6c757d;
  --dark: #212529;
}

/* Global Typography */
body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  color: var(--dark);
}

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

/* ============================================
   BOOTSTRAP OVERRIDES
   ============================================ */

/* Primary Color Override */
.btn-primary {
  background-color: var(--primary-red);
  border-color: var(--primary-red);
  color: white;
}

.btn-primary:hover {
  background-color: var(--dark-red);
  border-color: var(--dark-red);
}

/* Success Button Override */
.btn-success {
  background-color: #28a745;
  border-color: #28a745;
  color: white;
}

.btn-success:hover {
  background-color: #218838;
  border-color: #1e7e34;
}

.btn-outline-primary {
  color: var(--primary-red);
  border-color: var(--primary-red);
}

.btn-outline-primary:hover {
  background-color: var(--primary-red);
  border-color: var(--primary-red);
  color: white;
}

.text-primary {
  color: var(--primary-red) !important;
}

.bg-primary {
  background-color: var(--primary-red) !important;
}

/* Button Styles */
.btn {
  border-radius: 0.5rem;
  font-weight: 500;
  padding: 0.6rem 1.5rem;
}

/* Card Styles */
.card {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: none;
  border-radius: 1rem;
}

.card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 35px rgba(220, 53, 69, 0.2);
}

/* Badge Styles */
.badge {
  padding: 0.5rem 1rem;
  font-weight: 600;
}

.badge.bg-success {
  background-color: #28a745 !important;
}

/* ============================================
   NAVIGATION
   ============================================ */

.navbar-brand {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary-red) !important;
}

.nav-link {
  font-weight: 500;
  transition: color 0.3s ease;
}

.nav-link:hover,
.nav-link.active {
  color: var(--primary-red) !important;
}

/* ============================================
   FOOTER
   ============================================ */

footer {
  background: linear-gradient(135deg, var(--dark) 0%, #1a1d20 100%);
}

footer a:hover {
  color: var(--primary-red) !important;
}

/* ============================================
   COMMON COMPONENTS
   ============================================ */

/* Icons */
.bi {
  color: inherit;
}

/* Feature Icons */
.feature-icon {
  width: 80px;
  height: 80px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-size: 2rem;
  margin-bottom: 1rem;
}

.feature-icon.red {
  background: var(--light-red);
  color: var(--primary-red);
}

.feature-icon.success {
  background: #d4edda;
  color: #28a745;
}

.feature-icon.warning {
  background: #fff3cd;
  color: #ffc107;
}

/* Step Circles */
.step-circle {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  font-weight: bold;
  color: white;
  margin-bottom: 1rem;
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */

@media (max-width: 768px) {
  .step-circle {
    width: 60px;
    height: 60px;
    font-size: 1.5rem;
  }
}
