/*
 * Typography, Links & Buttons
 * Travel Network Canada World - Text & interactive elements
 */

/* Global links */
a {
  color: #1e3c72;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

/* Buttons */
.btn-primary,
.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.75rem 1.5rem;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  font-weight: 600;
  text-decoration: none;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background-color 0.15s ease;
}

.btn-primary {
  background: linear-gradient(135deg, #1e3c72, #2a5298);
  color: #fff;
  box-shadow: 0 8px 20px rgba(30, 60, 114, 0.35);
}

.btn-primary:hover {
  background: linear-gradient(135deg, #1b355f, #24457f);
  transform: translateY(-1px);
  box-shadow: 0 10px 24px rgba(30, 60, 114, 0.45);
}

.btn-secondary {
  background: #ffc107;
  color: #1e3c72;
  box-shadow: 0 6px 16px rgba(255, 193, 7, 0.35);
}

.btn-secondary:hover {
  background: #ffb300;
  transform: translateY(-1px);
  box-shadow: 0 8px 18px rgba(255, 193, 7, 0.45);
}

/* Font Awesome alignment */
.fa,
.fas,
.fa-solid,
.fa-regular {
  vertical-align: middle;
}