/* =============================================
   Canadian Sky Theme — Gerry Morgan / Geezer Records
   The "Aurora" Aesthetic: Deep Blues, Aurora Greens, and Gold.
   ============================================= */

/* --- Reset & Base --- */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --color-bg: #0B1121;         /* Deep Space Blue */
  --color-text: #E5E7EB;       /* Light Gray for readability */
  --color-text-muted: #9CA3AF;
  --color-accent: #C49A00;     /* Metallic Gold */
  --color-accent-hover: #EAB308;
  --color-aurora-green: #10B981;
  --color-aurora-purple: #8B5CF6;
  --color-border: rgba(196, 154, 0, 0.3);
  --color-card-bg: #111827;
  --color-hero-bg: #0B1121;
  --color-hero-text: #F3F4F6;
  --color-footer-bg: #030712;
  --color-footer-text: #9CA3AF;
  
  --font-body: "Georgia", serif;
  --font-heading: "Georgia", serif;
  --font-ui: "Arial", sans-serif;
  
  --max-width: 900px;
  --max-width-wide: 1100px;
  --radius: 16px;
}

html {
  font-size: 18px;
  line-height: 1.8;
  color: var(--color-text);
  background: var(--color-bg);
  font-family: var(--font-body);
  -webkit-font-smoothing: antialiased;
  scroll-behavior: smooth;
}

body {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  background: radial-gradient(circle at top right, #1E293B 0%, var(--color-bg) 70%);
}

#content {
  flex: 1;
}

.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 2rem;
}

a {
  color: var(--color-accent);
  text-decoration: none;
  transition: all 0.2s;
}

a:hover {
  color: var(--color-accent-hover);
  opacity: 0.9;
}

/* --- Typography --- */
h1, h2, h3, h4 {
  font-family: var(--font-heading);
  font-weight: 700;
  color: var(--color-hero-text);
  margin-bottom: 1.5rem;
}

h1 { font-size: 3rem; letter-spacing: -0.02em; color: var(--color-accent); }
h2 { font-size: 2rem; border-bottom: 2px solid var(--color-border); display: inline-block; padding-bottom: 0.5rem; margin-top: 3rem; margin-bottom: 2rem; }
h3 { font-size: 1.5rem; color: var(--color-aurora-green); }

.prose p {
  margin-bottom: 1.5rem;
}

.prose blockquote {
  border-left: 4px solid var(--color-accent);
  padding-left: 1.5rem;
  font-style: italic;
  margin: 3rem 0;
  color: var(--color-text-muted);
}

/* --- Header --- */
.site-header {
  padding: 1.5rem 0;
  background: rgba(11, 17, 33, 0.95);
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid var(--color-border);
  backdrop-filter: blur(12px);
}

.site-header .container {
  max-width: var(--max-width-wide);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.site-logo {
  display: flex;
  align-items: center;
  text-decoration: none;
}

.header-logo-img {
  height: 60px;
  width: 60px;
  border-radius: 50%;
  margin-right: 1.5rem;
  border: 2px solid var(--color-accent);
  box-shadow: 0 0 20px rgba(196, 154, 0, 0.2);
}

.site-title-group {
  display: flex;
  flex-direction: column;
}

.site-name {
  font-family: var(--font-ui);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 800;
  font-size: 1.4rem;
  color: #fff;
  line-height: 1;
}

.site-label {
  font-size: 0.8rem;
  color: var(--color-accent);
  letter-spacing: 0.15em;
  font-family: var(--font-ui);
  font-weight: 600;
  text-transform: uppercase;
  margin-top: 0.25rem;
}

.nav-list {
  list-style: none;
  display: flex;
  gap: 1.5rem;
}

.nav-list a {
  font-family: var(--font-ui);
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--color-text-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.nav-list a:hover, .nav-list a.active {
  color: var(--color-accent);
}

/* --- Hero --- */
.hero {
  padding: 6rem 0 4rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.hero::after {
  content: "";
  position: absolute;
  top: -50%;
  left: -20%;
  width: 140%;
  height: 140%;
  background: radial-gradient(ellipse at center, rgba(16, 185, 129, 0.05) 0%, transparent 60%);
  pointer-events: none;
}

.hero-logo-large {
  width: 180px;
  height: 180px;
  border-radius: 50%;
  margin-bottom: 2rem;
  border: 4px solid var(--color-accent);
  box-shadow: 0 0 40px rgba(196, 154, 0, 0.3);
}

.hero-title {
  font-size: 4rem;
  margin-bottom: 1rem;
}

.hero-tagline {
  font-family: var(--font-ui);
  text-transform: uppercase;
  letter-spacing: 0.3em;
  color: var(--color-aurora-green);
  font-weight: 700;
}

/* --- Section Layout --- */
section {
  padding: 4rem 0;
}

/* --- Footer --- */
.site-footer {
  background: var(--color-footer-bg);
  color: var(--color-footer-text);
  padding: 6rem 0 4rem;
  margin-top: 5rem;
  text-align: center;
  border-top: 1px solid var(--color-border);
}

.footer-logo-img {
  height: 100px;
  width: 100px;
  border-radius: 50%;
  margin-bottom: 2rem;
  border: 2px solid var(--color-accent);
}

.footer-label {
  color: #fff;
  font-family: var(--font-ui);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  margin-bottom: 0.5rem;
}

.footer-nav ul {
  list-style: none;
  display: flex;
  justify-content: center;
  gap: 2rem;
  margin: 2rem 0;
  flex-wrap: wrap;
}

.footer-nav a {
  color: var(--color-footer-text);
  font-family: var(--font-ui);
  font-size: 0.8rem;
  text-transform: uppercase;
}

.footer-social {
  display: flex;
  justify-content: center;
  gap: 2rem;
  margin-bottom: 2rem;
}

.footer-social-link {
  color: var(--color-text-muted);
}

.footer-social-link:hover {
  color: var(--color-accent);
}

.footer-social-icon {
  width: 1.5rem;
  height: 1.5rem;
  fill: currentColor;
}

.footer-copyright {
  font-size: 0.8rem;
  opacity: 0.6;
}

/* --- Responsive --- */
@media (max-width: 768px) {
  .hero-title { font-size: 2.5rem; }
  .nav-list { display: none; }
  .site-header .container { flex-direction: column; gap: 1rem; }
}

/* Success Message (Fan Club) */
.fan-success {
  display: none;
  padding: 2rem;
  border: 1px solid var(--color-accent);
  border-radius: var(--radius);
  background: rgba(196, 154, 0, 0.05);
  margin-top: 2rem;
}

/* Modern Post List for Podcast */
.post-list-modern {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2.5rem;
  margin: 3rem 0;
}

.post-item {
  background: var(--color-card-bg);
  padding: 2rem;
  border-radius: var(--radius);
  border: 1px solid rgba(255,255,255,0.05);
  transition: transform 0.3s ease;
}

.post-item:hover {
  transform: translateY(-5px);
  border-color: var(--color-border);
}

.post-item time {
  font-size: 0.75rem;
  color: var(--color-accent);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  display: block;
  margin-bottom: 0.5rem;
}

.post-item h3 a {
  color: #fff;
  text-decoration: none;
}

.post-item p {
  font-size: 0.9rem;
  color: var(--color-text-muted);
  line-height: 1.6;
  margin-top: 1rem;
}

.btn-outline {
  display: inline-block;
  padding: 0.8rem 2rem;
  border: 1px solid var(--color-accent);
  color: var(--color-accent);
  border-radius: 30px;
  font-weight: 700;
  text-transform: uppercase;
  font-size: 0.8rem;
  letter-spacing: 0.1em;
}

.btn-outline:hover {
  background: var(--color-accent);
  color: var(--color-bg);
}