/* Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: Arial, sans-serif;
  background: #f4f4f4;
  color: #333;
  overflow-x: hidden;
  position: relative;
}


/* Navbar */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 40px;
  background: #020f88;
  color: white;
  position: sticky;
  top: 0;
  z-index: 1000;
}

/* Menu button */
.menu-btn {
  background: #eee;
  border: none;
  font-size: 1.5rem;
  padding: 10px 15px;
  border-radius: 8px;
  cursor: pointer;
  transition: background 0.3s;
}
.menu-btn:hover {
  background: #ddd;
}
/* Close button */
.close-btn {
  position: absolute;
  top: 15px;
  right: 20px;
  background: none;
  border: none;
  font-size: 2rem;
  cursor: pointer;
  color: #0303c5;
  transition: color 0.3s;
}
.close-btn:hover {
  color: #d22;
}


/* Side navigation (hidden by default) */
.side-nav {
  position: fixed;
  top: 0;
  right: -300px;
  width: 250px;
  height: 100%;
  background: #fff;
  box-shadow: -2px 0 10px rgba(0,0,0,0.2);
  transition: right 0.4s ease;
  z-index: 999;
}

.side-nav.open {
  right: 0;
}

.side-nav ul {
  list-style: none;
  padding: 80px 20px;
  margin: 0;
}

.side-nav li {
  margin: 20px 0;
}

.side-nav a {
  text-decoration: none;
  color: #333;
  font-size: 1.1rem;
  transition: color 0.3s;
}

.side-nav a:hover {
  color: #d22;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo img {
  width: 60px;
  height: auto;
  border-radius: 50%;
}

.nav-links a {
  color: white;
  text-decoration: none;
  margin: 0 12px;
  transition: color 0.3s ease;
}

.nav-links a:hover,
.nav-links a.active {
  color: #65d6ff;
}

/* JESUS CROSS FALLING EFFECT */
.cross {
  position: fixed;
  top: -50px;
  font-size: 30px;
  color: rgb(10, 201, 234);
  animation: fall linear infinite;
  z-index: 0;
}

@keyframes fall {
  0% {
    transform: translateY(-50px);
    opacity: 1;
  }
  100% {
    transform: translateY(100vh);
    opacity: 0.8;
  }
}


/* Leadership Section */
.leadership-section {
  padding: 80px 10%;
  background: #fff;
  text-align: center;
}

.leadership-section h2 {
  font-size: 2.5rem;
  margin-bottom: 50px;
  color: #2c3e50;
}

/* Leadership Section */
#leadership {
  text-align: center;
  padding: 4rem 2rem;
  background: linear-gradient(135deg, #f0f4ff, #e3ecff);
}

#leadership h2 {
  font-size: 2.2rem;
  margin-bottom: 2rem;
  color: #2c3e50;
}

.leaders {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 2rem;
}

.leader-card {
  background: #fff;
  padding: 1.5rem;
  border-radius: 1.5rem;
  width: 250px;
  box-shadow: 0 6px 16px rgba(0,0,0,0.15);
  text-align: center;
}

.leader-card img {
  width: 120px;
  height: 120px;
  object-fit: cover;
  border-radius: 50%;
  margin-bottom: 1rem;
  box-shadow: 0 4px 10px rgba(0,0,0,0.2);
}

.leader-card h3 {
  font-size: 1.3rem;
  margin-bottom: 0.4rem;
  color: #333;
}

.leader-card p {
  font-size: 1rem;
  color: #666;
}

/* Stretch + Compress Animation */
@keyframes stretchCompress {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.08);
  }
  100% {
    transform: scale(1);
  }
}


.leadership-cards {
  display: flex;
  gap: 30px;
  justify-content: center;
  flex-wrap: wrap;
}

.leader-card {
  background: #fff;
  border-radius: 15px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
  padding: 20px;
  width: 220px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.leader-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-radius: 12px;
  margin-bottom: 15px;
}

.leader-card h3 {
  margin: 10px 0 5px;
  color: #2c3e50;
}

.leader-card p {
  color: #777;
  font-size: 0.95rem;
}

/* Hover Effect */
.leader-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 8px 25px rgba(0,0,0,0.2);
}

/* Fade-in Animations */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  animation: fadeInUp 0.8s forwards;
}

.delay1 { animation-delay: 0.3s; }
.delay2 { animation-delay: 0.6s; }
.delay3 { animation-delay: 0.9s; }
.delay4 { animation-delay: 1.2s; }
.delay5 { animation-delay: 1.5s; }
.delay6 { animation-delay: 1.8s; }
.delay7 { animation-delay: 2.2s; }
.delay8 { animation-delay: 2.5s; }

@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.leadership-team {
  display: flex;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
  padding: 60px 20px;
}

.leader {
  text-align: center;
  max-width: 250px;
}

.leader img {
  width: 100%;
  border-radius: 50%;
  box-shadow: 0 4px 10px rgba(0,0,0,0.2);
  margin-bottom: 15px;
}

.leader h3 {
  margin-bottom: 5px;
  color: #2c3e50;
}

.leader p {
  color: #555;
}
/* Leadership Button */
.leadership-btn {
  margin-top: 40px;
  text-align: center;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
}

.gallery-btn {
  position: fixed;         /* stays in place when scrolling */
  top: 50%;                /* vertically middle */
  left: 20px;              /* small offset from the left edge */
  transform: translateY(-50%);
  
  background-color: #020f88; /* transparent background */
  color: #fff;             /* white text (change to match theme) */
  border: 2px solid #fff;  /* white border */
  padding: 10px 20px;
  border-radius: 25px;
  font-size: 16px;
  font-weight: bold;
  cursor: pointer;
  text-decoration: none;   /* remove underline */
  transition: all 0.3s ease;
  z-index: 1000;           /* ensures it appears above content */
}

.gallery-btn:hover {
  background: #fff;
  color: #333;             /* text color changes on hover */
}

.leadership-btn .btn {
  background: #0a3cb2;
  color: #fff;
  padding: 12px 28px;
  border-radius: 25px;
  text-decoration: none;
  font-size: 1rem;
  font-weight: bold;
  transition: background 0.3s ease, transform 0.3s ease;
}

.leadership-btn .btn:hover {
  background: #3498db;
  transform: translateY(-5px);
}

.senior {
  border: 3px solid gold;
  background: #fff8dc;
}

/* Footer */
footer {
  background-color: #05005b;
  color: #fff;
  padding: 15px 20px;
  text-align: center;
  font-size: 0.9rem;
}


.update-btn {
  position: fixed;         /* stays in place when scrolling */
  top: 50%;                /* vertically middle */
  right: 20px;              /* small offset from the left edge */
  transform: translateY(-50%);
  
  background-color: #020f88; /* transparent background */
  color: #fff;             /* white text (change to match theme) */
  border: 2px solid #fff;  /* white border */
  padding: 10px 20px;
  border-radius: 25px;
  font-size: 16px;
  font-weight: bold;
  cursor: pointer;
  text-decoration: none;   /* remove underline */
  transition: all 0.3s ease;
  z-index: 1000;           /* ensures it appears above content */
}

.update-btn:hover {
  background: #fff;
  color: #333;             /* text color changes on hover */
}
