html {
  font-size: 14px;
}

@media (min-width: 768px) {
  html {
    font-size: 16px;
  }
}

.btn:focus, .btn:active:focus, .btn-link.nav-link:focus, .form-control:focus, .form-check-input:focus {
  box-shadow: 0 0 0 0.1rem white, 0 0 0 0.25rem #258cfb;
}

html {
  position: relative;
  min-height: 100%;
}

body {
    background-image: url("MazatlanBeach.jpg");
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
    margin-bottom: 40px;
}
/* Custom hover effect for clickable cards */
.card-hover-lift {
    transition: transform 0.2s ease-in-out, box-shadow 0.2s ease-in-out;
}

.card-hover-lift:hover {
    transform: translateY(-5px);
    /* Adds a slightly larger shadow to emphasize the lift */
    box-shadow: 0 .5rem 1rem rgba(0,0,0,.15) !important;
    cursor: pointer;
}