/* =======================
   Reset & Base
======================= */
* { margin: 0; padding: 0; box-sizing: border-box; }
html, body { overflow-x: hidden; }
body {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: #333;
  background: #f9f9f9;
}
.hidden { display: none !important; }

/* =======================
   Navbar
======================= */
.navbar {
  background: #0B3550;
  color: #fff;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 30px;
  position: relative;
}

.logo-wrapper { display: flex; align-items: center; gap: 6px; white-space: nowrap; }
.logo { font-size: 20px; font-weight: bold; color: #fff; }
.tagline { font-size: 14px; color: #f4b400; letter-spacing: 1px; }

.nav-links ul { list-style: none; display: flex; gap: 20px; }
.nav-links a { color: #fff; text-decoration: none; font-weight: bold; }

.hamburger { display: none; font-size: 26px; cursor: pointer; color: #fff; }
.mobile-menu {
  display: none;
  flex-direction: column;
  background: #0B3550;
  padding: 15px;
}
.mobile-menu a {
  color: #fff;
  padding: 10px 0;
  text-decoration: none;
  border-bottom: 1px solid rgba(255,255,255,0.2);
}

/* =======================
   Hero (Home)
======================= */
.hero {
  background: url('hero.jpg') center/cover no-repeat;
  color: #fff;
  text-align: center;
  padding: 120px 20px;
  position: relative;
}
.hero::after {
  content: ""; position: absolute; top: 0; left: 0; width: 100%; height: 100%;
  background: rgba(0,0,0,0.5);
}
.hero-content { position: relative; z-index: 1; max-width: 900px; margin: auto; }
.hero-logo { 
  max-width: 200px;
  height: auto;
  margin-bottom: 20px;
}
.hero h2 { font-size: 1rem; font-weight: bold; margin: 15px 0; }
.hero h3 { font-size: 1.8rem; margin-bottom: 20px; color: #f4b400 !important; }
.hero p { margin-bottom: 20px; }

.cta-btn {
  background: #f4b400; color: #000;
  padding: 10px 20px; border-radius: 5px; text-decoration: none;
  font-weight: bold; display: inline-block;
}

/* =======================
   Scripture Block
======================= */
.scripture {
  background: #0B3550;
  color: #fff;
  text-align: center;
  padding: 25px 16px;
  margin: 30px auto;
  border-radius: 8px;
  max-width: 900px;       /* narrower overall width */
  width: 90%;             /* keeps margins consistent on mobile */
}


.scripture blockquote {
  font-style: italic;
  font-size: 1.7rem;      
  margin-bottom: 10px;
}

.scripture footer {
  font-weight: bold;
  font-size: 1.3rem;
  margin-top: 10px;
  color: #f4b400;
}


/* =======================
   Services
======================= */
#services { padding: 40px 20px; text-align: center; }
#services h2 { margin-bottom: 30px; font-size: 2rem; color: #0B3550; }
.services {
  display: grid; grid-template-columns: repeat(3,1fr);
  gap: 20px; max-width: 1200px; margin: auto;
}
.service-card {
  background: #fff; border-radius: 8px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
  padding: 20px; text-align: left;
}
.service-card h3 { color: #0B3550; margin-bottom: 10px; }
.service-card ul { list-style: disc; padding-left: 20px; }

/* =======================
   Footer
======================= */
.footer {
  text-align: center;
  padding: 40px 20px;
  color: #333;
  font-size: 0.9rem;
  background: #f9f9f9;
}

/* Contact Section (inside footer) */
.contact {
  text-align: center;
  margin-bottom: 25px;
}

.contact h2 {
  color: #0B3550;
  font-size: 1.5rem;
  margin-bottom: 10px;
}

.contact p {
  margin-bottom: 20px;
  line-height: 1.8;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.contact p span {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}

.contact i.gold {
  color: #f4b400;
  font-size: 1rem;
}

.contact .cta-btn {
  background: #f4b400;
  color: #000;
  padding: 10px 25px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  display: inline-block;
  margin-top: 10px;
}

.contact .cta-btn:hover {
  background: #e0a700;
}

/* Mobile layout — stack neatly */
@media (max-width: 768px) {
  .contact p {
    flex-direction: column;
    gap: 8px;
  }

  .contact p span {
    justify-content: center;
  }
}

/* =======================
   Modal Popups
======================= */
.modal, .popup-overlay {
  display: none;
  position: fixed; top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(0,0,0,0.7);
  justify-content: center; align-items: center;
  z-index: 9999;
}
.modal-content, .popup-box {
  background: #fff; 
  color: #333;
  padding: 30px; 
  border-radius: 10px;
  max-width: 500px; 
  width: 90%;
  text-align: center; 
  position: relative;
  box-shadow: 0 5px 25px rgba(0,0,0,0.3);
  box-sizing: border-box;
}
.modal-content .close, .close-btn {
  position: absolute; top: 10px; right: 15px;
  font-size: 22px; cursor: pointer; color: #666;
}
.modal-content .close:hover, .close-btn:hover { color: #000; }

/* Inputs inside popup */
.modal-content input, .modal-content textarea {
  width: 100%; 
  padding: 10px; 
  margin: 10px 0;
  border: 1px solid #ccc; 
  border-radius: 5px;
  box-sizing: border-box;
  font-family: inherit;
  font-size: 14px;
}
.modal-content button {
  background: #f4b400; 
  border: none; 
  color: #000;
  font-weight: bold; 
  padding: 10px 20px;
  border-radius: 6px; 
  cursor: pointer; 
  margin-top: 10px;
  font-size: 16px;
  transition: background 0.3s ease;
}
.modal-content button:hover { background: #e0a700; }

/* =======================
   Responsive Navbar
======================= */
@media (max-width: 768px) {
  .nav-links { display: none; }
  .hamburger { display: block; }
  .tagline { font-size: 12px; }
}
/* =======================
   Hero Heading (Cross + Title)
======================= */
.hero-heading {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  text-align: center;
}

.hero-heading h1 {
  font-family: 'Black Ops One', cursive;
  font-size: clamp(2.5rem, 6vw, 5rem);
  color: #f4b400;
  display: flex;
  align-items: center;
  gap: 12px;
  letter-spacing: 1px;
  text-shadow: 0 2px 8px rgba(0,0,0,0.4);
}

/* Cross Icon */
.cross-icon {
  width: clamp(40px, 5vw, 70px);
  height: auto;
  color: #f4b400;
  flex-shrink: 0;
  filter: drop-shadow(0 2px 4px rgba(0,0,0,0.4));
}

/* mobile: keep all cards, show 2 columns per row */
@media (max-width: 768px) {
  .services {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    overflow: visible !important;
    height: auto !important;
  }

  .service-card {
    display: block !important;
    visibility: visible !important;
  }
}

