/* Apollo Solar/Golden Theme */

:root {
  --apollo-gold: #f59e0b;
  --apollo-gold-dark: #d97706;
  --apollo-purple: #6366f1;
  --apollo-purple-dark: #4338ca;
  --apollo-navy: #1e293b;
  --apollo-cream: #fef3c7;
  --apollo-gray: #64748b;
}

/* Typography */
html {
  height: 100%;
}

body {
  font-family: "Afacad Flux", sans-serif;
  font-optical-sizing: auto;
  min-height: 100%;
  display: flex;
  flex-direction: column;
  background-color: #fefbf3;
}

/* Navbar styling */
.navbar {
  background: linear-gradient(135deg, var(--apollo-purple-dark) 0%, var(--apollo-navy) 100%) !important;
  box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.navbar-logo {
  height: 40px;
  width: 40px;
}

.navbar-brand {
  color: var(--apollo-gold) !important;
  font-weight: 600;
  font-size: 1.25rem;
}

.navbar .nav-link {
  color: var(--apollo-cream) !important;
  transition: color 0.2s ease;
}

.navbar .nav-link:hover {
  color: var(--apollo-gold) !important;
}

/* Main content area */
.container {
  flex: 1 0 auto;
}

/* Footer styling */
.footer {
  background: linear-gradient(135deg, var(--apollo-navy) 0%, var(--apollo-purple-dark) 100%);
  color: var(--apollo-cream);
  margin-top: auto;
  flex-shrink: 0;
}

.footer-logo {
  height: 40px;
  width: 40px;
}

.footer h5,
.footer h6 {
  color: var(--apollo-gold);
  font-weight: 600;
  margin-bottom: 1rem;
}

.footer-link {
  color: var(--apollo-cream);
  text-decoration: none;
  transition: color 0.2s ease;
  font-size: 0.9rem;
}

.footer-link:hover {
  color: var(--apollo-gold);
}

.footer hr {
  border-color: rgba(243, 244, 246, 0.3);
  opacity: 1;
}

.footer .text-muted {
  color: rgba(243, 244, 246, 0.6) !important;
}

/* Alert styles */
.alert-debug {
  color: black;
  background-color: white;
  border-color: #d6e9c6;
}

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