/* Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
.container {
  width: 100%;
  max-width: 1200px; /* keeps it nice on big screens */
  margin: auto;
  padding: 20px;
}

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: #0219e1;
  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%;
}

img, iframe, video {
  max-width: 100%;
  height: auto;
  display: block;
}


.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 */
}

.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;
}

/* About Section */
.about-container {
  width: 80%;
  margin: 60px auto;
  display: flex;
  flex-direction: column;
  gap: 50px;
}

/* Info blocks */
.info {
  display: flex;
  align-items: center;
  gap: 30px;
  animation: fallDown 1.5s ease forwards;
  opacity: 0;
}

.info img {
  width: 260px;
  height: auto;
  border: 6px solid #1b1a18;
  border-radius: 15px;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
  transition: box-shadow 0.6s ease;
}

.info.glow img {
  box-shadow: 0 0 20px 6px rgb(15, 76, 245), 0 0 40px 12px rgba(66, 163, 219, 0.7);
}

.text {
  flex: 1;
  font-size: 1.2rem;
  line-height: 1.6;
}

/* Animation for content falling */
@keyframes fallDown {
  from {
    transform: translateY(-200px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

/* 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;
  }
}

/* About Section */
.about-container {
  width: 80%;
  margin: 60px auto;
  display: flex;
  flex-direction: column;
  gap: 50px;
}

/* Info blocks */
.info {
  display: flex;
  align-items: center;
  gap: 30px;
  animation: fallDown 1.5s ease forwards;
  opacity: 0;
}

.info img {
  width: 260px;
  height: auto;
  border: 6px solid #120f0b;
  border-radius: 15px;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
  transition: box-shadow 0.6s ease;
}

.info.glow img {
  box-shadow: 0 0 20px 6px rgb(54, 109, 236), 0 0 40px 12px rgba(104, 168, 163, 0.7);
}

.text {
  flex: 1;
  font-size: 1.2rem;
  line-height: 1.6;
}

/* Alternate layouts */
#info1, #info3 {   /* About + Mission */
  flex-direction: row;
}

#info2, #info4 {   /* Vision + Core Belief */
  flex-direction: row-reverse;
}

/* Animation for content falling */
@keyframes fallDown {
  from {
    transform: translateY(-200px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

.btn-container {
  text-align: center;
  margin-top: 20px;
}

.btn {
  display: inline-block;
  padding: 12px 30px;
  font-size: 1.1rem;
  color: white;
  background: #020f88;
  border: none;
  border-radius: 30px;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 4px 10px rgba(0,0,0,0.3);
}

.btn:hover {
  background: #046da5;
  box-shadow: 0 0 15px rgb(33, 29, 8), 0 0 30px rgb(248, 247, 245);
}

/* Footer */
footer {
  background-color:#020f88;
  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 */
}

.about-section {
  background: #fff;
  padding: 80px 20px;
  text-align: center;
}

.about-container {
  max-width: 1000px;
  margin: 0 auto;
}

.about-section h2 {
  font-size: 2.5rem;
  color: #0d29d9;
  margin-bottom: 15px;
}

.about-intro {
  font-size: 1.2rem;
  color: #444;
  max-width: 800px;
  margin: 0 auto 30px;
}

.about-image img {
  width: 70%;
  max-width: 500px;  /* reduced from 800px */
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  margin: 20px auto;
  display: block;
}

.about-content {
  max-width: 850px;
  margin: 0 auto;
  font-size: 1.05rem;
  line-height: 1.8;
  color: #333;
  text-align: justify;
}
