/**
 * Contenu page bénévole — sections sous le hero (charte ACCF).
 */
.volunteer-page {
  --vol-primary: #ff0a54;
  --vol-ink: rgba(0, 0, 0, 0.8);
  --vol-body: rgba(0, 0, 0, 0.65);
  --vol-border: #e9e8e9;
  --vol-soft-bg: #f5f3f4;
  --vol-section-gap: clamp(4rem, 8vw, 7.5rem);
}

.volunteer-page__section {
  padding: var(--vol-section-gap) 0;
}

.volunteer-page__section--soft {
  background-color: var(--vol-soft-bg);
  border-top: 1px solid var(--vol-border);
  border-bottom: 1px solid var(--vol-border);
}

.volunteer-page__why {
  text-align: center;
}

.volunteer-page__title {
  margin: 0 0 2rem;
  font-family: "Oswald", Arial, sans-serif;
  font-size: clamp(1.75rem, 3vw, 3rem);
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: var(--vol-ink);
}

.volunteer-page__title--dark {
  color: var(--vol-ink);
}

.volunteer-page__intro-text {
  margin: 0 auto 3rem;
  max-width: 48rem;
  font-family: "Work Sans", Arial, sans-serif;
  font-size: 1.125rem;
  line-height: 1.65;
  color: var(--vol-body);
}

.volunteer-page__accent-line {
  width: 6rem;
  height: 4px;
  margin: 0 auto;
  background-color: var(--vol-primary);
}

.volunteer-page__missions-header {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 4rem;
}

.volunteer-page__missions-label {
  margin: 0;
  font-family: "Work Sans", Arial, sans-serif;
  font-size: 0.875rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--vol-primary);
}

.volunteer-page__missions-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .volunteer-page__missions-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 992px) {
  .volunteer-page__missions-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.volunteer-page__mission-card {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  text-align: left;
  padding: 2rem 1.5rem;
  background-color: #fff;
  border: 1px solid var(--vol-border);
  height: 100%;
}

.volunteer-page__mission-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  margin-bottom: 1.5rem;
}

.volunteer-page__mission-icon-img {
  width: 3.5rem;
  height: 3.5rem;
  object-fit: contain;
  filter: brightness(0) invert(27%) sepia(85%) saturate(7057%) hue-rotate(333deg) brightness(100%) contrast(101%);
}

.volunteer-page__mission-title {
  margin: 0 0 1rem;
  font-family: "Oswald", Arial, sans-serif;
  font-size: 1.35rem;
  font-weight: 600;
  line-height: 1.25;
  text-transform: uppercase;
  color: var(--vol-ink);
}

.volunteer-page__mission-text {
  margin: 0;
  font-family: "Work Sans", Arial, sans-serif;
  font-size: 1rem;
  line-height: 1.6;
  color: var(--vol-body);
}

/* Section contact / formulaire */
.volunteer-page__contact {
  scroll-margin-top: 6rem;
}

.volunteer-page__contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: start;
}

@media (min-width: 768px) {
  .volunteer-page__contact-grid {
    grid-template-columns: 5fr 7fr;
    gap: 2rem;
  }
}

.volunteer-page__contact-title {
  margin: 0 0 1.5rem;
  font-family: "Oswald", Arial, sans-serif;
  font-size: clamp(1.75rem, 3vw, 3rem);
  font-weight: 600;
  line-height: 1.15;
  text-transform: uppercase;
  color: var(--vol-ink);
}

.volunteer-page__contact-title em {
  font-style: normal;
  color: inherit;
}

.volunteer-page__contact-lead {
  margin: 0 0 3rem;
  font-family: "Work Sans", Arial, sans-serif;
  font-size: 1.125rem;
  line-height: 1.65;
  color: var(--vol-body);
}

.volunteer-page__phone-list {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.volunteer-page__phone-item {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.volunteer-page__phone-item .ion-ios-call {
  flex-shrink: 0;
  font-size: 1.5rem;
  color: rgba(0, 0, 0, 0.8);
}

.volunteer-page__phone-label {
  margin: 0 0 0.25rem;
  font-family: "Work Sans", Arial, sans-serif;
  font-size: 0.875rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: rgba(0, 0, 0, 0.8);
}

.volunteer-page__phone-value {
  margin: 0;
  font-family: "Work Sans", Arial, sans-serif;
  font-size: 1rem;
  line-height: 1.5;
  color: rgba(0, 0, 0, 0.8);
}

.volunteer-page__phone-value a {
  color: rgba(0, 0, 0, 0.8) !important;
  text-decoration: none;
}

.volunteer-page__phone-value a:hover,
.volunteer-page__phone-value a:focus {
  color: rgba(0, 0, 0, 0.8) !important;
  text-decoration: underline;
}

.volunteer-page__form-panel {
  padding: 2rem;
  background-color: var(--vol-soft-bg);
  border: 1px solid var(--vol-border);
}

@media (min-width: 768px) {
  .volunteer-page__form-panel {
    padding: 3rem;
  }
}

.volunteer-page__form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.volunteer-page__form-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .volunteer-page__form-row {
    grid-template-columns: repeat(2, 1fr);
  }
}

.volunteer-page__form-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.volunteer-page__form-label {
  font-family: "Work Sans", Arial, sans-serif;
  font-size: 0.875rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--vol-ink);
}

.volunteer-page__form-input,
.volunteer-page__form-textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  font-family: "Work Sans", Arial, sans-serif;
  font-size: 1rem;
  line-height: 1.5;
  color: var(--vol-ink);
  background-color: #fff;
  border: 1px solid var(--vol-border);
  outline: none;
  box-shadow: none;
}

.volunteer-page__form-input:focus,
.volunteer-page__form-textarea:focus,
.volunteer-page__form-input:active,
.volunteer-page__form-textarea:active {
  border-color: var(--vol-border);
  outline: none;
  box-shadow: none;
}

.volunteer-page__form-textarea {
  min-height: 8rem;
  resize: vertical;
}

.volunteer-page__form-actions {
  margin-top: 0.5rem;
  text-align: center;
}

.volunteer-page__form-message {
  margin: 0;
  padding: 0.75rem 1rem;
  font-family: "Work Sans", Arial, sans-serif;
  font-size: 0.95rem;
  border-radius: 4px;
}

.volunteer-page__form-message--success {
  color: #28a745;
  background-color: rgba(40, 167, 69, 0.1);
  border: 1px solid rgba(40, 167, 69, 0.2);
}

.volunteer-page__form-message--error {
  color: #dc3545;
  background-color: rgba(220, 53, 69, 0.1);
  border: 1px solid rgba(220, 53, 69, 0.2);
}
