/* Common Components - Buttons, Sections, etc. */

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.875rem 1.75rem;
  border-radius: 8px;
  font-weight: 600;
  font-size: 0.95rem;
  border: none;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  text-decoration: none;
  -webkit-tap-highlight-color: transparent;
  touch-action: manipulation;
  min-height: 44px;
}

.btn-primary {
  background: var(--primary-blue);
  color: #fff;
  border: 2px solid var(--primary-blue);
}

.btn-primary:hover {
  background: #1e3a8a;
  border-color: #1e3a8a;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(30, 64, 175, 0.3);
}

.btn-primary:active {
  transform: translateY(0);
}

.btn-secondary {
  background: #fff;
  color: var(--primary-blue);
  border: 2px solid var(--primary-blue);
}

.btn-secondary:hover {
  background: var(--primary-blue);
  color: #fff;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(30, 64, 175, 0.2);
}

.btn-secondary:active {
  transform: translateY(0);
}

.btn.full {
  width: 100%;
}

.btn-large {
  padding: 1.25rem 3rem;
  font-size: 1.1rem;
  min-height: 56px;
  background: var(--primary);
  border: 2px solid var(--primary);
}

.btn-large:hover {
  background: var(--primary-dark);
  border-color: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(255, 122, 24, 0.3);
}

/* Mobile Button Adjustments */
@media (max-width: 968px) {
  .btn {
    padding: 1rem 1.5rem;
    font-size: 1rem;
    min-height: 48px;
    width: 100%;
  }
  
  .btn-large {
    width: 100%;
    padding: 1rem 2rem;
    font-size: 1rem;
    min-height: 52px;
  }
}

@media (max-width: 480px) {
  .btn {
    padding: 0.875rem 1.25rem;
    font-size: 0.95rem;
    min-height: 44px;
  }
  
  .btn-large {
    padding: 0.875rem 1.5rem;
    font-size: 0.95rem;
    min-height: 48px;
  }
}

