/* Her Agency - Custom Styles */

/* Smooth scrolling */
html {
  scroll-behavior: smooth;
}

/* Animation for modal */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: scale(0.95) translateY(10px);
  }
  to {
    opacity: 1;
    transform: scale(1) translateY(0);
  }
}

.animate-fadeIn {
  animation: fadeIn 0.3s ease-out;
}

/* Button hover effects */
button {
  transition: all 0.2s ease-in-out;
}

/* Form input focus states */
input:focus {
  box-shadow: 0 0 0 3px rgba(232, 103, 125, 0.15);
}

/* Prevent iOS zoom on input focus */
@media (max-width: 768px) {
  input, select, textarea {
    font-size: 16px !important;
  }
}

/* Selection color */
::selection {
  background-color: rgba(232, 103, 125, 0.2);
}

/* Disabled button state */
button:disabled {
  opacity: 0.7;
  cursor: not-allowed;
  transform: none !important;
}

/* Mobile touch improvements */
@media (max-width: 768px) {
  button {
    min-height: 44px;
    -webkit-tap-highlight-color: transparent;
  }
}

/* Tabular numbers for countdown */
.tabular-nums {
  font-variant-numeric: tabular-nums;
}
