/* Spiral Scribe - Utopian Scholastic Theme */
/* Deep cosmic academy with da Vinci / Encardia '99 echoes */

body {
  font-family: Georgia, 'Times New Roman', serif;
  background: #0a1f3d url('your-cosmic-tiled-bg.jpg') repeat; /* Upload a subtle starry/parchment tile */
  color: #d4c3a3; /* Warm parchment text */
  margin: 0;
  padding: 20px;
  line-height: 1.7;
  background-attachment: fixed;
}

.header {
  text-align: center;
  padding: 40px 20px;
  background: rgba(10, 31, 61, 0.92);
  border-bottom: 4px solid #c9a227;
  box-shadow: 0 4px 15px rgba(201, 162, 39, 0.3);
}

h1 {
  font-size: 3.2em;
  color: #ffd700;
  text-shadow: 0 0 20px #ffd700, 0 0 10px #c9a227;
  margin: 10px 0 5px;
  letter-spacing: 2px;
}

.tagline {
  font-style: italic;
  color: #a8c4e0;
  font-size: 1.25em;
  margin: 0;
}

nav {
  background: rgba(20, 40, 80, 0.95);
  padding: 18px;
  text-align: center;
  margin: 25px 0;
  border-top: 2px solid #c9a227;
  border-bottom: 2px solid #c9a227;
}

nav a {
  color: #c9a227;
  margin: 0 22px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: color 0.3s;
}

nav a:hover {
  color: #ffd700;
  text-shadow: 0 0 8px #ffd700;
}

.hero {
  position: relative;
  text-align: center;
  padding: 50px 30px;
  background: rgba(10, 20, 50, 0.85);
  margin: 30px 0;
  border: 3px solid #c9a227;
  box-shadow: inset 0 0 40px rgba(0,0,0,0.6);
}

.hero img {
  max-width: 100%;
  opacity: 0.95;
  border: 1px solid #a8c4e0;
}

.section {
  max-width: 920px;
  margin: 35px auto;
  padding: 30px;
  background: rgba(20, 40, 80, 0.88);
  border: 2px solid #c9a227;
  box-shadow: 0 6px 20px rgba(201, 162, 39, 0.25);
}

h2 {
  color: #ffd700;
  border-bottom: 2px solid #c9a227;
  padding-bottom: 8px;
}

ul {
  padding-left: 25px;
}

footer {
  text-align: center;
  padding: 35px;
  color: #777;
  font-size: 0.95em;
  border-top: 1px solid #445577;
  margin-top: 50px;
}

/* Scholarly Hover Glows */
a {
  color: #a8c4e0;
  transition: all 0.3s;
}

a:hover {
  color: #ffd700;
  text-shadow: 0 0 6px #ffd700;
}

/* Two-Column Scholarly Block - Text + Image */
.two-column {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  align-items: center;
  max-width: 1000px;
  margin: 40px auto;
  padding: 20px;
}

.two-column .text-block {
  flex: 1;
  min-width: 280px;
}

.two-column .image-block {
  flex: 1;
  min-width: 280px;
  text-align: center;
}

.two-column img {
  max-width: 100%;
  height: auto;
  border: 3px solid #c9a227;
  box-shadow: 0 8px 25px rgba(201, 162, 39, 0.3);
  border-radius: 6px;
}

/* Mobile Stack */
@media (max-width: 768px) {
  .two-column {
    flex-direction: column;
  }
}

/* Light cosmic mouse trail */
body::after {
  content: '';
  position: fixed;
  pointer-events: none;
  z-index: 9999;
}