/* -------------------------------------------------------
   ðŸŸ§ BUTTON COMPONENTS â€” Primary, Secondary, Ghost, Icon
   Purpose: Clickable CTAs styled with EchoBrand visual system
-------------------------------------------------------- */

.btn-primary {
  background-color: #FDD14C;
  color: #1A1A1A;
  font-family: 'Montserrat', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  padding: 0.75rem 1.5rem;
  border-radius: 0.375rem;
  border: none;
  display: inline-block;
  text-align: center;
  text-decoration: none;
  cursor: pointer;
  transition: background-color 0.25s ease, box-shadow 0.25s ease, transform 0.25s ease;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
  min-width: 120px;
  line-height: 1.2;
}


.btn-primary:hover {
  background-color: #fcca1b;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  transform: translateY(-1px);
}


.btn-secondary {
  background-color: #ffffff;
  color: #FDCB42;
  border: 2px solid #FDCB42;
  padding: 0.75rem 1.5rem;
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 1rem;
  border-radius: 6px;
  text-align: center;
  transition: all 0.3s ease;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.06);
}
.btn-secondary:hover {
  background-color: #FDCB42;
  color: #ffffff;
  box-shadow: 0 4px 12px rgba(253, 203, 66, 0.5);
}

.btn-ghost {
  background-color: transparent;
  color: #FDCB42;
  border: none;
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 1rem;
  padding: 0.75rem 1.5rem;
  text-decoration: none;
  transition: color 0.3s ease, text-decoration 0.3s ease;
}
.btn-ghost:hover {
  text-decoration: underline;
  color: #FDCB42;
}

.btn-glow {
  background-color: #FDCB42;
  color: #ffffff;
  padding: 0.75rem 1.5rem;
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 1rem;
  border-radius: 6px;
  box-shadow: 0 0 10px rgba(253, 203, 66, 0.6);
  transition: box-shadow 0.3s ease;
}
.btn-glow:hover {
  box-shadow: 0 0 20px rgba(253, 203, 66, 0.9);
}

.btn-icon {
  background-color: #FDCB42;
  color: #ffffff;
  padding: 0.75rem 1.25rem;
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 1.25rem;
  border-radius: 6px;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: background-color 0.3s ease, box-shadow 0.3s ease;
}

.btn-icon:hover {
  background-color: #e5b82e;
  box-shadow: 0 4px 12px rgba(253, 203, 66, 0.4);
}
