/* ================================================================
   THINSKY.COM - GHOST BUTTON SYSTEM
   Clean, Modern Pill-Shaped Ghost Buttons
   Electric Blue (#60A5FA) - Text Only, No Icons
   ================================================================ */

/* ----------------------------------------------------------------
   BASE GHOST BUTTON STYLES
   ---------------------------------------------------------------- */

.ghost-btn {
  /* Typography - Clean Sans-Serif */
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.5;
  text-decoration: none;

  /* Layout */
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 24px;

  /* Visual - Ghost Button Specs */
  background-color: transparent;
  border: 2px solid #60A5FA;
  border-radius: 50px;
  color: #60A5FA;
  cursor: pointer;

  /* Transitions */
  transition: background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease;

  /* Accessibility */
  outline: none;
  user-select: none;
  -webkit-tap-highlight-color: transparent;
}

/* Hover state - Semi-transparent blue fill */
.ghost-btn:hover {
  background-color: rgba(96, 165, 250, 0.15);
  border-color: #60A5FA;
  color: #60A5FA;
}

/* Active/Pressed state */
.ghost-btn:active {
  background-color: rgba(96, 165, 250, 0.25);
  transform: scale(0.98);
}

/* Focus state (accessibility) */
.ghost-btn:focus-visible {
  outline: 2px solid #60A5FA;
  outline-offset: 2px;
}

/* ----------------------------------------------------------------
   SIZE VARIANTS
   ---------------------------------------------------------------- */

.ghost-btn-sm {
  font-size: 14px;
  padding: 8px 20px;
}

.ghost-btn-lg {
  font-size: 18px;
  padding: 12px 32px;
}

/* ----------------------------------------------------------------
   RESPONSIVE DESIGN
   ---------------------------------------------------------------- */

@media (max-width: 640px) {
  .ghost-btn {
    font-size: 14px;
    padding: 10px 20px;
  }

  .ghost-btn-lg {
    font-size: 16px;
    padding: 10px 24px;
  }

  .ghost-btn-sm {
    font-size: 12px;
    padding: 8px 16px;
  }
}

/* ----------------------------------------------------------------
   REDUCED MOTION (ACCESSIBILITY)
   ---------------------------------------------------------------- */

@media (prefers-reduced-motion: reduce) {
  .ghost-btn {
    transition: none;
  }
}

/* ----------------------------------------------------------------
   HIGH CONTRAST MODE (ACCESSIBILITY)
   ---------------------------------------------------------------- */

@media (prefers-contrast: high) {
  .ghost-btn {
    border-width: 3px;
  }
}
