body {
  margin: 0;
  font-family: 'Segoe UI', sans-serif;
  color: #1f2933;
}

.container {
  max-width: 1100px;
  margin: auto;
  padding: 20px;
}

.heart {
  color: red;
  font-size: 16px;
  animation: heartbeat 1.5s infinite;
}

@keyframes heartbeat {
  0% { transform: scale(1); }
  25% { transform: scale(1.2); }
  50% { transform: scale(1); }
  75% { transform: scale(1.2); }
  100% { transform: scale(1); }
}

/* Navbar */
.navbar {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: white;
  border-bottom: 1px solid #e5e7eb;
  box-shadow: 0 4px 12px rgba(0,0,0,0.03);
  border-radius: 0 0 12px 12px;   /* slight curves */
}

.header-flex {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px 20px;   /* decreased height */
}

/* Logo */
.logo {
  height: 58px;        /* increased size */
  transition: 0.3s;
}

.logo:hover {
  transform: scale(1.05);
}

/* Menu */
nav a {
  margin-left: 20px;
  text-decoration: none;
  color: #1f2933;
  font-weight: 500;
  font-size: 14px;     /* slightly smaller text */
  position: relative;
  padding-bottom: 4px;
}

/* Hover underline */
nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0%;
  height: 2px;
  background: #1e3a8a;
  transition: 0.3s;
}

nav a:hover::after {
  width: 100%;
}

/* Active link */
nav a.active {
  color: #1e3a8a;
}

nav a.active::after {
  width: 100%;
}

/* Active page */
nav a.active {
  color: #1e3a8a;
}

nav a.active::after {
  width: 100%;
}
.logo {
  transition: 0.3s;
}

.logo:hover {
  transform: scale(1.05);
}




/* Header */
.header-flex {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.logo { height: 48px; }
nav a { margin-left: 20px; text-decoration: none; color: #1f2933; }

/* Hero */
.hero {
  background: url('images/cover1.jpg') center/cover no-repeat;
  height: 45vh;
}

/* Man of God */
.man-section { padding: 80px 0; }
.man-flex { display:flex; gap:50px; align-items:center; }
.man-img { width:35%; border-radius:10px; }
.man-text h2 { color:#1e3a8a; }

/* Carousel */
.carousel-section { padding:60px 0; text-align:center; }
.carousel-item img {
  height: 280px;   /* SMALLER */
  object-fit: cover;
  border-radius: 8px;
}

/* Sermon */
.sermon-home { padding:60px 0; text-align:center; }

/* Timings */
.timings { padding:60px 0; background:#fafafa; }
.grid-3 { display:grid; grid-template-columns:repeat(3,1fr); gap:30px; }
.card { border:1px solid #ddd; padding:30px; border-radius:6px; }

.footer {
  background: #1e3a8a;
  color: white;
  padding: 60px 0 20px;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
}

.footer a {
  color: #e0e7ff;
  text-decoration: none;
}

.footer a:hover {
  text-decoration: underline;
}

.footer h3 {
  margin-bottom: 10px;
}

.footer-bottom {
  text-align: center;
  margin-top: 30px;
  font-size: 14px;
  opacity: 0.8;
}

/* Mobile */
@media(max-width:768px){
  .footer-grid {
    grid-template-columns: 1fr;
  }
}@media(max-width:768px){

  /* Navbar */
  .header-flex {
    flex-direction: column;
    gap: 10px;
  }

  nav {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
  }

  nav a {
    margin: 6px 10px;
    font-size: 13px;
  }

  /* Man of God */
  .man-flex {
    flex-direction: column;
  }

  .man-img {
    width: 100%;
  }

  /* Timings cards */
  .grid-3 {
    grid-template-columns: 1fr;
  }

}


/* Buttons */
.btn {
  background:#1e3a8a;
  color:white;
  padding:10px 22px;
  text-decoration:none;
  border-radius:4px;
}

/* Animation */
.fade {
  opacity: 0;
  transform: translateY(20px);
  transition: 1s ease;
}
.fade.show {
  opacity: 1;
  transform: translateY(0);
}



/* About Page */
.about-hero {
  background: url('images/cover5.jpg') center/cover no-repeat;
  height: 45vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.about-hero-text {
  background: rgba(0,0,0,0.5);
  color: white;
  padding: 40px 60px;
  text-align: center;
  border-radius: 8px;
}

.about-section {
  padding: 80px 0;
}

.about-section.light {
  background: #fafafa;
}

.about-flex {
  display: flex;
  gap: 60px;
  align-items: center;
}

.about-flex.reverse {
  flex-direction: row-reverse;
}

.about-img {
  width: 40%;
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.about-text {
  width: 60%;
  line-height: 1.8;
}

.about-text-center {
  max-width: 800px;
  margin: auto;
  text-align: center;
  line-height: 1.8;
}

.highlight {
  color: #1e3a8a;
  margin: 15px 0;
}

blockquote {
  font-style: italic;
  font-size: 18px;
  color: #1e3a8a;
  margin: 20px 0;
}

.bold-quote {
  font-size: 20px;
  font-weight: 600;
  color: #1e3a8a;
  margin: 20px 0;
}

/* Team Section */
.team-section {
  padding: 80px 0;
  text-align: center;
  background: #fafafa;
}

.team-title {
  font-size: 36px;
  color: #1e3a8a;
  margin-bottom: 10px;
}

.team-subtitle {
  color: #6b7280;
  margin-bottom: 40px;
}

.team-grid {
  display: flex;
  justify-content: center;
  gap: 60px;
}

.team-card {
  background: white;
  padding: 40px 30px;
  border-radius: 12px;
  width: 260px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.05);
}

.team-img {
  width: 140px;
  height: 140px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 15px;
  border: 4px solid #e5e7eb;
}

.team-card h3 {
  margin-bottom: 5px;
}

.team-card p {
  color: #6b7280;
  font-size: 14px;
}

.about-flex {
  display: flex;
  gap: 40px;
  align-items: center;
}

@media(max-width:768px){
  .about-flex {
    flex-direction: column;
    gap: 20px;
  }
}

/* Mobile */
@media(max-width:768px){
  .team-grid {
    flex-direction: column;
    gap: 30px;
  }
}

/* Mobile */
@media(max-width:768px){
  .about-flex {
    flex-direction: column;
  }
  .about-img, .about-text {
    width: 100%;
  }
}

/* Mobile */
@media(max-width:768px){
  .man-flex, .footer-grid { flex-direction:column; grid-template-columns:1fr; }
  .man-img { width:100%; }
}

/* Sermon Page */
.sermon-page {
  padding: 80px 0;
  text-align: center;
}

.sermon-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
  margin-top: 40px;
}

.sermon-card iframe {
  width: 100%;
  height: 260px;
  border-radius: 8px;
  border: none;
}

.sermon-card h3 {
  margin-top: 10px;
  font-size: 16px;
}

/* Mobile */
@media(max-width:768px){
  .sermon-grid {
    grid-template-columns: 1fr;
  }
}
/* Shorts Section */
.shorts-section {
  padding: 80px 0;
  text-align: center;
  background: #fafafa;
}

.shorts-subtitle {
  color: #6b7280;
  margin-bottom: 30px;
}

.shorts-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
}

.shorts-grid iframe {
  width: 100%;
  height: 300px;
  border-radius: 10px;
  border: none;
}

/* Mobile */
@media(max-width:768px){
  .shorts-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .shorts-grid iframe {
    height: 250px;
  }
}
/* Gallery Page */
.gallery-page {
  padding: 80px 0;
  text-align: center;
}

.gallery-grid {
  columns: 4;
  column-gap: 15px;
  margin-top: 40px;
}

.gallery-img {
  width: 100%;
  margin-bottom: 15px;
  border-radius: 8px;
  cursor: pointer;
  transition: 0.3s;
}

.gallery-img:hover {
  transform: scale(1.02);
}

/* Lightbox */
#lightbox {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0,0,0,0.9);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 2000;
}

#lightbox img {
  max-width: 90%;
  max-height: 90%;
}

#close {
  position: absolute;
  top: 30px;
  right: 40px;
  font-size: 40px;
  color: white;
  cursor: pointer;
}

/* Mobile */
@media(max-width:768px){
  .gallery-grid {
    columns: 2;
  }
}
/* Lyrics Page */
.lyrics-search {
  padding: 30px 0;
  text-align: center;
}

.lyrics-search input {
  width: 60%;
  padding: 12px;
  font-size: 16px;
  border: 1px solid #ddd;
  border-radius: 6px;
}

.lyrics-grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 30px;
  padding: 60px 0;
}

.song-card {
  border: 1px solid #e5e7eb;
  padding: 30px;
  border-radius: 8px;
  cursor: pointer;
  transition: 0.3s;
}

.song-card:hover {
  box-shadow: 0 10px 25px rgba(0,0,0,0.05);
}

/* Modal */
#songModal {
  position: fixed;
  top:0;
  left:0;
  right:0;
  bottom:0;
  background: rgba(0,0,0,0.9);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 3000;
}

.song-content {
  background: white;
  padding: 40px;
  max-width: 600px;
  width: 90%;
  border-radius: 10px;
  display: none;
}

.song-content pre {
  white-space: pre-wrap;
  font-family: inherit;
}

#closeSong {
  position: absolute;
  top: 30px;
  right: 40px;
  font-size: 40px;
  color: white;
  cursor: pointer;
}

/* Mobile */
@media(max-width:768px){
  .lyrics-grid {
    grid-template-columns: 1fr;
  }

  .lyrics-search input {
    width: 90%;
  }
}
/* Coming Soon Page */
.coming-section {
  padding: 100px 0;
  text-align: center;
}

.language-grid {
  display: flex;
  justify-content: center;
  gap: 40px;
  margin: 40px 0;
}

.lang-card {
  border: 2px solid #1e3a8a;
  padding: 30px 50px;
  border-radius: 10px;
  font-size: 20px;
  color: #1e3a8a;
  font-weight: 600;
}

.highlight-text {
  font-size: 18px;
  color: #1e3a8a;
  font-weight: 600;
}

/* Mobile */
@media(max-width:768px){
  .language-grid {
    flex-direction: column;
  }
}
@media(max-width:768px){

  /* Lyrics */
  .lyrics-grid {
    grid-template-columns: 1fr;
  }

  .lyrics-search input {
    width: 90%;
  }

  /* Coming Soon */
  .language-grid {
    flex-direction: column;
  }

}

/* ===== WHATSAPP SECTION ===== */
.whatsapp-section {
  padding: 120px 0;
  background: linear-gradient(135deg, #e0f2fe, #dcfce7, #fef9c3);
  text-align: center;
}

.whatsapp-box {
  max-width: 750px;
  margin: auto;
  background: white;
  padding: 60px 40px;
  border-radius: 20px;
  box-shadow: 0 25px 60px rgba(0,0,0,0.1);
}

.whatsapp-box h2 {
  font-size: 36px;
  color: #065f46;
  margin-bottom: 15px;
}

.whatsapp-box p {
  font-size: 17px;
  color: #374151;
  margin-bottom: 10px;
}

.whatsapp-text {
  font-weight: 600;
  color: #047857;
  margin-top: 15px;
}

/* WhatsApp Button */
.whatsapp-btn {
  margin-top: 30px;
  background: linear-gradient(135deg, #22c55e, #16a34a);
  font-size: 20px;
  padding: 16px 44px;
  border-radius: 50px;
  color: white;
  display: inline-block;
  box-shadow: 0 10px 30px rgba(34,197,94,0.5);
  animation: pulse 2s infinite;
}

.whatsapp-btn:hover {
  transform: scale(1.05);
}

/* Pulse animation */
@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(34,197,94,0.7); }
  70% { box-shadow: 0 0 0 20px rgba(34,197,94,0); }
  100% { box-shadow: 0 0 0 0 rgba(34,197,94,0); }
}


/* ===== SUPPORT SECTION ===== */
.support-section {
  padding: 120px 0;
  background: linear-gradient(135deg, #eef2ff, #fdf4ff, #ecfeff);
}

.support-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 70px;
  align-items: center;
}

.support-text h2 {
  font-size: 34px;
  color: #4338ca;
  margin-bottom: 15px;
}

.support-text p {
  font-size: 16px;
  color: #374151;
  margin-bottom: 15px;
  line-height: 1.8;
}

.support-verse {
  background: linear-gradient(135deg, #dbeafe, #f0f9ff);
  padding: 14px 24px;
  border-radius: 12px;
  display: inline-block;
  font-style: italic;
  color: #1e3a8a;
  font-weight: 600;
  box-shadow: 0 10px 25px rgba(0,0,0,0.05);
}

/* QR Card */
.support-qr {
  background: white;
  padding: 40px 30px;
  border-radius: 20px;
  text-align: center;
  box-shadow: 0 25px 60px rgba(0,0,0,0.1);
  border: 3px dashed #6366f1;
}

.support-qr h3 {
  color: #4f46e5;
  font-size: 22px;
}

.support-qr img {
  width: 220px;
  margin: 20px 0;
  border-radius: 16px;
  border: 4px solid #c7d2fe;
}

.support-qr p {
  color: #475569;
  font-weight: 600;
}

/* Mobile */
@media(max-width:768px) {
  .support-grid {
    grid-template-columns: 1fr;
  }

  .whatsapp-box {
    padding: 20px 10px;
  }

  .whatsapp-box h2 {
    font-size: 25px;
  }
}
/* ===== MOBILE FIX (GLOBAL) ===== */
@media(max-width: 768px) {

  body {
    font-size: 15px;
  }

  .header-flex {
    flex-direction: column;
    gap: 10px;
  }

  nav {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
  }

  nav a {
    margin: 6px 10px;
    font-size: 13px;
  }

  /* Bible Page */
  .bible-controls {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 20px;
  }

  .bible-controls select {
    width: 100%;
    padding: 14px;
    font-size: 16px;
  }

  .verse-box {
    font-size: 17px;
    padding: 20px;
  }

  /* WhatsApp */
  .whatsapp-box {
    padding: 30px 20px;
  }

  .whatsapp-btn {
    width: 100%;
    text-align: center;
  }

  /* Man of God */
  .man-flex {
    flex-direction: column;
  }

  .man-img {
    width: 100%;
  }

  /* Gallery */
  .gallery-grid {
    columns: 2;
  }

  /* Shorts */
  .shorts-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  /* Sermons */
  .sermon-grid {
    grid-template-columns: 1fr;
  }

  /* Footer */
  .footer-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

}
html, body {
  width: 100%;
  overflow-x: hidden;
}
