/* Root Variables */
:root {
  --primary-color: #00ffcc; /* Cinematic glow colour */
  --footer-text-color: #e0e0e0; /* Unified footer font colour */
  --text-muted: #999999;
  --background-color: #0a0a0a;
  --font-family: 'Segoe UI', Arial, sans-serif;
}

/* Global Reset */
body {
  margin: 0;
  font-family: var(--font-family);
  background: var(--background-color);
  color: #ffffff;
  line-height: 1.6;
}

/* Cinematic Background Glow */
.body-glow {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at center, rgba(0,255,204,0.1), transparent 70%);
  z-index: -1;
}

/* Header */
header {
  background: rgba(0,0,0,0.8);
  padding: 15px 30px;
  border-bottom: 1px solid var(--primary-color);
  box-shadow: 0 0 12px var(--primary-color);
}
header .nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
header .logo img {
  height: 150px; /* Increased from 50px to 150px */
}
header .menu a {
  color: #ffffff;
  text-decoration: none;
  margin: 0 12px;
  transition: color 0.3s ease;
}
header .menu a:hover,
header .menu a.active {
  color: var(--primary-color);
}

/* Sections */
.section {
  padding: 60px 20px;
  text-align: center;
}
.section-kicker {
  font-size: 1rem;
  text-transform: uppercase;
  margin-bottom: 10px;
}
.section-title {
  font-size: 2rem;
  margin-bottom: 20px;
}
.section-subtitle {
  font-size: 1.2rem;
  margin-bottom: 20px;
  color: var(--footer-text-color);
}
.lead {
  font-size: 1.1rem;
  max-width: 800px;
  margin: 0 auto 30px;
}

/* Glow Text */
.glow-text {
  color: var(--primary-color);
  text-shadow: 0 0 8px var(--primary-color);
}

/* Panels, Boxes, Cards */
.box, .panel, .card {
  border: 1px solid var(--primary-color);
  box-shadow: 0 0 12px var(--primary-color);
  border-radius: 8px;
  padding: 20px;
  background: rgba(0,0,0,0.6);
  margin-bottom: 20px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.panel-glass {
  background: rgba(255,255,255,0.05);
  backdrop-filter: blur(6px);
}

/* Hover Glow Pulse */
.box:hover, .panel:hover, .card:hover {
  transform: translateY(-5px);
  box-shadow: 0 0 20px var(--primary-color), 0 0 40px rgba(0,255,204,0.6);
}

/* Grid Layout */
.grid, .panel-grid {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  justify-content: center;
}

/* Chips */
.chip {
  display: inline-block;
  padding: 6px 12px;
  border-radius: 20px;
  font-size: 0.9rem;
  background: rgba(0,0,0,0.7);
  border: 1px solid var(--primary-color);
  margin-bottom: 10px;
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 12px 20px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: bold;
  cursor: pointer;
  transition: all 0.3s ease;
}
.btn.primary {
  background: var(--primary-color);
  color: #000;
}
.btn.primary:hover {
  background: #00e6b8;
}

/* Glow Buttons with Icons */
.glow-btn {
  border: 1px solid var(--primary-color);
  box-shadow: 0 0 12px var(--primary-color);
  border-radius: 8px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.glow-btn:hover {
  transform: scale(1.05);
  box-shadow: 0 0 20px var(--primary-color), 0 0 40px rgba(0,255,204,0.6);
}
.glow-btn i {
  font-size: 1rem;
}

/* Forms */
.contact-form input,
.contact-form textarea,
.prayer-form input,
.prayer-form textarea {
  width: 100%;
  padding: 12px;
  margin: 10px 0 20px;
  border: 1px solid var(--primary-color);
  border-radius: 6px;
  background: #fff;
  color: #000;
  box-shadow: 0 0 8px var(--primary-color);
  transition: box-shadow 0.3s ease;
}
.contact-form input:focus,
.contact-form textarea:focus,
.prayer-form input:focus,
.prayer-form textarea:focus {
  box-shadow: 0 0 15px var(--primary-color);
  outline: none;
}

/* Scripture Styling */
blockquote.scripture {
  font-style: italic;
  color: var(--primary-color);
  text-shadow: 0 0 6px var(--primary-color);
  margin: 0 auto;
  max-width: 700px;
}
.scripture-tagline {
  font-size: 1rem;
  font-weight: 500;
}

/* Footer */
footer {
  border-top: 1px solid var(--primary-color);
  box-shadow: 0 0 12px var(--primary-color);
  border-radius: 8px 8px 0 0;
  padding: 20px;
  margin-top: 40px;
  background: rgba(0,0,0,0.8);
  text-align: center;
}
footer .foot-links a {
  color: var(--footer-text-color);
  margin: 0 10px;
  text-decoration: none;
}
footer p {
  color: var(--footer-text-color);
}
footer .footer-tagline {
  margin-top: 10px;
}

/* Animations */
.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Staggered Fade-In */
.fade-in:nth-child(1) { transition-delay: 0.1s; }
.fade-in:nth-child(2) { transition-delay: 0.2s; }
.fade-in:nth-child(3) { transition-delay: 0.3s; }
.fade-in:nth-child(4) { transition-delay: 0.4s; }
.fade-in:nth-child(5) { transition-delay: 0.5s; }
.fade-in:nth-child(6) { transition-delay: 0.6s; }

/* ========================= */
/* Responsive Tweaks */
/* ========================= */

/* Tablets */
@media (max-width: 992px) {
  header .nav {
    flex-direction: column;
    align-items: flex-start;
  }
  header .menu {
    margin-top: 10px;
  }
  .section-title {
    font-size: 1.8rem;
  }
  .lead {
    font-size: 1rem;
  }
  .grid, .panel-grid {
    flex-direction: column;
    align-items: center;
  }
}

/* Mobile Phones */
@media (max-width: 600px) {
  header .logo img {
    height: 120px; /* Increased from 40px to 120px for mobile */
  }
  header .menu a {
    margin: 6px 0;
    display: block;
  }
  .section {
    padding: 40px 15px;
  }
  .section-title {
    font-size: 1.5rem;
  }
  .section-subtitle {
    font-size: 1rem;
  }
  .btn, .glow-btn {
    width: 100%;
    justify-content: center;
    font-size: 1rem;
  }
  .grid, .panel-grid {
    flex-direction: column;
    gap: 15px;
  }
  .box, .panel, .card {
    padding: 15px;
  }
  blockquote.scripture {
    font-size: 0.95rem;
    padding: 0 10px;
  }
}
