/**
 * FUNDAAHE - Button Components
 * Dual theme: dark default + light mode overrides
 */

/* ===== PRIMARY BUTTON ===== */
.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  background-color: var(--teal, #03888A);
  color: white;
  font-weight: 600;
  padding: 0.75rem 1.5rem;
  border-radius: 0.5rem;
  transition: all 0.3s ease;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
  text-decoration: none;
  border: none;
  cursor: pointer;
}

.btn-primary:hover {
  background-color: var(--navy, #1D4E89);
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
  transform: translateY(-1px);
}

html.light .btn-primary:hover {
  background-color: var(--teal-dark, #026d6e);
  box-shadow: 0 6px 20px rgba(3, 136, 138, 0.25);
}

/* ===== SECONDARY BUTTON ===== */
.btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  background-color: var(--navy, #1D4E89);
  color: white;
  font-weight: 600;
  padding: 0.75rem 1.5rem;
  border-radius: 0.5rem;
  transition: all 0.3s ease;
  text-decoration: none;
  border: none;
  cursor: pointer;
}

.btn-secondary:hover {
  background-color: var(--teal, #03888A);
}

/* ===== GHOST BUTTON ===== */
.btn-ghost {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  background-color: transparent;
  color: var(--teal, #03888A);
  font-weight: 600;
  padding: 0.75rem 1.5rem;
  border-radius: 0.5rem;
  border: 1px solid var(--teal, #03888A);
  transition: all 0.3s ease;
  text-decoration: none;
  cursor: pointer;
}

.btn-ghost:hover {
  background-color: rgba(3, 136, 138, 0.1);
}

/* ===== CTA BUTTON (MEGA) ===== */
.mega-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  background-color: var(--teal, #03888A);
  color: white;
  font-weight: 700;
  padding: 1rem 2rem;
  border-radius: 0.75rem;
  font-size: 1.125rem;
  transition: all 0.3s ease;
  box-shadow: 0 0 30px rgba(3, 136, 138, 0.3);
  text-decoration: none;
  border: none;
  cursor: pointer;
}

.mega-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 40px rgba(3, 136, 138, 0.5), 0 20px 50px rgba(0,0,0,0.3);
}

html.light .mega-btn {
  box-shadow: 0 4px 15px rgba(3, 136, 138, 0.25);
}

html.light .mega-btn:hover {
  box-shadow: 0 8px 25px rgba(3, 136, 138, 0.35);
}

/* ===== BUTTON SIZES ===== */
.btn-sm {
  padding: 0.5rem 1rem;
  font-size: 0.875rem;
}

.btn-lg {
  padding: 1rem 2.5rem;
  font-size: 1.125rem;
}

.btn-xl {
  padding: 1.25rem 3rem;
  font-size: 1.25rem;
}

/* ===== BUTTON WITH ICON ===== */
.btn-icon {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.btn-icon i,
.btn-icon svg {
  font-size: 1.1em;
}

/* ===== FULL WIDTH BUTTON ===== */
.btn-block {
  width: 100%;
}
