/* ---------- Basic resets ---------- */
* { box-sizing: border-box; }

/* ---------- Navbar / Brand ---------- */
.brand-image {
  max-height: 3.2rem;
  display: inline-block;
  vertical-align: middle;
  margin-right: 0.35rem;
}

.brand-text {
  font-weight: 700;
  font-size: 1.4rem;
  vertical-align: middle;
}

/* reusable gradient text for headings / nav */
.has-text-gradient-orange {
  background: linear-gradient(90deg, #ff4500 0%, #ff7e00 40%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
  font-weight: 700;
}

.has-background-gradient-orange {
  background: linear-gradient(90deg, #ff4500 0%, #ff7e00 40%);
}

/* ---------- Navbar centering and background fixes ---------- */

/* Center the navbar items horizontally */
.navbar {
  box-shadow: 0 1px 1px rgba(0, 0, 0, 0.1);
}

.navbar-menu .navbar-start {
  flex-grow: 1;
  justify-content: center;
  margin-left: auto;
  margin-right: auto;
}

/* Remove ALL background colors from navbar items */
.navbar-item,
.navbar-item:hover,
.navbar-item:active,
.navbar-item.is-active,
.nav-link,
.nav-link:hover,
.nav-link:active,
.nav-link.is-active,
a.navbar-item,
a.navbar-item:hover,
a.navbar-item:active,
.navbar-link,
.navbar-link:hover {
  background-color: transparent !important;
  background: none !important;
}

/* Navbar hover & active text effects only */
.nav-link:hover span {
  background: linear-gradient(90deg, #ff4500 0%, #ff7e00 40%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.nav-link.is-active span {
  background: linear-gradient(90deg, #ff4500 0%, #ff7e00 40%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  padding-bottom: 4px;
  border-bottom: 2px solid #ff7e00;
}

/* Mobile menu centering */
@media screen and (max-width: 1023px) {
  .navbar-menu .navbar-start {
    text-align: center;
  }

  .navbar-item {
    justify-content: center;
  }
}

/* ---------- Donate button ---------- */
.donate-button {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding-left: 0.9rem;
  padding-right: 0.9rem;
  background: linear-gradient(90deg, #ff4500 0%, #ff7e00 40%);
  color: white !important;
  border: none;
  border-radius: 6px;
  font-weight: 600;
}

.donate-button .icon { 
  display: inline-flex; 
  align-items: center; 
  justify-content: center; 
}

.donate-button:hover { 
  opacity: 0.95;
  background: linear-gradient(90deg, #ff4500 0%, #ff7e00 40%) !important;
}

/* ---------- HERO SLIDER ---------- */
#hero-slider {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
  background: #111;
}

/* slides container */
.hero-slides {
  position: relative;
  width: 100%;
  height: 100%;
}

/* each slide */
.hero-slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 0.8s ease-in-out;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1;
}

/* Enhanced background dimming overlay */
.hero-slide::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.2); /* Stronger dimming for better text visibility */
  z-index: 2;
  pointer-events: none;
}

/* visible slide */
.hero-slide.is-active {
  opacity: 1;
  z-index: 3;
}

/* Improved overlay positioning and styling */
.slide-overlay {
  position: relative;
  z-index: 4; /* Above the dimming overlay */
  text-align: center;
  color: #ffffff;
  max-width: 900px;
  padding: 2rem;
  animation: fadeInUp 1s ease-out;
}

/* Main title styling */
.slide-title {
  font-size: 3.5rem;
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 1.5rem;
  text-shadow: 2px 2px 12px rgba(0, 0, 0, 0.7);
  letter-spacing: -0.02em;
}

/* Subtitle styling */
.slide-subtitle {
  font-size: 1.3rem;
  font-weight: 400;
  line-height: 1.5;
  margin-bottom: 2rem;
  opacity: 0.95;
  text-shadow: 1px 1px 8px rgba(0, 0, 0, 0.6);
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

/* Enhanced action buttons */
.slide-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 2rem;
}

.btn-knowmore, .btn-secondary {
  display: inline-block;
  padding: 1rem 2rem;
  border-radius: 8px;
  font-weight: 600;
  font-size: 1.1rem;
  text-decoration: none;
  transition: all 0.3s ease;
  border: 2px solid transparent;
  min-width: 160px;
  text-align: center;
}

.btn-knowmore {
  background: linear-gradient(90deg, #ff4500 0%, #ff7e00 40%);
  color: white;
}

.btn-knowmore:hover {
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(255, 69, 0, 0.4);
}

.btn-secondary {
  background: transparent;
  color: white;
  border-color: rgba(255, 255, 255, 0.8);
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.1);
  color: white;
  border-color: white;
}

/* Fade in animation for overlay content */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ---------- Navigation arrows ---------- */
.hero-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  border: none;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  color: white;
  font-size: 1.8rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 5;
  transition: all 0.3s ease;
}

.hero-prev { left: 20px; }
.hero-next { right: 20px; }

.hero-arrow:hover {
  background: rgba(255, 255, 255, 0.25);
  transform: translateY(-50%) scale(1.1);
}

/* Slide indicators (optional) */
.hero-indicators {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 12px;
  z-index: 5;
}

.hero-indicator {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.4);
  cursor: pointer;
  transition: all 0.3s ease;
}

.hero-indicator.is-active {
  background: #ff4500;
  transform: scale(1.2);
}

/* ---------- Additional Styles for Content Sections ---------- */
.has-equal-height {
  height: 100%;
}

.box {
  transition: transform 0.3s ease;
}

.box:hover {
  transform: translateY(-5px);
}

/* ---------- Responsive adjustments ---------- */
@media (max-width: 1024px) {
  .slide-title {
    font-size: 3rem;
  }

  .slide-subtitle {
    font-size: 1.2rem;
  }
}

@media (max-width: 768px) {
  #hero-slider {
    height: 70vh;
  }

  .slide-overlay {
    max-width: 95%;
    padding: 1.5rem;
  }

  .slide-title {
    font-size: 2.5rem;
    margin-bottom: 1rem;
  }

  .slide-subtitle {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
  }

  .slide-actions {
    flex-direction: column;
    align-items: center;
  }

  .btn-knowmore, .btn-secondary {
    width: 100%;
    max-width: 280px;
  }

  .hero-arrow {
    width: 45px;
    height: 45px;
    font-size: 1.5rem;
  }

  .brand-text {
    font-size: 1.05rem;
  }
}

@media (max-width: 480px) {
  #hero-slider {
    height: 60vh;
  }

  .slide-title {
    font-size: 2rem;
  }

  .slide-subtitle {
    font-size: 1rem;
  }

  .hero-arrow {
    width: 40px;
    height: 40px;
    font-size: 1.3rem;
  }

  .hero-prev { left: 15px; }
  .hero-next { right: 15px; }
}

/* ---------- Empowering Communities Section ---------- */
/* Community Section - Faithful reproduction */
.community-section {
  background: linear-gradient(135deg, #fafafa 0%, #f5f5f5 100%);
  padding: 5rem 1rem;
}

.community-subtitle {
  max-width: 48rem;
  margin: 0 auto;
  line-height: 1.6;
}

.community-card {
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(8px);
  border: none;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
  border-radius: 0.75rem;
  transition: all 0.3s ease;
  cursor: pointer;
  height: 100%;
}

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

.community-icon-container {
  width: 4rem;
  height: 4rem;
  background: linear-gradient(90deg, #ff4500 0%, #ff7e00 40%);
  border-radius: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  transition: transform 0.3s ease;
}

.community-card:hover .community-icon-container {
  transform: scale(1.1);
}

.community-icon-container i {
  font-size: 2rem;
  color: white;
}

.community-description {
  font-size: 0.875rem;
  line-height: 1.5;
  margin-bottom: 1.5rem;
}

.community-button {
  background: white;
  border: 1px solid #e5e5e5;
  color: #374151;
  font-size: 0.875rem;
  height: 2.25rem;
  padding: 0 0.75rem;
  border-radius: 0.375rem;
  transition: all 0.3s ease;
}

.community-card:hover .community-button {
  background: #ff4500;
  color: white;
  border-color: #ff4500;
}

.community-button .ml-2 {
  margin-left: 0.5rem;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .community-section {
    padding: 3rem 1rem;
  }
  
  .title.is-2.is-1-desktop {
    font-size: 2.5rem !important;
  }
  
  .community-subtitle {
    font-size: 1.125rem;
  }
}

@media (max-width: 480px) {
  .title.is-2.is-1-desktop {
    font-size: 2rem !important;
  }
  
  .community-subtitle {
    font-size: 1rem;
  }
  
  .community-icon-container {
    width: 3.5rem;
    height: 3.5rem;
  }
  
  .community-icon-container i {
    font-size: 1.75rem;
  }
}
/* Reduce card width */
.community-section .column {
  max-width: 300px;
  margin: 0 auto;
}

@media (max-width: 768px) {
  .community-section .column {
    max-width: none;
  }
}

/* ---------- Mission Section ---------- */
/* Mission Section */
.mission-section {
  background: linear-gradient(90deg, #ff4500 0%, #ff7e00 40%);
  padding: 5rem 1rem;
}

.mission-description {
  max-width: 1024px;
  margin: 0 auto 2rem;
  line-height: 1.6;
  opacity: 0.95;
}

.mission-donate-button {
  background: #22c55e !important; /* Green background */
  color: white !important;
  font-weight: 600;
  border-radius: 8px;
  padding: 1.25rem 2rem;
  margin: 0.5rem;
  border: none;
}

.mission-donate-button:hover {
  background: #16a34a !important; /* Darker green on hover */
  color: white !important;
  transform: translateY(-2px);
}

.mission-involved-button {
  background: white !important;
  color: #ff4500 !important;
  font-weight: 600;
  border-radius: 8px;
  padding: 1.25rem 2rem;
  margin: 0.5rem;
  border: 2px solid white;
}

.mission-involved-button:hover {
  background: white !important;
  color: #ff4500 !important;
  transform: translateY(-2px);
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .mission-section {
    padding: 3rem 1rem;
  }
  
  .mission-description {
    font-size: 1.125rem;
  }
  
  .mission-donate-button,
  .mission-involved-button {
    width: 100%;
    margin: 0.5rem 0;
  }
}

/* ---------- Contact Info Section ---------- */
/* Contact Info Section - With circular icon backgrounds */
.contact-info-section {
  background: white;
  padding: 2rem 1rem;
}

.contact-item {
  padding: 1rem 0;
}

.contact-icon-container {
  width: 4rem;
  height: 4rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
}

.contact-icon-container i {
  font-size: 1.5rem;
  color: white;
}

.contact-icon-green {
  background: #22c55e; /* Green background */
}

.contact-icon-orange {
  background: linear-gradient(90deg, #ff4500 0%, #ff7e00 40%); /* Orange background */
}

.contact-item .title {
  font-size: 1.125rem;
  margin-bottom: 0.5rem;
  color: #000000;
}

.contact-detail {
  font-size: 1rem;
  color: #6b7280;
  font-weight: 400;
  line-height: 1.5;
  margin: 0;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .contact-info-section {
    padding: 1.5rem 1rem;
  }
  
  .contact-item {
    padding: 0.75rem 0;
    margin-bottom: 1rem;
  }
  
  .contact-item:last-child {
    margin-bottom: 0;
  }
  
  .contact-icon-container {
    width: 3.5rem;
    height: 3.5rem;
  }
  
  .contact-icon-container i {
    font-size: 1.25rem;
  }
}

@media (max-width: 480px) {
  .contact-info-section {
    padding: 1.25rem 1rem;
  }
  
  .contact-detail {
    font-size: 0.95rem;
  }
  
  .contact-icon-container {
    width: 3rem;
    height: 3rem;
  }
  
  .contact-icon-container i {
    font-size: 1.1rem;
  }
}

/* ---------- Footer Section ---------- */
/* Footer Enhancements - Orange gradient background */

.footer-links {
  list-style: none;
  margin: 0;
  padding: 0;
}

.footer-links li {
  margin-bottom: 0.5rem;
}

.footer-links a:hover {
  color: #ff7e00 !important;
  transition: color 0.3s ease;
}

.social-links a {
  transition: color 0.3s ease;
}

.social-links a:hover {
  color: #ff7e00 !important;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .footer {
    padding: 2rem 1rem 1rem;
  }
} 



/* ----------------------------------------------------- */
/* -------------------About Us Page -------------------- */
/* ----------------------------------------------------- */
/* About Page Specific Styles */
/* ---------- About Page Specific Styles ---------- */
.about-hero {
  background: white;
  padding: 6rem 1rem 4rem;
  margin-top: 3.25rem;
}

.about-description {
  max-width: 800px;
  margin: 0 auto;
  line-height: 1.6;
}

/* Vision & Mission Section */
.vision-mission-section {
  background: white;
  padding: 4rem 1rem;
}

/* Make the columns container smaller and centered */
.vision-mission-section .columns {
  max-width: 1200px; /* Reduce from full width */
  margin: 0 auto;
  gap: 2rem; /* Reduce gap between cards */
}

.vision-mission-section .column {
  max-width: 600px; /* Make cards narrower */
  margin: 0 auto;
}

/* Mobile adjustments */
@media (max-width: 768px) {
  .vision-mission-section .columns {
    max-width: none;
    gap: 1rem;
  }
  
  .vision-mission-section .column {
    max-width: none;
  }
}

.vision-mission-card {
  padding: 2rem;
  background: white;
  border-radius: 0.75rem;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  height: 100%;
  transition: transform 0.3s ease;
  text-align: left;
}

.vision-mission-card:hover {
  transform: translateY(-2px);
}

.vision-mission-icon {
  color: #ff4500;
  text-align: left;
}

/* Team Section */
.team-section {
  background: white;
  padding: 4rem 1rem;
}

.team-card {
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  border-radius: 0.75rem;
  transition: transform 0.3s ease;
  height: 100%;
}

.team-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}

.team-avatar {
  width: 120px;
  height: 120px;
  margin: 0 auto;
  border-radius: 50%;
  overflow: hidden;
  border: 4px solid #f0f0f0;
}

.team-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.team-description {
  font-size: 0.95rem;
  line-height: 1.5;
}

/* Impact Section */
.about-impact-section {
  background: linear-gradient(135deg, #fafafa 0%, #f5f5f5 100%);
  padding: 4rem 1rem;
}

.impact-card-container {
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  border-radius: 0.75rem;
  transition: transform 0.3s ease;
  height: 100%;
}

.impact-card-container:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}

.impact-icon-container {
  width: 4rem;
  height: 4rem;
  background: #22c55e;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
}

.impact-icon-container i {
  font-size: 1.5rem;
  color: white;
}

.impact-number {
  font-size: 2.5rem;
  font-weight: 800;
  line-height: 1;
  margin-bottom: 1rem;
}

.impact-label {
  font-size: 1rem;
  font-weight: 600;
}

/* Join Mission Section */
.about-join-section {
  background: linear-gradient(90deg, #ff4500 0%, #ff7e00 40%);
  padding: 5rem 1rem;
}

.about-join-description {
  max-width: 600px;
  margin: 0 auto 2rem;
  line-height: 1.6;
  opacity: 0.95;
}


/* ---------- About Page Responsive Adjustments ---------- */
@media (max-width: 768px) {
  .about-hero {
    padding: 5rem 1rem 3rem;
  }
  
  .vision-mission-section,
  .team-section,
  .about-impact-section,
  .about-join-section {
    padding: 3rem 1rem;
  }
  
  .impact-number {
    font-size: 2rem;
  }
  
  .impact-icon-container {
    width: 3.5rem;
    height: 3.5rem;
  }
  
  .impact-icon-container i {
    font-size: 1.25rem;
  }
  
  .team-avatar {
    width: 100px;
    height: 100px;
  }
}

@media (max-width: 480px) {
  .about-hero {
    padding: 4rem 1rem 2rem;
  }
  
  .vision-mission-section,
  .team-section,
  .about-impact-section,
  .about-join-section {
    padding: 2.5rem 1rem;
  }
  
  .impact-number {
    font-size: 1.8rem;
  }
  
  .impact-icon-container {
    width: 3rem;
    height: 3rem;
  }
  
  .impact-icon-container i {
    font-size: 1.1rem;
  }
  
  .team-avatar {
    width: 90px;
    height: 90px;
  }
  
  .team-description {
    font-size: 0.9rem;
  }
}



