/* Blue Catholic Theme Override */
:root {
  --primary-color: #1e3a8a !important; /* Deep blue for main elements */
  --primary-dark: #0f2361 !important; /* Darker blue */
  --bg-color: #f5f8ff !important; /* Light blue background */
  --gold-accent: #f59e0b !important; /* Gold for accents */
  --blue-accent: #3b82f6 !important; /* Light blue accent */
}

body {
  background: linear-gradient(135deg, #eff6ff 0%, #dbeafe 50%, #f0f9ff 100%) !important;
  background-attachment: fixed !important;
}

/* Catholic decorative background pattern */
body::before {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: 
    radial-gradient(circle at 20% 30%, rgba(59, 130, 246, 0.08) 0%, transparent 50%),
    radial-gradient(circle at 80% 70%, rgba(59, 130, 246, 0.08) 0%, transparent 50%);
  z-index: -1;
  pointer-events: none;
}

.header {
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%) !important;
  border-bottom: 3px solid var(--gold-accent) !important;
  padding: 24px 20px !important;
  text-align: center !important;
  position: relative !important;
  overflow: hidden !important;
  border-radius: 12px !important;
  margin-bottom: 30px !important;
  box-shadow: var(--shadow) !important;
}

.header::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, 
    rgba(255, 255, 255, 0) 0%, 
    rgba(255, 255, 255, 0.1) 50%, 
    rgba(255, 255, 255, 0) 100%);
  animation: shimmer 3s infinite;
  z-index: 1;
}

@keyframes shimmer {
  0% { transform: translateX(-100%); }
  100% { transform: translateX(100%); }
}

.title {
  color: white !important;
  font-size: 2.2rem !important;
  font-weight: 700 !important;
  margin-bottom: 8px !important;
  position: relative !important;
  z-index: 2 !important;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2) !important;
}

.subtitle {
  color: rgba(255, 255, 255, 0.9) !important;
  font-size: 1.2rem !important;
  font-weight: 400 !important;
  position: relative !important;
  z-index: 2 !important;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2) !important;
}

.btn-primary {
  background-color: var(--primary-color) !important;
  color: white !important;
  border: 2px solid var(--primary-dark) !important;
}

.btn-primary:hover {
  background-color: var(--primary-dark) !important;
}
