/*==================================================
  BOUTONS SIMPLES - THÈME TOGOLAIS
  Couleurs simples et épurées
==================================================*/

:root {
  --togo-green: #006A4E;
  --togo-green-light: #009B5C;
  --togo-gold: #FFD700;
  --togo-gold-dark: #B8860B;
}

/*==================================================
  BOUTON VERT (Voir & Postuler)
  Blanc sur vert → Vert sur blanc au survol
==================================================*/
.btn-apply, .btn-hero-secondary, .btn-apply-now, .btn-togo-green {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 24px;
  border: 2px solid var(--togo-green);
  border-radius: 25px;
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.3s ease;
  background: var(--togo-green);
  color: white;
}

.btn-apply:hover, .btn-hero-secondary:hover, .btn-apply-now:hover, .btn-togo-green:hover {
  background: white;
  color: var(--togo-green);
  border-color: var(--togo-green);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 106, 78, 0.3);
}

/*==================================================
  BOUTON JAUNE (S'inscrire)
  Blanc sur jaune → Jaune sur blanc au survol
==================================================*/
.btn-register, .btn-hero-primary, .btn-subscribe, .btn-togo-gold {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 24px;
  border: 2px solid var(--togo-gold);
  border-radius: 25px;
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.3s ease;
  background: var(--togo-gold);
  color: white;
}

.btn-register:hover, .btn-hero-primary:hover, .btn-subscribe:hover, .btn-togo-gold:hover {
  background: white;
  color: var(--togo-gold-dark);
  border-color: var(--togo-gold);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(255, 215, 0, 0.3);
}

/*==================================================
  EFFETS COMMUNS
==================================================*/
.btn-apply:active, .btn-register:active, 
.btn-hero-secondary:active, .btn-hero-primary:active,
.btn-apply-now:active, .btn-subscribe:active {
  transform: translateY(0);
  transition: all 0.1s ease;
}

/* Animation des icônes */
.btn-apply i, .btn-register i, .btn-hero-secondary i, .btn-hero-primary i,
.btn-subscribe i, .btn-apply-now i {
  transition: transform 0.3s ease;
}

.btn-apply:hover i, .btn-register:hover i, .btn-hero-secondary:hover i, 
.btn-hero-primary:hover i, .btn-subscribe:hover i, .btn-apply-now:hover i {
  transform: translateX(3px);
}

/*==================================================
  RESPONSIVE
==================================================*/
@media (max-width: 768px) {
  .btn-apply, .btn-register, .btn-hero-primary, .btn-hero-secondary,
  .btn-subscribe, .btn-apply-now {
    padding: 10px 20px;
    font-size: 0.9rem;
  }
}

/*==================================================
  ACCESSIBILITY
==================================================*/
.btn-apply:focus, .btn-register:focus, .btn-hero-primary:focus, 
.btn-hero-secondary:focus, .btn-subscribe:focus, .btn-apply-now:focus {
  outline: 2px solid #333;
  outline-offset: 2px;
}
