/* ======================================
   LEASE SITE - GLOBAL STYLES
   ====================================== */

/* Global Font */
body {
  font-family: 'Montserrat', sans-serif;
  color: #333;
}

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

/* Remove focus outline for mouse users */
:focus:not(:focus-visible) {
  outline: none;
}

/* Ensure navbar doesn't overlap content */
body {
  padding-top: 70px;
}

/* Link styling */
a {
  transition: color 0.2s ease;
}

/* Button transitions */
.btn {
  transition: all 0.3s ease;
}

/* Card shadows */
.card {
  transition: box-shadow 0.3s ease, transform 0.3s ease;
}

/* Responsive images */
img {
  max-width: 100%;
  height: auto;
}

/* Alert styling */
.alert {
  border-radius: 8px;
}

/* Form control focus */
.form-control:focus,
.form-select:focus {
  border-color: #0056b3;
  box-shadow: 0 0 0 0.2rem rgba(0, 86, 179, 0.25);
}