
/* Bloom's stAIrcase Custom Theme - Academic, Futuristic, AI-Education Blend */

@import url('https://fonts.googleapis.com/css2?family=Sour+Gummy:ital,wght@0,100..900;1,100..900&display=swap');

body {
  margin: 0;
  padding: 0;
  font-family: 'Open Sans', sans-serif;
  background-color: #f5f8fa;
  color: #222;
  line-height: 1.6;
}

h1, h2, h3 {
  font-family: 'Sour Gummy', sans-serif;
  color: #003366;
}

a {
  color: #006699;
  text-decoration: none;
}
a:hover {
  text-decoration: underline;
}

header {
  background: #003366;
  color: white;
  padding: 1rem 2rem;
  text-align: center;
  font-family: 'Orbitron', sans-serif;
}

nav {
  background: #006699;
  padding: 0.5rem 2rem;
  display: flex;
  justify-content: space-between;
}

nav a {
  color: white;
  font-weight: bold;
  margin: 0 10px;
}

.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 2rem;
}

button, .btn {
  background-color: #4a90e2;
  border: none;
  color: white;
  padding: 10px 16px;
  font-size: 16px;
  font-family: 'Open Sans', sans-serif;
  border-radius: 5px;
  cursor: pointer;
  transition: background 0.3s ease;
}
button:hover, .btn:hover {
  background-color: #357ABD;
}

.table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 20px;
}
.table th, .table td {
  padding: 12px;
  border: 1px solid #ddd;
}
.table th {
  background-color: #e0ebf5;
  font-weight: 600;
}

/* Inspired by Bloom's colors: subtle blocks of blue, yellow, purple, green */
.step-remember { background-color: #d6eaff; }
.step-understand { background-color: #fff5cc; }
.step-apply { background-color: #e6e6ff; }
.step-analyze { background-color: #d9ffe6; }
.step-evaluate { background-color: #ffe6e6; }
.step-create { background-color: #e6f7ff; }

footer {
  background: #003366;
  color: white;
  padding: 1rem;
  text-align: center;
  margin-top: 2rem;
  font-size: 14px;
}
