/* Support Us Page Styles */

.support-main {
  padding: 0;
  flex: 1;
}

/* Hero Section */
.support-hero {
  background: linear-gradient(135deg, #2a071f 0%, #4a1a3a 100%);
  padding: 4rem 2rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.support-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('../img/african_kids.jpg') center/cover;
  opacity: 0.1;
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  margin: 0 auto;
}

.support-hero h1 {
  font-size: 3.5rem;
  font-weight: 300;
  color: #f1b8d0;
  margin: 0 0 1.5rem 0;
  line-height: 1.2;
}

.hero-subtitle {
  font-size: 1.25rem;
  color: #fff;
  line-height: 1.6;
  margin: 0;
  opacity: 0.9;
}

/* Ways to Support Section */
.support-ways {
  padding: 4rem 2rem;
  background: #1a0515;
}

.support-ways h2 {
  text-align: center;
  font-size: 2.5rem;
  color: #f1b8d0;
  margin: 0 0 3rem 0;
  font-weight: 300;
}

.support-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.support-card {
  background: rgba(255, 255, 255, 0.05);
  padding: 2.5rem;
  border-radius: 12px;
  text-align: center;
  border: 1px solid rgba(241, 184, 208, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.support-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(241, 184, 208, 0.1);
}

.support-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, #f1b8d0, #d4a5b8);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem auto;
  font-size: 2rem;
  color: #2a071f;
}

.support-card h3 {
  font-size: 1.5rem;
  color: #f1b8d0;
  margin: 0 0 1rem 0;
  font-weight: 400;
}

.support-card p {
  color: #fff;
  line-height: 1.6;
  margin: 0;
  opacity: 0.9;
}

/* Volunteer Section */
.volunteer-section {
  padding: 4rem 2rem;
  background: #2a071f;
}

.volunteer-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  max-width: 1200px;
  margin: 0 auto;
  align-items: start;
}

.volunteer-info h2 {
  font-size: 2.5rem;
  color: #f1b8d0;
  margin: 0 0 1.5rem 0;
  font-weight: 300;
}

.volunteer-info p {
  color: #fff;
  line-height: 1.6;
  margin: 0 0 2rem 0;
  font-size: 1.1rem;
}

.volunteer-benefits h3 {
  color: #f1b8d0;
  font-size: 1.5rem;
  margin: 0 0 1rem 0;
  font-weight: 400;
}

.volunteer-benefits ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.volunteer-benefits li {
  color: #fff;
  margin: 0 0 0.75rem 0;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.volunteer-benefits li i {
  color: #f1b8d0;
  font-size: 0.9rem;
}

/* Volunteer Form */
.volunteer-form-container {
  background: rgba(255, 255, 255, 0.05);
  padding: 2.5rem;
  border-radius: 12px;
  border: 1px solid rgba(241, 184, 208, 0.1);
}

.volunteer-form h3 {
  color: #f1b8d0;
  font-size: 1.75rem;
  margin: 0 0 2rem 0;
  font-weight: 400;
  text-align: center;
}

.form-group {
  margin: 0 0 1.5rem 0;
}

.form-group label {
  display: block;
  color: #f1b8d0;
  font-weight: 500;
  margin: 0 0 0.5rem 0;
  font-size: 0.95rem;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 0.875rem;
  border: 1px solid rgba(241, 184, 208, 0.3);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  font-size: 1rem;
  font-family: inherit;
  transition: border-color 0.3s ease, background-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #f1b8d0;
  background: rgba(255, 255, 255, 0.15);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: rgba(255, 255, 255, 0.6);
}

.submit-btn {
  width: 100%;
  background: linear-gradient(135deg, #f1b8d0, #d4a5b8);
  color: #2a071f;
  border: none;
  padding: 1rem 2rem;
  border-radius: 8px;
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

.submit-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(241, 184, 208, 0.3);
}

/* Partners Section */
.partners-section {
  padding: 4rem 2rem;
  background: #1a0515;
}

.partners-section h2 {
  text-align: center;
  font-size: 2.5rem;
  color: #f1b8d0;
  margin: 0 0 1rem 0;
  font-weight: 300;
}

.partners-intro {
  text-align: center;
  color: #fff;
  font-size: 1.1rem;
  margin: 0 0 3rem 0;
  opacity: 0.9;
}

.partners-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto 4rem auto;
}

.partner-card {
  background: rgba(255, 255, 255, 0.05);
  padding: 2rem;
  border-radius: 12px;
  text-align: center;
  border: 1px solid rgba(241, 184, 208, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.partner-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(241, 184, 208, 0.1);
}

.partner-logo {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, #f1b8d0, #d4a5b8);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem auto;
  font-size: 1.75rem;
  color: #2a071f;
}

.partner-card h3 {
  font-size: 1.25rem;
  color: #f1b8d0;
  margin: 0 0 1rem 0;
  font-weight: 400;
}

.partner-card p {
  color: #fff;
  line-height: 1.6;
  margin: 0;
  opacity: 0.9;
  font-size: 0.95rem;
}

.become-partner {
  text-align: center;
  background: rgba(255, 255, 255, 0.05);
  padding: 3rem 2rem;
  border-radius: 12px;
  border: 1px solid rgba(241, 184, 208, 0.1);
  max-width: 800px;
  margin: 0 auto;
}

.become-partner h3 {
  color: #f1b8d0;
  font-size: 1.75rem;
  margin: 0 0 1rem 0;
  font-weight: 400;
}

.become-partner p {
  color: #fff;
  line-height: 1.6;
  margin: 0 0 2rem 0;
  font-size: 1.1rem;
  opacity: 0.9;
}

.partner-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: linear-gradient(135deg, #f1b8d0, #d4a5b8);
  color: #2a071f;
  padding: 1rem 2rem;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.partner-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(241, 184, 208, 0.3);
}

/* Responsive Design */
@media (max-width: 1024px) {
  .volunteer-content {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  
  .support-hero h1 {
    font-size: 2.5rem;
  }
  
  .support-ways h2,
  .volunteer-info h2,
  .partners-section h2 {
    font-size: 2rem;
  }
}

@media (max-width: 768px) {
  .support-hero {
    padding: 3rem 1rem;
  }
  
  .support-hero h1 {
    font-size: 2rem;
  }
  
  .hero-subtitle {
    font-size: 1.1rem;
  }
  
  .support-ways,
  .volunteer-section,
  .partners-section {
    padding: 3rem 1rem;
  }
  
  .support-grid,
  .partners-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .support-card,
  .partner-card {
    padding: 1.5rem;
  }
  
  .volunteer-form-container {
    padding: 2rem;
  }
  
  .become-partner {
    padding: 2rem 1rem;
  }
}
