/* ============================================
   VOLUNTEER PAGE STYLES
   Purpose: Styles specific to volunteer.ejs
   Mobile-first approach
   ============================================ */

/* ============================================
   HERO SECTION
   ============================================ */

.volunteer-hero {
  padding: 80px 20px;
  background: linear-gradient(135deg, #5B8DDB 0%, #7BA5E8 100%);
  color: var(--text-on-primary);
  text-align: center;
}

@media (min-width: 768px) {
  .volunteer-hero {
    padding: 100px 40px;
  }
}

.hero-title {
  font-size: 36px;
  font-weight: 800;
  margin-bottom: 16px;
  color: var(--text-on-primary);
}

@media (min-width: 768px) {
  .hero-title {
    font-size: 52px;
  }
}

.hero-subtitle {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.95);
  margin-bottom: 0;
}

@media (min-width: 768px) {
  .hero-subtitle {
    font-size: 22px;
  }
}

/* ============================================
   ROLES SECTION
   ============================================ */

.volunteer-roles-section {
  padding: 60px 20px;
  background-color: var(--bg-white);
}

@media (min-width: 768px) {
  .volunteer-roles-section {
    padding: 100px 40px;
  }
}

.section-title {
  font-size: 32px;
  font-weight: 700;
  text-align: center;
  margin-bottom: 48px;
  color: var(--text-dark);
}

@media (min-width: 768px) {
  .section-title {
    font-size: 42px;
    margin-bottom: 64px;
  }
}

.volunteer-roles-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  max-width: 1100px;
  margin: 0 auto;
}

@media (min-width: 640px) {
  .volunteer-roles-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 28px;
  }
}

@media (min-width: 1024px) {
  .volunteer-roles-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
  }
}

.volunteer-role-card {
  background-color: var(--bg-cream);
  padding: 32px 24px;
  border-radius: var(--radius-large);
  box-shadow: var(--shadow-sm);
  text-align: center;
  transition: all var(--transition-normal);
}

.volunteer-role-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-6px);
}

.volunteer-role-icon {
  font-size: 48px;
  margin-bottom: 20px;
}

.volunteer-role-card h3 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--text-dark);
}

.volunteer-role-card p {
  font-size: 15px;
  line-height: 1.6;
  color: var(--text-medium);
}

/* ============================================
   FORM SECTION
   ============================================ */

.volunteer-form-section {
  padding: 60px 20px;
  background-color: var(--bg-cream);
}

@media (min-width: 768px) {
  .volunteer-form-section {
    padding: 100px 40px;
  }
}

.volunteer-form-header {
  max-width: 700px;
  margin: 0 auto 40px;
  text-align: center;
}

.volunteer-form-desc {
  font-size: 16px;
  line-height: 1.7;
  color: var(--text-medium);
}

@media (min-width: 768px) {
  .volunteer-form-desc {
    font-size: 18px;
  }
}

.volunteer-form-wrapper {
  max-width: 600px;
  margin: 0 auto;
  position: relative;
}

.volunteer-form {
  background-color: var(--bg-white);
  padding: 32px 24px;
  border-radius: var(--radius-large);
  box-shadow: var(--shadow-md);
}

@media (min-width: 768px) {
  .volunteer-form {
    padding: 40px 36px;
  }
}

.volunteer-applying-as {
  font-size: 15px;
  color: var(--text-medium);
  margin-bottom: 24px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--bg-light);
}

.volunteer-applying-as strong {
  color: var(--text-dark);
}

.volunteer-form .form-group {
  margin-bottom: 24px;
}

@media (min-width: 768px) {
  .volunteer-form .form-group {
    margin-bottom: 28px;
  }
}

.volunteer-form textarea {
  resize: vertical;
  min-height: 140px;
}

.volunteer-roles-options {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 8px;
}

.volunteer-role-checkbox {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 15px;
  font-weight: 500;
  color: var(--text-dark);
  cursor: pointer;
}

.volunteer-role-checkbox input {
  width: 18px;
  height: 18px;
  cursor: pointer;
}

/* ============================================
   SUCCESS MESSAGE
   ============================================ */

.success-message {
  background-color: var(--bg-white);
  padding: 60px 32px;
  border-radius: var(--radius-large);
  box-shadow: var(--shadow-md);
  text-align: center;
}

@media (min-width: 768px) {
  .success-message {
    padding: 80px 48px;
  }
}

.success-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 20px;
  background: linear-gradient(135deg, var(--success-green) 0%, #41B856 100%);
  border-radius: var(--radius-circle);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 36px;
  color: var(--text-on-primary);
  box-shadow: var(--shadow-md);
}

.success-message h3 {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--text-dark);
}

.success-message p {
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 28px;
  color: var(--text-medium);
}
