/* No People Hungry Page — Full-width Hero Design */

:root {
  --primary-color: #f26522;
  --secondary-color: #0d0e14;
  --text-light: #ffffff;
  --text-muted: #666666;
  --background-light: #f8f9fa;
  --shadow-soft: rgba(0, 0, 0, 0.08);
  --shadow-medium: rgba(0, 0, 0, 0.12);
  --gradient-primary: linear-gradient(135deg, #f26522 0%, #ff8c42 100%);
}

.min-vh-80 {
  min-height: 80vh;
}

/* ===== Hero Section ===== */
.hunger-hero {
  position: relative;
  overflow: hidden;
  padding: 80px 0 60px;
}

.hunger-hero-bg {
  position: absolute;
  inset: 0;
  z-index: 1;
}

.hunger-hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hunger-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(13, 14, 20, 0.88) 0%, rgba(26, 27, 46, 0.82) 50%, rgba(242, 101, 34, 0.15) 100%);
}

/* Badge */
.hunger-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--gradient-primary);
  color: var(--text-light);
  padding: 10px 22px;
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 22px;
  box-shadow: 0 8px 25px rgba(242, 101, 34, 0.35);
}

.hunger-hero-badge i {
  font-size: 1.1rem;
}

/* Title */
.hunger-hero-title {
  font-size: clamp(2.5rem, 5vw, 3.8rem);
  font-weight: 800;
  color: #fff;
  line-height: 1.1;
  margin-bottom: 22px;
  letter-spacing: -0.02em;
}

.hunger-highlight {
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: inline-block;
}

/* Description */
.hunger-hero-desc {
  font-size: 1.05rem;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 30px;
  max-width: 560px;
}

/* Info Card */
.hunger-info-row {
  margin-bottom: 10px;
}

.hunger-info-card {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 18px;
  padding: 20px 24px;
  display: flex;
  align-items: center;
  gap: 18px;
  backdrop-filter: blur(12px);
}

.hunger-info-icon {
  width: 55px;
  height: 55px;
  min-width: 55px;
  background: var(--gradient-primary);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: #fff;
  box-shadow: 0 6px 18px rgba(242, 101, 34, 0.35);
}

.hunger-info-card h4 {
  color: #fff;
  font-size: 1.15rem;
  font-weight: 700;
  margin: 0 0 4px;
}

.hunger-info-card p {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.85rem;
  margin: 0;
}

/* Stats Grid */
.hunger-stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}

.hunger-stat-card {
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  padding: 28px 20px;
  text-align: center;
  backdrop-filter: blur(12px);
  transition: all 0.35s ease;
}

.hunger-stat-card:hover {
  background: rgba(255, 255, 255, 0.12);
  transform: translateY(-6px);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.2);
  border-color: rgba(242, 101, 34, 0.3);
}

.hunger-stat-icon {
  width: 52px;
  height: 52px;
  background: var(--gradient-primary);
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 14px;
  font-size: 1.3rem;
  color: #fff;
  box-shadow: 0 6px 18px rgba(242, 101, 34, 0.3);
}

.hunger-stat-number {
  font-size: 2rem;
  font-weight: 800;
  color: #fff;
  line-height: 1;
  margin-bottom: 4px;
}

.hunger-stat-label {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.55);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* ===== Gallery Section ===== */
.hunger-gallery-section {
  padding: 60px 0;
  background: linear-gradient(135deg, var(--background-light) 0%, rgba(242, 101, 34, 0.02) 100%);
}

.hunger-section-header {
  margin-bottom: 50px;
}

.hunger-section-badge {
  display: inline-block;
  background: var(--gradient-primary);
  color: var(--text-light);
  padding: 8px 20px;
  border-radius: 25px;
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 15px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.hunger-section-title {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  color: var(--secondary-color);
  line-height: 1.2;
}

.hunger-section-desc {
  font-size: 1.05rem;
  color: var(--text-muted);
  max-width: 750px;
  margin: 0 auto;
}

/* ===== Responsive ===== */
@media (max-width: 992px) {
  .hunger-stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
    margin-top: 30px;
  }

  .hunger-gallery-grid {
    grid-template-columns: repeat(2, 1fr) !important;
  }
}

@media (max-width: 768px) {
  .hunger-hero {
    padding: 60px 0 40px;
  }

  .hunger-hero-title {
    font-size: 2rem;
  }

  .hunger-stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    margin-top: 25px;
  }

  .hunger-stat-card {
    padding: 20px 14px;
  }

  .hunger-stat-number {
    font-size: 1.5rem;
  }

  .hunger-info-card {
    flex-direction: column;
    text-align: center;
  }

  .hunger-gallery-grid {
    grid-template-columns: 1fr !important;
  }
}

@media (max-width: 576px) {
  .hunger-hero-title {
    font-size: 1.7rem;
  }

  .hunger-section-header {
    margin-bottom: 35px;
  }
}

@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
}
