/* ===== Talk to Jesus - Global Styles ===== */
:root {
  --gold: #C9A84C;
  --gold-light: #E8D48B;
  --dark: #1a1a2e;
  --darker: #0f0f1e;
  --text: #e8e8e8;
  --text-muted: #a0a0b0;
  --card-bg: rgba(255,255,255,0.05);
  --card-border: rgba(201,168,76,0.2);
}

* { margin: 0; padding: 0; box-sizing: border-box; }

body {
  font-family: 'Georgia', 'Times New Roman', serif;
  background: var(--darker);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
}

/* ===== Navigation ===== */
.nav {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 100;
  background: rgba(15,15,30,0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--card-border);
  padding: 0 2rem;
}
.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 70px;
}
.nav-logo {
  font-size: 1.4rem;
  font-weight: bold;
  color: var(--gold);
  text-decoration: none;
  letter-spacing: 1px;
}
.nav-logo span { color: var(--text); font-weight: 300; }
.nav-links { display: flex; gap: 2rem; list-style: none; }
.nav-links a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.95rem;
  transition: color 0.3s;
  font-family: Arial, sans-serif;
}
.nav-links a:hover, .nav-links a.active { color: var(--gold); }
.nav-hamburger {
  display: none;
  background: none;
  border: none;
  color: var(--gold);
  font-size: 1.5rem;
  cursor: pointer;
}

/* ===== Hero ===== */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 2rem;
  background: radial-gradient(ellipse at center, rgba(201,168,76,0.08) 0%, transparent 70%);
  position: relative;
}
.hero::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><text y=".9em" font-size="90" opacity="0.03">✝</text></svg>') center/300px repeat;
  pointer-events: none;
}
.hero-content {
  position: relative;
  z-index: 1;
  max-width: 700px;
}
.hero h1 {
  font-size: 3.5rem;
  color: var(--gold);
  margin-bottom: 1rem;
  line-height: 1.2;
}
.hero .subtitle {
  font-size: 1.3rem;
  color: var(--text-muted);
  margin-bottom: 0.5rem;
  font-style: italic;
}
.hero .tagline {
  font-size: 1.1rem;
  color: var(--text-muted);
  margin-bottom: 2.5rem;
}
.hero-cta {
  display: inline-block;
  background: var(--gold);
  color: var(--darker);
  padding: 1rem 2.5rem;
  border-radius: 50px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1rem;
  font-family: Arial, sans-serif;
  transition: transform 0.3s, box-shadow 0.3s;
}
.hero-cta:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(201,168,76,0.3);
}

/* ===== Sections ===== */
section {
  padding: 5rem 2rem;
  max-width: 1200px;
  margin: 0 auto;
}
section h2 {
  text-align: center;
  font-size: 2rem;
  color: var(--gold);
  margin-bottom: 0.5rem;
}
section .section-sub {
  text-align: center;
  color: var(--text-muted);
  margin-bottom: 3rem;
  font-style: italic;
}

/* ===== How It Works ===== */
.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}
.step {
  text-align: center;
  padding: 2rem;
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: 16px;
  transition: transform 0.3s;
}
.step:hover { transform: translateY(-5px); }
.step-icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}
.step h3 {
  color: var(--gold);
  margin-bottom: 0.75rem;
  font-family: Arial, sans-serif;
}
.step p {
  color: var(--text-muted);
  font-size: 0.95rem;
}

/* ===== Submit Form ===== */
.submit-section {
  background: radial-gradient(ellipse at center, rgba(201,168,76,0.05) 0%, transparent 70%);
}
.form-container {
  max-width: 600px;
  margin: 0 auto;
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: 16px;
  padding: 2.5rem;
}
.form-container label {
  display: block;
  color: var(--gold);
  font-weight: bold;
  margin-bottom: 0.5rem;
  font-size: 0.9rem;
  font-family: Arial, sans-serif;
}
.form-container input,
.form-container select,
.form-container textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  background: rgba(255,255,255,0.05);
  border: 1px solid var(--card-border);
  border-radius: 8px;
  color: var(--text);
  font-family: Georgia, serif;
  font-size: 1rem;
  margin-bottom: 1.25rem;
  transition: border-color 0.3s;
}
.form-container input:focus,
.form-container select:focus,
.form-container textarea:focus {
  outline: none;
  border-color: var(--gold);
}
.form-container textarea {
  min-height: 200px;
  resize: vertical;
}
.form-container select option {
  background: var(--dark);
}
.form-hint {
  font-size: 0.85rem;
  color: var(--text-muted);
  font-style: italic;
  margin-top: -0.75rem;
  margin-bottom: 1.25rem;
}
.submit-btn {
  width: 100%;
  padding: 1rem;
  background: var(--gold);
  color: var(--darker);
  border: none;
  border-radius: 50px;
  font-size: 1.1rem;
  font-weight: bold;
  cursor: pointer;
  font-family: Arial, sans-serif;
  transition: transform 0.3s, box-shadow 0.3s;
}
.submit-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(201,168,76,0.3);
}
.submit-btn:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none;
}
.form-response {
  text-align: center;
  margin-top: 1rem;
  font-size: 1rem;
  min-height: 1.5rem;
}
.form-response.success { color: #4CAF50; }
.form-response.error { color: #f44336; }

/* ===== Video Gallery ===== */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 1.5rem;
}
.video-card {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: 16px;
  overflow: hidden;
  transition: transform 0.3s;
}
.video-card:hover { transform: translateY(-5px); }
.video-card iframe {
  width: 100%;
  aspect-ratio: 9/16;
  border: none;
}
.video-card-info {
  padding: 1rem;
}
.video-card-info .card-name {
  color: var(--gold);
  font-weight: bold;
}
.video-card-info .card-topic {
  color: var(--text-muted);
  font-size: 0.85rem;
}
.gallery-empty {
  text-align: center;
  padding: 3rem;
  color: var(--text-muted);
  font-style: italic;
  grid-column: 1 / -1;
}

/* ===== Values / Ethos ===== */
.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}
.value-card {
  text-align: center;
  padding: 2rem;
  border-radius: 16px;
  background: var(--card-bg);
  border: 1px solid var(--card-border);
}
.value-card .value-icon { font-size: 2rem; margin-bottom: 1rem; }
.value-card h3 {
  color: var(--gold);
  margin-bottom: 0.5rem;
  font-family: Arial, sans-serif;
}
.value-card p { color: var(--text-muted); font-size: 0.9rem; }

/* ===== Footer ===== */
.footer {
  text-align: center;
  padding: 3rem 2rem;
  border-top: 1px solid var(--card-border);
  color: var(--text-muted);
  font-size: 0.85rem;
}
.footer-socials {
  margin-bottom: 1rem;
  display: flex;
  justify-content: center;
  gap: 1.5rem;
}
.footer-socials a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 1.2rem;
  transition: color 0.3s;
}
.footer-socials a:hover { color: var(--gold); }

/* ===== Responsive ===== */
@media (max-width: 768px) {
  .nav-links { display: none; }
  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 70px;
    left: 0;
    right: 0;
    background: rgba(15,15,30,0.98);
    padding: 1rem 2rem;
    gap: 1rem;
  }
  .nav-hamburger { display: block; }
  .hero h1 { font-size: 2.2rem; }
  .steps, .values-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr; }
  .form-container { padding: 1.5rem; }
}
