/* Global Styles */
body {
  margin: 0;
  font-family: 'Roboto', sans-serif;
  color: #111;
  line-height: 1.6;
  background: linear-gradient(135deg, #b71c1c, #ffd700);
}

a {
  text-decoration: none;
  color: inherit;
}

h2, h3, h4 {
  color: #b71c1c;
}

/* Header */
header {
  background: #b71c1c;
  color: white;
  padding: 10px 20px;
  position: sticky;
  top: 0;
  z-index: 1000;
}

header .logo {
  font-weight: bold;
  font-size: 1.5rem;
  text-align: center;
  margin-bottom: 5px;
}

/* Logo Styling */
.logo-container {
 display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  margin-bottom: 10px;
}

.logo-container img {
  width: 70px;
  height: auto;
}

.logo-container h1 {
  font-size: 1.4rem;
  color: #ffd700; /* Gold */
  line-height: 1.2;
}

.logo-container h1 span {
  font-size: 0.95rem;
  color: #fff;
}

nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 15px;
}

nav a {
  color: white;
  font-weight: 500;
  padding: 5px 10px;
  transition: background 0.3s;
}

nav a:hover {
  background: #FFD700;
  border-radius: 5px;
}
  section {
  padding: 70px 20px;
  max-width: 1100px;
  margin: auto;
  background: #ffd700;
  border-radius: 16px;
}

/* Hero Section */
/* Hero Video Section */
.hero-video {
  position: relative;
  height: 100vh;
  width: 100%;
  overflow: hidden;
}

/* Background Video */
.hero-video video {
  position: absolute;
  top: 50%;
  left: 50%;
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: 70vh;
  transform: translate(-50%, -50%);
  object-fit: cover;
  z-index: 1;
}
/* Dark overlay for readability */
.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  z-index: 2;
}

/* Hero content */
.hero-content {
  position: relative;
  z-index: 3;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #ffd700;
  padding: 0 20px;
}

.hero-content h1 {
  font-size: 3rem;
  margin-bottom: 20px;
}

.hero-content p {
  font-size: 1.3rem;
  max-width: 700px;
  margin-bottom: 30px;
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 12px 28px;
  margin: 5px;
  background: #ff1744;
  color: white;
  font-weight: bold;
  border-radius: 25px;
  transition: transform 0.3s, background 0.3s;
}
.btn:hover { transform: translateY(-3px); background: #d5001c; }
.btn.secondary {
  background: white;
  color: #b71c1c;
  border: 2px solid #b71c1c;
}


/* Sections */
section {
  padding: 60px 20px;
  max-width: 1100px;
  margin: auto;
  text-align: center;
}

.grid {
  display: grid;
  gap: 20px;
}

.grid-3 {
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
}

/* Pastors Section */
#Pastors img {
  width: 100%;
  max-width: 250px;
  border-radius: 50%;
  margin-bottom: 15px;
  border: 4px solid #ffd700;
  box-shadow: 0 6px 18px rgba(0,0,0,0.3);
}

.Pastors-card {
  background: #fff;
  text-align: center;
}

.video-card img {
  width: 100%;
  border-radius: 12px;
  margin-bottom: 15px;
}

/* Leadership Section */
#leadership {
  background: #ffffff;
  color: #000000;
}

.leadership-grid {
  margin-top: 40px;
}

.leadership-card {
  background: #ffffff;
  border: 2px solid #FFD700; 
  padding: 30px 20px;
}

.leadership-card img {
  width: 100%;
  max-width: 250px;
  border-radius: 50%;
  margin-bottom: 15px;
  border: 4px solid #ffd700;
  box-shadow: 0 6px 18px rgba(0,0,0,0.3);
}

.leadership-card h3 {
  color: #000000;
  margin-bottom: 5px;
}

.leadership-card .title {
  font-weight: bold;
  color: #b71c1c; /* deep red accent */
  margin-bottom: 10px;
  font-size: 0.95rem;
}

.leadership-card p {
  color: #333333;
  font-size: 0.95rem;
  line-height: 1.5;
}

/* Mobile adjustments */
@media (max-width: 768px) {
  .leadership-card img {
    width: 120px;
    height: 120px;
  }

  .leadership-card {
    padding: 20px 15px;
  }
}


/* Regular Services Images */
#services img {
  width: 100%;
  border-radius: 12px;
  margin-bottom: 15px;
  box-shadow: 0 6px 15px rgba(0,0,0,0.3);
}

/* Cards */
.card {
  background: #f5f5f5;
  border-radius: 15px;
  padding: 20px;
  text-align: center;
  transition: transform 0.3s;
}
.form-note {
  text-align: center;
  font-size: 0.9rem;
  color: #555;
  margin-top: 10px;
}
.success-message {
  text-align: center;
  padding: 80px 20px;
}
.card:hover {
  transform: translateY(-5px);
}

/* Media / Video Thumbnails */
.card img {
  width: 100%;
  border-radius: 10px;
}

/* Forms */
form {
  display: flex;
  flex-direction: column;
  gap: 15px;
  max-width: 500px;
  margin: auto;
}

input, textarea {
  padding: 10px;
  border-radius: 10px;
  border: 1px solid #ccc;
  width: 100%;
  font-size: 1rem;
}

input[type=submit] {
  background: #b71c1c;
  color: white;
  font-weight: bold;
  border: none;
  cursor: pointer;
  transition: background 0.3s;
}

input[type=submit]:hover {
  background: #ff1744;
}

/* Footer */
footer {
  background: #333;
  color: white;
  text-align: center;
  padding: 40px 20px;
  font-size: 0.9rem;
}

/* Responsive */
@media (max-width: 768px) {
  .logo-container {
    flex-direction: column;
  }

  .logo-container img {
    width: 70px;
  }
   
  .hero {
    padding: 50px 30px;
  }

  .grid-3 {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 768px) {

  header {
    padding: 10px 10px;
  }

  .logo-container img {
    width: 55px;
  }

  .logo-container h1 {
    font-size: 1rem;
    line-height: 1.2;
	text-align: center;

  }

  nav {
    gap: 10px;
    margin-top: 8px;
  }

  nav a {
    font-size: 0.9rem;
    padding: 4px 8px;
  }
}
@media (max-width: 768px) {

  .hero-video {
    height: 55vh;
  }

  .hero-content h1 {
    font-size: 2rem;
  }

  .hero-content p {
    font-size: 1rem;
  }

  .hero-content .btn {
    display: block;
    width: 45%;
    margin: 6px auto;
  }
}
@media (max-width: 768px) {

  .grid,
  .grid-3 {
    grid-template-columns: 1fr;
  }

  .card {
    padding: 20px;
  }
}
@media (max-width: 768px) {

  form {
    padding: 0 10px;
  }

  input, textarea {
    font-size: 1rem;
  }

  input[type="submit"] {
    width: 100%;
    padding: 14px;
  }
}
iframe {
  height: 300px;
}

@media (max-width: 768px) {
  iframe {
    height: 250px;
  }
}
