/* Volunteer Page Specific Styles */

/* Volunteer Hero Section */
.volunteer-hero {
  position: relative;
  padding: 120px 0 80px;
  color: white;
  text-align: center;
  overflow: hidden;
}

.volunteer-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, #fbedc3, #ccb363, #c27e35, #76290b, #1e3226);
  z-index: -2;
}

.hero-slideshow {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: -1;
}

.hero-slide {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0;
  transition: opacity 1s ease-in-out;
}

.hero-slide.active {
  opacity: 1;
}

.hero-slide.bg1 {
  background-image: url('./public/our.png');
}

.hero-slide.bg2 {
  background-image: url('./public/bg2.jpeg');
}

.hero-slide.bg3 {
  background-image: url('./public/bg3.jpeg');
}

.volunteer-hero-content h1 {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.volunteer-hero-content p {
  font-size: 1.2rem;
  margin-bottom: 3rem;
  opacity: 0.9;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.hero-stats {
  display: flex;
  justify-content: center;
  gap: 4rem;
  flex-wrap: wrap;
  margin-bottom: 3rem;
}

.hero-stat {
  text-align: center;
}

.hero-stat h3 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: #fbedc3;
}

.hero-stat p {
  font-size: 1rem;
  margin: 0;
  opacity: 0.9;
}

.hero-cta {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.volunteer-cta-btn {
  background: #c27e35;
  color: #1e3226;
  border: none;
  padding: 1rem 2rem;
  border-radius: 8px;
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.volunteer-cta-btn:hover {
  background: #fbedc3;
  color: #1e3226;
}

.learn-more-cta-btn {
  background: transparent;
  color: white;
  border: 2px solid white;
  padding: 1rem 2rem;
  border-radius: 8px;
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.learn-more-cta-btn:hover {
  background: white;
  color: #1e3226;
}

/* Why Volunteer Section */
.why-volunteer {
  padding: 5rem 0;
  background: #fbedc3;
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.benefit-card {
  background: white;
  padding: 2rem;
  border-radius: 15px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  text-align: center;
  transition: transform 0.3s ease;
}

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

.benefit-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.benefit-card h3 {
  font-size: 1.3rem;
  margin-bottom: 1rem;
  color: #1e3226;
}

.benefit-card p {
  color: #76290b;
  line-height: 1.6;
}

/* Volunteer Opportunities */
.volunteer-opportunities {
  padding: 5rem 0;
}

.opportunities-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
}

.opportunity-card {
  background: white;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

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

.opportunity-image {
  position: relative;
}

.opportunity-image img {
  width: 100%;
  height: 250px;
  object-fit: cover;
}

.opportunity-badge {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: #c27e35;
  color: white;
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-size: 0.9rem;
  font-weight: 600;
}

.opportunity-content {
  padding: 1.5rem;
}

.opportunity-content h3 {
  font-size: 1.3rem;
  margin-bottom: 1rem;
  color: #1e3226;
}

.opportunity-content p {
  color: #76290b;
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

.opportunity-details {
  display: flex;
  gap: 1rem;
  margin-bottom: 1rem;
  font-size: 0.9rem;
  color: #76290b;
  flex-wrap: wrap;
}

.time-commitment,
.location {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.skills-needed {
  display: flex;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
  flex-wrap: wrap;
}

.skill-tag {
  background: #ccb363;
  color: #1e3226;
  padding: 0.25rem 0.75rem;
  border-radius: 15px;
  font-size: 0.8rem;
  font-weight: 500;
}

.apply-btn {
  background: #c27e35;
  color: white;
  border: none;
  padding: 0.75rem 1.5rem;
  border-radius: 8px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  width: 100%;
}

.apply-btn:hover {
  background: #1e3226;
}

/* Requirements Section */
.requirements {
  padding: 5rem 0;
  background: #fbedc3;
}

.requirements-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.requirements-text h2 {
  font-size: 2.5rem;
  margin-bottom: 2rem;
  color: #1e3226;
}

.requirement-item {
  margin-bottom: 2rem;
}

.requirement-item h4 {
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
  color: #76290b;
}

.requirement-item p {
  color: #76290b;
  line-height: 1.6;
}

.requirements-image img {
  width: 100%;
  border-radius: 15px;
}

/* Application Process */
.application-process {
  padding: 5rem 0;
}

.process-steps {
  display: flex;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
}

.step {
  text-align: center;
  flex: 1;
  min-width: 200px;
}

.step-number {
  width: 60px;
  height: 60px;
  background: #c27e35;
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 700;
  margin: 0 auto 1rem;
}

.step h3 {
  font-size: 1.2rem;
  margin-bottom: 1rem;
  color: #1e3226;
}

.step p {
  color: #76290b;
  line-height: 1.6;
}

/* Testimonials */
.testimonials {
  padding: 5rem 0;
  background: #fbedc3;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
}

.testimonial-card {
  background: white;
  padding: 2rem;
  border-radius: 15px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.testimonial-content {
  margin-bottom: 1.5rem;
}

.testimonial-content p {
  color: #76290b;
  line-height: 1.6;
  font-style: italic;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.testimonial-author img {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  object-fit: cover;
}

.author-info h4 {
  font-size: 1.1rem;
  margin-bottom: 0.25rem;
  color: #1e3226;
}

.author-info p {
  color: #ccb363;
  font-size: 0.9rem;
  margin: 0;
}

/* Volunteer Application */
.volunteer-application {
  padding: 5rem 0;
}

.application-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}

.application-info h2 {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
  color: #1e3226;
}

.application-info p {
  color: #76290b;
  line-height: 1.6;
  margin-bottom: 2rem;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.contact-icon {
  font-size: 1.5rem;
  flex-shrink: 0;
}

.contact-item h4 {
  font-size: 1.1rem;
  margin-bottom: 0.25rem;
  color: #1e3226;
}

.contact-item p {
  color: #76290b;
  margin: 0;
}

.volunteer-form {
  background: white;
  padding: 2rem;
  border-radius: 15px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.volunteer-form h3 {
  font-size: 1.5rem;
  margin-bottom: 2rem;
  color: #1e3226;
  text-align: center;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-group label {
  display: block;
  margin-bottom: 0.5rem;
  color: #1e3226;
  font-weight: 500;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 1rem;
  border: 2px solid #ccb363;
  border-radius: 8px;
  font-size: 1rem;
  transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #c27e35;
}

.checkbox-group {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
}

.checkbox-label {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  cursor: pointer;
  line-height: 1.4;
}

.checkbox-label input[type="checkbox"] {
  width: auto;
  margin: 0;
}

.submit-btn {
  background: #c27e35;
  color: white;
  border: none;
  padding: 1rem 2rem;
  border-radius: 8px;
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  width: 100%;
}

.submit-btn:hover {
  background: #1e3226;
}

/* Responsive Design */
@media (max-width: 768px) {
  .volunteer-hero-content h1 {
    font-size: 2rem;
  }

  .hero-stats {
    gap: 2rem;
  }

  .hero-stat h3 {
    font-size: 2rem;
  }

  .hero-cta {
    flex-direction: column;
    align-items: center;
  }

  .volunteer-cta-btn,
  .learn-more-cta-btn {
    width: 100%;
    max-width: 300px;
  }

  .benefits-grid {
    grid-template-columns: 1fr;
  }

  .opportunities-grid {
    grid-template-columns: 1fr;
  }

  .requirements-content {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .process-steps {
    flex-direction: column;
    align-items: center;
  }

  .testimonials-grid {
    grid-template-columns: 1fr;
  }

  .application-content {
    grid-template-columns: 1fr;
  }

  .form-row {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .volunteer-hero {
    padding: 100px 0 60px;
  }

  .volunteer-hero-content h1 {
    font-size: 1.8rem;
  }

  .hero-stats {
    flex-direction: column;
    gap: 1rem;
  }

  .opportunity-details {
    flex-direction: column;
    gap: 0.5rem;
  }

  .skills-needed {
    justify-content: center;
  }

  .process-steps {
    gap: 3rem;
  }
}


/* Add to volunteer.css */
.volunteering-rules-card {
    background: linear-gradient(135deg, #c27e35 0%, #fbedc3 100%);
    border-radius: 22px;
    box-shadow: 0 4px 24px rgba(0,0,0,0.07);
    padding: 2.5rem 2rem;
    max-width: 650px;
    margin: 0 auto 3rem auto;
}
.volunteering-rules-card h2 {
    font-size: 2rem;
    text-align: center;
    margin-bottom: 1.5rem;
    font-weight: 600;
    color: #222;
}
.rules-list {
    list-style: none;
    padding: 0;
    margin: 0;
    counter-reset: rule;
}
.rules-list li {
    background: #ffffffb3;
    border-radius: 8px;
    margin-bottom: 1rem;
    padding: 1.1rem 1.2rem 1.1rem 3.2rem;
    font-size: 1.08rem;
    position: relative;
    color: #333;
    box-shadow: 0 1px 4px rgba(0,0,0,0.03);
}
.rules-list li:before {
    counter-increment: rule;
    content: counter(rule);
    position: absolute;
    left: 1.1rem;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.3rem;
    font-weight: 600;
    color: #4a90e2;
    background: #eaf4ff;
    border-radius: 50%;
    width: 2rem;
    height: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.certification-criteria {
    background: linear-gradient(180deg, #fbedc3 0%, #ffffff 100%);
    padding: 5rem 0;
}

.certification-criteria .volunteering-rules-card {
    background: #c27e35;
    border-radius: 22px;
    box-shadow: 0 4px 24px rgba(0,0,0,0.07);
    padding: 2.5rem 2rem;
    max-width: 650px;
    margin: 0 auto 3rem auto;
}

.certification-criteria .rules-list {
    list-style: none;
    padding: 0;
    margin: 0;
    counter-reset: criteria;
}

.certification-criteria .rules-list li {
    background: rgba(245, 247, 251, 0.7);
    border-radius: 8px;
    margin-bottom: 1rem;
    padding: 1.1rem 1.2rem 1.1rem 3.2rem;
    font-size: 1.08rem;
    position: relative;
    color: #333;
    box-shadow: 0 1px 4px rgba(0,0,0,0.03);
}

.certification-criteria .rules-list li:before {
    counter-increment: criteria;
    content: counter(criteria);
    position: absolute;
    left: 1.1rem;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.3rem;
    font-weight: 600;
    color: #4a90e2;
    background: #eaf4ff;
    border-radius: 50%;
    width: 2rem;
    height: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.certification-criteria h2 {
    font-size: 2.2rem;
    text-align: center;
    margin-bottom: 2rem;
    color: #222;
}

/* Add to volunteer.css */
.testimonials {
    background: linear-gradient(135deg, #FBEDC3 0%, #fbedc3 100%);
    padding: 5rem 0;
    color: white;
}

.testimonials .section-header h2 {
    color: rgb(20, 6, 6);
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 3rem;
}

.testimonial-card {
    background: #c27e35;
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 3rem;
    max-width: 800px;
    margin: 0 auto 2rem;
    text-align: center;
}

.testimonial-text {
    font-size: 1.2rem;
    line-height: 1.8;
    margin-bottom: 2rem;
}

.testimonial-author h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.testimonial-author p {
    font-size: 1.1rem;
    opacity: 0.9;
}

.testimonial-dots {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 2rem;
}

.dot {
    width: 10px;
    height: 10px;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    cursor: pointer;
}

.dot.active {
    background: white;
}