*{
    margin: 0;
    padding: 0;
    font-family: 'Poppins', sans-serif;
}

/*----------------------------------
============= HEADER ==============
----------------------------------*/
.header{
    min-height: 100vh;
    width: 100%;
    background-image: linear-gradient(rgba(4,9,30,0.7),rgba(4,9,30,0.7)),url(images/home-screen.webp);
    background-position: top;
    background-size: cover;
    position: relative;
}   

/*----------------------------------
============== LOGO ===============
----------------------------------*/
nav{
    display: flex;
    padding: 2% 6%;
    justify-content: space-between;
    align-items: center;
}

nav img{
    width: 100px;
}

.logo-text {
  color: white;
  font-weight: 600;
  font-size: 20px;
}

nav a{
  display: flex;
  align-items: center;
  gap: 0px;
  text-decoration: none;
}

/*----------------------------------
============= NAV BAR ==============
===============  +  ================
============ DROPDOWNS =============
----------------------------------*/
.nav-links{
    flex: 1;
    text-align: right;
}

.nav-links ul li{
    list-style: none;
    display: inline-block;
    padding: 8px 12px;
    position: relative;
  }

.nav-links a, .dropdown-button{
  background: transparent;
  border: none;
  color: white;
  font-weight: 500;
  font-size: 14px;
  text-decoration: none;
}

.nav-links ul li::after{
  content: '';
  width: 0%;
  height: 2px;
  background-color: #EFBF04;
  display: block;
  margin: auto;
  transition: 0.5s;
}

.nav-links ul li:hover:after{
  width: 100%;
}

nav .fa-solid{
  display: none;
}
.dropdown-content {
  position: absolute;
  top: 100%;
  left: 0;
  background-color: rgb(255, 255, 255);
  color: black;
  min-width: 180px;
  border-radius: 6px;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.15);
  z-index: 1000;
  display: none;
  flex-direction: column;
    list-style: none;        
  padding: 0;             
  margin: 0;                   
}

.dropdowns:hover .dropdown-content {
  display: flex;
}

.dropdown-content a {
  padding: 10px 16px;
  color: #003366;
  text-decoration: none;
  font-weight: 600;
  transition: background 0.2s ease;
    display: block;
  white-space: nowrap;
  text-align: left;
}

.dropdown-content a:hover {
  background-color: #f0f0f0;
}

/*----------------------------------
============== Hero ==============
----------------------------------*/
.text-box{
  width: 90%;
  color: #fff;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
}

.text-box h1{
  font-size: 62px;
}

.text-box p{
  font-size: 25px;
  margin-bottom: 40px;
  color: #ccc;
}

.text-box{
  margin: 10px 0px 40px;
  color: #fff;
}


.hero-button{
  display: inline-block;
  border: 2px solid #EFBF04;
  color: #EFBF04;
  background: transparent;
  padding: 12px 28px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  font-size: 13px;
  transition: all 0.22s ease;
}

.hero-button:hover{
  background: #EFBF04;
  color: #000;
  box-shadow: 0 10px 30px rgba(239,191,4,0.18);
}

/*----------------------------------
=========== Our Vision =============
----------------------------------*/
.ministry{
  width: 80%;
  margin: auto;
  text-align: center;
  padding-top: 100px;
}
h1{
  font-size: 36px;
  font-weight: 600;
}
p{
  color: #777;
  font-size: 14px;
  font-weight: 300;
  line-height: 22px;
  padding: 10px;
}

.row{
  margin-top: 5%;
  display: flex;
  justify-content: space-between;
}

.values{
  flex-basis: 31%;
  background: #fff8f3;
  border-radius: 10px;
  margin-bottom: 5%;
  padding: 20px 12px;
  box-sizing: border-box;
  transition: all 0.22s ease;
}
h3{
  text-align: center;
  font-weight: 600;
  margin: 10px;
}

.values:hover{
  box-shadow: 0 0 20px 0px rgba(0,0,0,0.2);
}

.valuesabout{
  flex-basis: 31%;
  background: #fff8f3;
  border-radius: 50px;
  margin-bottom: 5%;
  padding: 20px 12px;
  box-sizing: border-box;
  margin-left: 100px;
  transition: all 0.22s ease;
}
h3{
  text-align: center;
  font-weight: 600;
  margin: 10px;
}

.valuesabout p{
  text-align: center;
}

.valuesabout:hover{
  box-shadow: 0 0 20px 0px rgba(0,0,0,0.2);
}


/*----------------------------------
========= WORSHIP WITH US ==========
----------------------------------*/
.wwu{
  width: 100%;
  max-width: auto;
  margin: 80px auto;
  overflow: hidden;
  background-image:
    linear-gradient(rgba(0,0,0,0.75), rgba(0,0,0,0.75)),
    url(images/banner.webp);
  background-position: center;
  background-size: cover;
  text-align: center;
  padding: 200px 0px;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.15);
}

/* heading scales responsively */
.wwu h1{
  color: #fff;
  font-size: clamp(28px, 4.5vw, 52px);
  margin: 0 0 8px;
  padding: 0;
  font-weight: 700;
  letter-spacing: 0.2px;
}

/* service times secondary but readable */
.wwu h3{
  color: rgba(255,255,255,0.95);
  margin: 0 0 22px;
  font-weight: 400;
  font-size: clamp(16px, 2.2vw, 32px);
  padding: 0;
}

/* CTA / Find Us button styling kept local to this section */
.wwu .hero-button {
  display: inline-block;
  border: 2px solid #EFBF04;
  color: #EFBF04;
  background: transparent;
  padding: 12px 28px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  font-size: 13px;
  transition: all 0.22s ease;
}
.wwu .hero-button:hover {
  background: #EFBF04;
  color: #000;
  box-shadow: 0 10px 30px rgba(239,191,4,0.18);
}


/*----------------------------------
============ NEWS CARD =============
----------------------------------*/
.news-updates {
  background-color: #fff;
  padding: 60px 20px;
  text-align: center;
}

.news-title {
  font-weight: 600;
  color: #000000;
  margin-bottom: 40px;
}

.news-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
}

.news-card {
  width: 300px;
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  text-decoration: none;
  color: inherit;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.news-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.15);
}

.news-card img {
  width: 100%;
  display: block;
}

.news-content {
  padding: 20px;
}

.news-content .tag {
  background-color: #f5c542;
  color: #222;
  font-size: 0.75rem;
  padding: 4px 8px;
  border-radius: 4px;
  display: inline-block;
  margin-bottom: 10px;
}

.news-content h3 {
  font-size: 1.1rem;
  margin-bottom: 8px;
  color: #333;
}

.meta {
  font-size: 0.85rem;
  color: #666;
}

/* ================================
   FOOTER SECTION
================================= */
.footer- {
  background-color: #0b1c3a;
  color: #000000;
  padding: 50px 20px 20px;
  font-size: 0.95rem;
}

.footer-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
  gap: 30px;
}

.footer-section {
  flex: 1;
  min-width: 250px;
}

.footer-section h4 {
  font-size: 1.2rem;
  margin-bottom: 15px;
  color: #f5c542;
}

.footer-section p{
  color: #ffffff;
  text-decoration: none;
  text-align: left;
  margin-left: -10px;
}

.footer-section ul {
  list-style: none;
  padding: 0;
}

.footer-section ul li {
  margin-bottom: 10px;
}

.footer-section ul li a {
  color: #ffffff;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-section ul li a:hover {
  color: #f5c542;
}

.footer-copyright {
  text-align: center;
  margin-top: 30px;
  border-top: 1px solid #444;
  padding-top: 15px;
  font-size: 0.85rem;
  color: #ccc;
}
/* ================================
   MAPS EMBED
================================= */
.maps {
  width: 512px;
  display: block;
  margin: 0 auto;
  border: 0;
}

/*----------------------------------
===============MOBILE===============
----------------------------------*/
@media(max-width: 700px){
  .text-box h1{
  font-size: 20px;
  }
  .nav-links ul li{
    display: block;
  }
  .nav-links{
    position: absolute;
    background: #EFBF04;
    height: 100vh;
    width: 200px;
    top: 0;
    right: -200px;
    text-align: left;
    z-index: 2;
    transition: 1s;
  }
  nav .fa-solid{
    display: block;
    color: #fff;
    margin: 10px;
    font-size: 22px;
    cursor: pointer;
  }

  .dropdown-content{
    width: 90%;
  }
  .dropdown-content a{
    font-size: 13px;
    padding: 5px 0px;
  }

  .row{
    flex-direction: column;
  }
}

/*----------------------------------
======= ABOUT PASTOR CHRIS ========
----------------------------------*/
.sub-header{
  height: 50vh;
  width: 100%;
  background-image: linear-gradient(rgba(4,9,30,0.7),rgba(4,9,30,0.7)),url(images/edit.webp);
  background-position: center;
  background-size: cover;
  text-align: center;
  color: #fff;
}

.sub-header h1{
  margin-top: 100px;
}

.about-us{
  width: 80%;
  margin: auto;
  padding-top: 80px;
  padding-bottom: 50px;
}

.about-col{
  flex: 48%;
  padding: 30px 2px;
}
.about-col img{
  width: 80%;
  padding-left: 35px;
}

.about-col h1{
  padding-top: 0;
}

.about-col p{
  padding: 15px 0 25px;
}

@media(max-width: 700px){
  .about-col img{
    padding-left: 35px;
  }
}

/*----------------------------------
======= ABOUT OUR PASTORS ========
----------------------------------*/
#ourpastors
{
  width: 80%;
  margin: auto;
  padding-top: 80px;
  padding-bottom: 50px;
}

.pastor-row {
  display: flex;
  justify-content: center; /* or space-around, space-between, etc */
  flex-wrap: wrap;
  gap: 70px;
  padding: 20px;
}

.profile-pic {
  flex: 0 1 auto;
  text-align: center;
}

.profile-pic .img-box img {
  width: 300px; 
  height: auto;
  filter: grayscale(0);
}

.profile-pic h2{
  font-size: 22px;
  font-weight: bold;
  margin-top: 15px;
  color: #ffa600;
}

.profile-pic p{
  margin-top: -15px;
}

/*----------------------------------
======= STATEMENT OF FAITH  ========
----------------------------------*/
.statements-of-faith{
  width: 80%;
  margin: auto;
  padding-top: 80px;
  padding-bottom: 50px;
}

.statements-of-faith{
  justify-content: center;
  align-items: center;
}

.statements-of-faith h5{
  color: #444;
}

.statements-of-faith p{
  text-align: left;
  color: #665;
}

.tooltip {
  position: relative;
  cursor: pointer;
  color: #665;
  text-decoration: none;
}

.tooltip .tooltiptext {
  visibility: hidden;
  width: 250px;
  background-color: #616161;
  color: #ffffff;
  text-align: left;
  padding: 8px;
  border-radius: 6px;

  position: absolute;
  z-index: 1;
  bottom: 125%; /* Position above text */
  left: 50%;
  margin-left: -125px;

  opacity: 0;
  transition: opacity 0.3s;
}

.tooltip:hover .tooltiptext {
  visibility: visible;
  opacity: 1;
}

/*----------------------------------
======= Sub Headers  ========
----------------------------------*/
.sub-header-about{
  height: 50vh;
  width: 100%;
  background-image: linear-gradient(rgba(4,9,30,0.7),rgba(4,9,30,0.7)),url(images/background.webp);
  background-position: 0 50%;
  background-size: cover;
  text-align: center;
  color: #fff;
}

.sub-header-about h1{
  margin-top: 100px;
}

.sub-header-foundation{
  height: 50vh;
  width: 100%;
  background-image: linear-gradient(rgba(4,9,30,0.7),rgba(4,9,30,0.7)),url(images/foundation\ school.webp);
  background-position: 0 20%;
  background-size: cover;
  text-align: center;
  color: #fff;
}

.sub-header-foundation h1{
  margin-top: 100px;
}



/*----------------------------------
========= CONTACT SCREEN ===========
----------------------------------*/
.location{
  width: 80%;
  margin: auto;
  padding: 80px 0;
  text-align: center;
}

.location iframe{
  width: 80%;
}

.contact-us{
  width: 80%;
  margin: auto;
}

.contact-col{
  flex-basis: 48%;
  margin-bottom: 30px;
}

.contact-col div{
  display: flex;
  align-items: center;
  margin-bottom: 40px;
}

.contact-col div .fa-solid{
  font-size: 28px;
  color: #f44336;
  margin: 10px;
  margin-right: 30px;
}

.contact-col div p{
  padding: 0;
}

.contact-col div h5{
  font-size: 20px;
  margin-bottom: 5px;
  color: #555;
  font-weight: 400;
}

.contact-col input, .contact-col textarea{
  width: 100%;
  margin-bottom: 17px;
  border: 0;
  margin: 10px 0px;
  padding: 15px;
  outline: none;
  background: #f9fafc;
}
.contact-button{
  padding: 10px;
  background: #f44336;
  color: #fff;
  font-size: 13px;
  border: 0;
  outline: none;
  cursor: pointer;
  width: 140px;
  margin: 20px auto 0;
  border-radius: 30px;
}

.contact-button:hover {
  background-color: #EFBF04;
 }

/*----------------------------------
=========== WATCH LIVE ============
----------------------------------*/
 :root { --radius: 18px; --shadow: 0 10px 30px rgba(0,0,0,.18); }
  .live-wrap { max-width: 960px; margin: 2rem auto; padding: 0 1rem; }
  .player-shell { position: relative; width: 100%; aspect-ratio: 16 / 9; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); background: #000; }
  .yt-frame { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; display:none; } /* hidden until playing */
  .cover {
    position:absolute; inset:0; display:flex; flex-direction:column;
    align-items:center; justify-content:center; padding:2rem; text-align:center;
    background: #000 url('poster.jpg') center/cover no-repeat;
    color:#fff;
  }
  .cover::after { content:""; position:absolute; inset:0; background:rgba(0,0,0,.35); }
  .cover > * { position:relative; z-index:1; }
  .badge { display:inline-flex; align-items:center; gap:.5rem; padding:.4rem .7rem; border-radius:999px; background:#e11d48; font-weight:600; }
  .btn {
    margin-top:1rem; display:inline-block; padding:.8rem 1rem; border-radius:12px;
    background:#ffffff; color:#111; text-decoration:none; font-weight:600;
  }
  .muted-hint { position:absolute; left:12px; bottom:12px; background:rgba(0,0,0,.6); color:#fff; padding:.35rem .55rem; border-radius:8px; font-size:.85rem; display:none; }