/* ==========================================================================
   GLOBAL VARIABLES & TYPOGRAPHY
   ========================================================================== */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&display=swap');

:root {
  --primary-gold: #f59e0b;
  --primary-amber: #fbbf24;
  --dark-blue: #0a1128; 
  --darker-blue: #050814;
  --card-bg: rgba(15, 23, 42, 0.6);
  --card-border: rgba(251, 191, 36, 0.2);
  --text-main: #e2e8f0;
  --text-muted: #94a3b8;
  --accent-red: #991b1b;
  --accent-green: #065f46;
  --glass-bg: rgba(10, 17, 40, 0.85);
  --transition-speed: 0.3s;
}

/* ==========================================================================
   BASE STYLES & RESETS
   ========================================================================== */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html { scroll-behavior: smooth; }

:focus-visible {
  outline: 2px dashed var(--primary-amber);
  outline-offset: 4px;
}

body {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  background-color: var(--dark-blue);
  background-image: radial-gradient(circle at top right, #1e3a8a 0%, var(--dark-blue) 60%);
  color: var(--text-main);
  line-height: 1.7;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
}

a { color: var(--primary-amber); text-decoration: none; transition: color var(--transition-speed) ease; }
a:hover { color: var(--primary-gold); }

/* ==========================================================================
   LAYOUT & UTILITY CLASSES
   ========================================================================== */
.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }
.section { padding: 70px 0; }
.section-title { text-align: center; font-size: 2.2rem; color: var(--primary-amber); margin-bottom: 50px; position: relative; }
.section-title::after { content: ''; display: block; width: 60px; height: 3px; background: var(--primary-amber); margin: 15px auto 0; border-radius: 2px; }

.grid { display: grid; gap: 25px; }
.grid-2 { grid-template-columns: repeat(auto-fit, minmax(min(100%, 300px), 1fr)); }
.grid-3 { grid-template-columns: repeat(auto-fit, minmax(min(100%, 280px), 1fr)); }
.grid-4 { grid-template-columns: repeat(auto-fit, minmax(min(100%, 250px), 1fr)); }

.text-center { text-align: center; }
.w-full { width: 100%; }

/* ==========================================================================
   BUTTONS
   ========================================================================== */
.btn { display: inline-flex; align-items: center; justify-content: center; background: var(--primary-amber); color: #0f172a; padding: 10px 20px; border-radius: 6px; font-weight: 600; font-size: 0.95rem; border: 2px solid var(--primary-amber); cursor: pointer; transition: all var(--transition-speed) ease; }
.btn:hover { background: var(--primary-gold); border-color: var(--primary-gold); color: #0f172a; transform: translateY(-2px); box-shadow: 0 4px 10px rgba(245, 158, 11, 0.3); }
.btn-outline { background: transparent; color: var(--primary-amber); }
.btn-outline:hover { background: var(--primary-amber); color: #0f172a; }

/* ==========================================================================
   SECTION: HERO
   ========================================================================== */
.hero { padding: 80px 20px; text-align: center; border-bottom: 1px solid rgba(255,255,255,0.05); }
.hero .badge { display: inline-block; background: rgba(251, 191, 36, 0.15); color: var(--primary-amber); padding: 8px 16px; border-radius: 50px; font-weight: 600; margin-bottom: 20px; border: 1px solid var(--primary-amber); }
.hero h1 { font-size: 2.8rem; color: #ffffff; line-height: 1.3; margin-bottom: 20px; max-width: 900px; margin-left: auto; margin-right: auto; }
.hero .subtitle { font-size: 1.3rem; color: var(--primary-amber); font-weight: 500; }

/* ==========================================================================
   SECTION: QUOTE CARDS (REMEMBER, RETURN, RESTORE)
   ========================================================================== */
.quote-card { background: var(--card-bg); border-left: 4px solid var(--primary-amber); padding: 25px; border-radius: 0 8px 8px 0; box-shadow: 0 4px 6px rgba(0,0,0,0.3); }
.quote-card strong { display: block; color: var(--primary-amber); font-size: 1.2rem; margin-bottom: 10px; }
.quote-card p { font-style: italic; color: var(--text-main); }

/* ==========================================================================
   SECTION: LIVE DATE BANNER
   ========================================================================== */
.date-section { background: linear-gradient(to right, #ffffff, #f8fafc); border: 1px solid #e2e8f0; border-left: 6px solid #eda705; border-radius: 12px; width: 100%; margin: 40px 0; padding: 30px; box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03); font-family: system-ui, -apple-system, sans-serif; }
.date-banner-container { display: flex; flex-direction: row; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 20px; width: 100%; }
.date-col { display: flex; flex-direction: column; }
.date-header { font-size: 13px; color: #64748b; text-transform: uppercase; letter-spacing: 2px; font-weight: 700; margin: 0 0 8px 0; }
.date-main-display { font-size: 32px; font-weight: 800; color: #0f172a; margin: 0; line-height: 1.1; letter-spacing: -0.5px; }
.date-sub-display { font-size: 15px; color: #475569; line-height: 1.6; margin: 0; background: #f1f5f9; padding: 12px 24px; border-radius: 12px; border: 1px solid #e2e8f0; text-align: center; }
.date-sub-display strong { color: #eda705; font-size: 16px; letter-spacing: 0.5px; display: block; margin-bottom: 4px; text-transform: uppercase; }
.btn-col { align-items: flex-end; }
.date-section .btn-outline { display: inline-flex; align-items: center; justify-content: center; border: 2px solid #eda705; color: #eda705; background-color: transparent; text-decoration: none; padding: 12px 28px; border-radius: 8px; font-weight: 600; font-size: 15px; white-space: nowrap; transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1); }
.date-section .btn-outline:hover { background-color: #eda705; color: #fff; transform: translateY(-2px); box-shadow: 0 4px 12px rgba(237, 167, 5, 0.2); }

/* ==========================================================================
   SECTION: SEVEN PILLARS (GRID CARDS & DETAILS)
   ========================================================================== */
.card { background: var(--card-bg); border: 1px solid var(--card-border); border-radius: 12px; padding: 30px 20px; text-align: center; transition: transform 0.3s, box-shadow 0.3s; box-shadow: 0 4px 15px rgba(0,0,0,0.2); display: flex; flex-direction: column; height: 100%; }
.card:hover { transform: translateY(-5px); box-shadow: 0 10px 25px rgba(0,0,0,0.5); border-color: var(--primary-amber); }
.card .icon { font-size: 3rem; margin-bottom: 15px; display: flex; align-items: center; justify-content: center; background: rgba(251, 191, 36, 0.1); width: 80px; height: 80px; line-height: 80px; border-radius: 50%; margin-left: auto; margin-right: auto; }
.card h3 { color: #fff; font-size: 1.25rem; margin-bottom: 15px; }
.card p { color: var(--text-muted); font-size: 0.95rem; margin-bottom: 20px; flex-grow: 1; }

.pillar-detail { background: rgba(15, 23, 42, 0.4); border: 1px solid rgba(255,255,255,0.05); border-radius: 16px; padding: 40px; margin-bottom: 40px; box-shadow: 0 10px 30px rgba(0,0,0,0.2); }
.pillar-detail h2 { color: var(--primary-amber); font-size: 2rem; margin-bottom: 15px; border-bottom: 1px solid rgba(255,255,255,0.1); padding-bottom: 15px; }
.pillar-detail .intro-quote { font-size: 1.15rem; color: #cbd5e1; font-style: italic; margin-bottom: 30px; border-left: 3px solid var(--primary-gold); padding-left: 15px; }
.pillar-detail h3 { color: #fff; margin-top: 35px; margin-bottom: 15px; display: flex; align-items: center; gap: 10px; }
.pillar-detail ul { list-style: none; }
.pillar-detail ul li { position: relative; padding-left: 25px; margin-bottom: 10px; color: var(--text-muted); }
.pillar-detail ul li::before { content: '✓'; position: absolute; left: 0; color: var(--primary-amber); font-weight: bold; }
.pillar-detail ul li strong { color: #fff; }

.summary-box { background: rgba(0,0,0,0.3); border-left: 4px solid var(--primary-gold); padding: 20px; border-radius: 0 8px 8px 0; margin-top: 30px; }
.summary-box p { margin-bottom: 5px; color: var(--text-muted); }
.summary-box strong { color: var(--primary-amber); }

/* ==========================================================================
   SECTION: SPIRITUAL WARFARE
   ========================================================================== */
.warfare-section { background: var(--card-bg); border-top: 1px solid var(--card-border); }
.warfare-subtitle { font-size: 1.2rem; color: var(--text-main); margin-bottom: 40px; max-width: 800px; margin-left: auto; margin-right: auto; }
.scripture-callout { margin-top: 40px; background: rgba(0,0,0,0.4); padding: 20px; border-radius: 8px; border-left: 4px solid var(--primary-amber); }
.scripture-callout p { font-style: italic; color: #fff; font-size: 1.1rem; }

/* ==========================================================================
   SECTION: PDF DOWNLOAD
   ========================================================================== */
.pdf-topics { margin-top: 40px; text-align: center; border-top: 1px solid rgba(255,255,255,0.1); padding-top: 20px; }
.pdf-topics ul { list-style: none; display: flex; flex-wrap: wrap; justify-content: center; gap: 20px; padding: 0; }
.pdf-topics ul li { color: var(--text-main); }

/* ==========================================================================
   SECTION: CALL TO ACTION (CTA)
   ========================================================================== */
.cta-section { background: rgba(0,0,0,0.5); border-top: 2px solid var(--primary-amber); }
.cta-section h2 { color: #fff; font-size: 2.2rem; margin-bottom: 20px; }
.cta-section p { font-size: 1.1rem; color: var(--text-muted); max-width: 800px; margin: 0 auto 30px; }

/* ==========================================================================
   RESPONSIVE DESIGN (MEDIA QUERIES)
   ========================================================================== */
@media (max-width: 768px) { 
  .section { padding: 50px 0; } 
  .hero h1 { font-size: 2rem; }
  .date-banner-container { flex-direction: column; text-align: center; align-items: center; }
  .date-col, .btn-col { align-items: center; }
  .date-main-display { font-size: 28px; }
  .pillar-detail { padding: 20px; }
}