
/* ======================= */
/* SHARED GLOBAL STYLES */
/* ======================= */

body {
  margin: 0;
  font-family: 'Inter', sans-serif;
  background-color: #f9f9f9;
  color: #333;
}

header {
  background-color: #0057B7;
  color: #FFDD00;
  padding: 1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}

header img {
  height: 100px;
  width: auto;
}

header a {
  color: #FFDD00;
  text-decoration: none;
  font-size: 1rem;
  font-weight: bold;
}

.menu-toggle {
  display: none;
  flex-direction: column;
  cursor: pointer;
}

.menu-toggle span {
  height: 4px;
  width: 25px;
  background: #FFDD00;
  margin: 4px 0;
  transition: all 0.3s ease;
}

nav {
  background-color: #0046a0;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}

nav a {
  color: #FFDD00;
  padding: 1rem;
  text-decoration: none;
  font-weight: bold;
  display: block;
  transition: background-color 0.3s ease;
}

nav a:hover {
  background-color: #003580;
}

@media (max-width: 768px) {
  nav {
    display: none;
    flex-direction: column;
    width: 100%;
  }
  nav.active {
    display: flex;
  }
  .menu-toggle {
    display: flex;
  }
}

footer {
  text-align: center;
  padding: 1rem;
  background-color: #0057B7;
  color: #FFDD00;
  margin-top: 3rem;
}

/* ======================= */
/* HOME PAGE ONLY */
/* ======================= */

.hero {
  background-size: cover;
  background-position: center;
  padding: 6rem 2rem;
  color: #fff;
  text-align: center;
  position: relative;
  background-image: url('/hero2.png');
}

.hero-description {
  position: absolute;
  bottom: 1rem;
  left: 1rem;
  right: 1rem;
  background: rgba(0, 0, 0, 0.85);
  padding: 1rem;
  border-radius: 6px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
  font-size: 0.9rem;
  text-align: center;
}

.hero:hover .hero-description {
  opacity: 1;
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 800px;
  margin: 0 auto;
}

.hero h1 {
  font-size: 3rem;
  margin-bottom: 0.5rem;
  text-shadow: 3px 3px 1px rgba(0, 0, 0, 0.8);
}

.hero p {
  font-size: 1.25rem;
}

.bling-hr {
  border: none;
  height: 6px;
  background: linear-gradient(to right, #0057B7, #FFDD00);
  border-radius: 3px;
  margin: 1rem auto 2rem;
  width: 100%;
  background-size: 200% 200%;
  animation: shimmer 3s ease-in-out infinite;
}

@keyframes shimmer {
  0% { background-position: 0% 50%; opacity: 0.8; }
  50% { opacity: 1; }
  100% { background-position: 100% 50%; opacity: 0.8; }
}

.container {
  padding: 2rem;
  max-width: 1000px;
  margin: 0 auto;
}

.card {
  background-color: #ffffff;
  border: 1px solid #d6e4ff;
  border-radius: 12px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
  padding: 2rem;
  margin-top: 1rem;
}

.donate-section {
  display: flex;
  gap: 2rem;
  margin-top: 2rem;
  flex-wrap: wrap;
}

.donate-text {
  flex: 1 1 300px;
  background-color: #e0f0ff;
  padding: 2rem;
  border-radius: 10px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
}

.donate-text img {
  width: 75px;
  height: auto;
  border-radius: 8px;
  margin-bottom: 1rem;
  display: block;
  margin-left: auto;
  margin-right: auto;
  border: 3px solid #0057B7;
  padding: 5px;
  background-color: #fff;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.donate-button {
  display: block;
  margin: 2rem auto;
  text-align: center;
}

.donate-button img {
  width: auto;
  height: auto;
  max-width: 100%;
  transition: transform 0.2s ease;
}

.donate-button img:hover {
  transform: scale(1.05);
}

/* ======================= */
/* ABOUT PAGE ONLY */
/* ======================= */

	 
 .container {
  display: flex;
  flex-wrap: wrap;
  font-family: Arial, sans-serif;
}

.left-column {
  width: 30%;
  background-color: navy;
  color: white;
  padding: 20px;
  box-sizing: border-box;
}

.left-column img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: 10px;
  margin-bottom: 20px;
}

.right-column {
  width: 70%;
  background-color: white;
  color: #000;
  padding: 40px;
  box-sizing: border-box;
}

.name {
  font-size: 36px;
  font-weight: bold;
  margin-bottom: 20px;
}

.section {
  margin-bottom: 20px;
}

.section-title {
  font-size: 18px;
  font-weight: bold;
  text-transform: uppercase;
  margin-bottom: 10px;
  border-bottom: 1px solid #ccc;
  padding-bottom: 5px;
}

.info-item {
  margin-bottom: 10px;
}

@media (max-width: 768px) {
  .container {
    flex-direction: column;
  }

  .left-column,
  .right-column {
    width: 100%;
  }

  .left-column {
    border-bottom: 1px solid #ccc;
  }

  .right-column {
    padding: 20px;
  }
}

/* ======================= */
/* CONTACT PAGE ONLY */
/* ======================= */

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-top: 1.5rem;
}

.contact-info a {
  display: flex;
  align-items: center;
  gap: 1rem;
  text-decoration: none;
  color: #0057B7;
  font-weight: 600;
  transition: all 0.3s ease;
}

.contact-info a img {
  width: 32px;
  height: 32px;
}

.contact-info a:hover {
  color: #003580;
}

/* ======================= */
/* MISSION PAGE ONLY */
/* ======================= */

.mission-card {
  background-color: #ffffff;
  border: 1px solid #d6e4ff;
  border-radius: 12px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
  padding: 2rem;
  margin-top: 2rem;
  line-height: 1.6;
}

/* ======================= */
/* GALLERY PAGE (Flickr API) */
/* ======================= */

.gallery-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
  padding: 2rem;
}

.gallery-container img {
  width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.gallery-container img:hover {
  transform: scale(1.05);
}
