@charset "utf-8";
/* CSS Document */
/* Global */
body {
  margin: 0;
  padding: 0;
  background: #0d0d0f;
  color: #e6e6e6;
  font-family: 'Lato', sans-serif;
  line-height: 1.6;
}

/* Navigation */
.main-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 40px;
  background: #111;
  border-bottom: 1px solid #222;
}

.nav-logo {
  font-size: 1.4rem;
  font-weight: 700;
  letter-spacing: 1px;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 20px;
}

.nav-links a {
  color: #e6e6e6;
  text-decoration: none;
  font-weight: 400;
}

.nav-links a:hover {
  color: #9cc7ff;
}

/* Hero */
.hero {
  text-align: center;
  padding: 60px 20px;
}

.hero-orb {
  width: 180px;
  opacity: 0.9;
  margin-bottom: 20px;
}

.hero h1 {
  font-size: 3rem;
  margin: 0;
}

.hero h2 {
  font-size: 1.4rem;
  font-weight: 300;
  margin-top: 10px;
  color: #9cc7ff;
}

/* Content */
.content {
  max-width: 900px;
  margin: 0 auto;
  padding: 40px 20px;
}

h2 {
  margin-top: 40px;
  color: #9cc7ff;
}

h3 {
  margin-top: 25px;
  color: #c4d8ff;
}

ul {
  padding-left: 20px;
}

.cta {
  text-align: center;
  margin-top: 60px;
}

/* added for episodes.html */
/* Page Header */
.page-header {
  text-align: center;
  padding: 60px 20px 20px;
}

.page-header h1 {
  font-size: 2.4rem;
  margin-bottom: 10px;
}

.page-subtitle {
  color: #9cc7ff;
  font-size: 1.1rem;
}

/* Episodes List */
.episodes-list {
  max-width: 900px;
  margin: 0 auto;
  padding: 20px;
}

.episode-card {
  display: flex;
  gap: 20px;
  margin-bottom: 40px;
  background: #111;
  padding: 20px;
  border-radius: 6px;
  border: 1px solid #222;
}

.episode-card img {
  width: 180px;
  height: auto;
  border-radius: 4px;
}

.episode-info h2 {
  margin-top: 0;
}

.episode-info a {
  color: #9cc7ff;
  text-decoration: none;
}

.episode-info a:hover {
  color: #c4d8ff;
}


/* episode 1 */
/* Episode Detail */
.video-container {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  margin-bottom: 40px;
}

.video-container iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 6px;
}

.episode-detail h2 {
  margin-top: 40px;
  color: #9cc7ff;
}

.episode-nav {
  display: flex;
  justify-content: space-between;
  margin-top: 60px;
}

.episode-nav a {
  color: #9cc7ff;
  text-decoration: none;
  font-weight: 400;
}

.episode-nav a:hover {
  color: #c4d8ff;
}


/* Codex Page */
.codex h2 {
  margin-top: 50px;
  color: #9cc7ff;
  font-size: 1.6rem;
}

.codex p {
  margin-top: 15px;
}

.codex ul {
  margin-top: 15px;
  padding-left: 20px;
}

.codex-link {
  color: #9cc7ff;
  text-decoration: none;
  font-weight: 400;
}

.codex-link:hover {
  color: #c4d8ff;
}


/* Resonance Scale Page */
.resonance-scale h2 {
  margin-top: 50px;
  color: #9cc7ff;
  font-size: 1.6rem;
}

.resonance-scale p {
  margin-top: 15px;
}

.resonance-scale ul {
  margin-top: 15px;
  padding-left: 20px;
}

.resonance-scale ul li {
  margin-bottom: 8px;
  line-height: 1.5;
}


/* Artifacts Page */
.artifacts p {
  margin-top: 15px;
}

.artifact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.artifact-card {
  background: #111;
  padding: 20px;
  border-radius: 6px;
  border: 1px solid #222;
  text-align: center;
}

.artifact-card img {
  width: 100%;
  height: auto;
  border-radius: 4px;
  margin-bottom: 15px;
}

.artifact-card h3 {
  color: #c4d8ff;
  margin-bottom: 10px;
}

.artifact-card p {
  font-size: 0.95rem;
  line-height: 1.5;
}



/* Philosophy Page */
.philosophy h2 {
  margin-top: 50px;
  color: #9cc7ff;
  font-size: 1.6rem;
}

.philosophy p {
  margin-top: 15px;
}

.philosophy ul {
  margin-top: 15px;
  padding-left: 20px;
}

.philosophy ul li {
  margin-bottom: 8px;
  line-height: 1.5;
}


/* About Page */
.about h2 {
  margin-top: 50px;
  color: #9cc7ff;
  font-size: 1.6rem;
}

.about p {
  margin-top: 15px;
  line-height: 1.6;
}


/* Contact Page */
.contact h2 {
  margin-top: 40px;
  color: #9cc7ff;
  font-size: 1.4rem;
}

.contact-box {
  background: #111;
  padding: 20px;
  border-radius: 6px;
  border: 1px solid #222;
  margin-top: 30px;
}

.contact-link {
  color: #9cc7ff;
  text-decoration: none;
  font-size: 1.1rem;
}

.contact-link:hover {
  color: #c4d8ff;
}

/* Optional Form Styling */
.contact-form form {
  display: flex;
  flex-direction: column;
  gap: 15px;
  margin-top: 20px;
}

.contact-form input,
.contact-form textarea {
  background: #0f0f11;
  border: 1px solid #333;
  padding: 10px;
  color: #e6e6e6;
  border-radius: 4px;
}

.contact-form button {
  background: #9cc7ff;
  color: #0d0d0f;
  padding: 10px;
  border: none;
  border-radius: 4px;
  font-weight: 700;
  cursor: pointer;
}

.contact-form button:hover {
  background: #c4d8ff;
}


/* Optional: Highlight active episode nav links */
.episode-nav .back-link,
.episode-nav .next-link {
  margin: 0 10px;
}


/* Global Footer */
.global-footer {
  background: #0b0b0d;
  border-top: 1px solid #222;
  padding: 30px 20px;
  margin-top: 60px;
  text-align: center;
}

.footer-inner {
  max-width: 900px;
  margin: 0 auto;
}

.footer-title {
  font-size: 1.2rem;
  font-weight: 700;
  letter-spacing: 1px;
  color: #e6e6e6;
  margin-bottom: 5px;
}

.footer-sub {
  font-size: 0.95rem;
  color: #9cc7ff;
  margin-bottom: 10px;
}

.footer-copy {
  font-size: 0.85rem;
  color: #666;
}


/* optional enhancement */
.global-footer {
  position: relative;
}

.global-footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, transparent, #9cc7ff, transparent);
  opacity: 0.4;
}
