/* ==========================================
   SERVME - COMPONENTS BUTTONS
   Boutons uniformes - Style Landing
   Extrait de buttons.css (DESKTOP uniquement)
   ========================================== */

/* Base button */
.landing-btn,
.btn {
  padding: 12px 24px;
  border-radius: 24px;
  font-weight: 600;
  font-size: 16px;
  border: none;
  cursor: pointer;
  transition: all 0.2s ease;
  text-decoration: none;
  display: inline-block;
  font-family: var(--font-family);
  box-sizing: border-box;
}

/* Variantes de taille */
.landing-btn-sm,
.btn-sm {
  padding: 8px 16px;
  font-size: 14px;
}

.landing-btn-lg,
.btn-lg {
  padding: 16px 32px;
  font-size: 18px;
}

/* Bouton principal (blanc sur fond coloré) */
.landing-btn-primary,
.btn-primary {
  background: white;
  color: #FF385C;
  border: 2px solid white;
}

.landing-btn-primary:hover,
.btn-primary:hover {
  background: #f0f0f0;
  transform: scale(1.05);
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

/* Bouton secondaire (outline) */
.landing-btn-secondary,
.btn-secondary {
  background: transparent;
  color: white;
  border: 2px solid white;
}

.landing-btn-secondary:hover,
.btn-secondary:hover {
  background: rgba(255,255,255,0.1);
  transform: scale(1.05);
}

/* Bouton secondaire sur fond clair */
.landing-btn-secondary-dark,
.btn-secondary-dark {
  background: transparent;
  color: #FF385C;
  border: 2px solid #FF385C;
}

.landing-btn-secondary-dark:hover,
.btn-secondary-dark:hover {
  background: rgba(255,56,92,0.05);
  transform: scale(1.05);
}

/* Bouton Premium */
.btn-premium {
  background: linear-gradient(135deg, #FF385C 0%, #BC1A6E 100%);
  color: white;
  border: none;
}

.btn-premium:hover {
  background: linear-gradient(135deg, #E6325A 0%, #A81862 100%);
  transform: scale(1.05);
  box-shadow: 0 4px 12px rgba(255,56,92,0.3);
}

/* Bouton Google */
.btn-google {
  background: white;
  color: #333333;
  border: 2px solid #DDDDDD;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.btn-google:hover {
  background: #f9f9f9;
  border-color: #CCCCCC;
  transform: scale(1.05);
}

/* ==========================================
   MENU BURGER
   Styles déplacés vers css/components/burger-menu.css
   ========================================== */

