html {
  font-size: 14px;

}

@media (min-width: 768px) {
  html {
    font-size: 16px;
  }
}
@font-face {
    font-family: 'Cubano';
    src: url('/fonts/Cubano.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}
@font-face {
    font-family: 'Tabango';
    src: url('/fonts/Tabango.otf') format('opentype');
    font-weight: normal;
    font-style: normal;
}
@font-face {
    font-family: 'ProgressPersonalUse';
    src: url('/fonts/ProgressPersonalUse.ttf') format('truetype');
    font-weight:lighter;
    font-style: normal;
}

.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%;
    overflow-x: hidden;
}

body {
    margin-bottom: 40px;
    padding-top: 83px; /* Adjust based on navbar height */
    font-family: 'lora', Georgia, "Times New Roman", serif;
    overflow-x: hidden;
}

/* Make navbar fixed at the top */


.footer {
    overflow: hidden;
    width: 100vw;
      white-space: normal !important;
   line-height: 20px !important;
}




.location-card {
    position: relative;
    overflow: hidden;
    border: none;
}

    .location-card img {
        width: 100%;
        height: 250px;
        object-fit: cover;
        transition: transform 0.3s ease-in-out;
    }

    .location-card:hover img {
        transform: scale(1.1);
    }

.card-img-overlay {
    background: rgba(0, 0, 0, 0.5);
    opacity: 0;
    transition: opacity 0.3s ease-in-out;
}

.location-card:hover .card-img-overlay {
    opacity: 1;
}

.location-text {
    font-size: 1.5rem;
    font-weight: bold;
    text-align: center;
}

.custom-hr {
    width: calc(100% + 20px); /* Increase the width of hr by 20px more than the parent */
    border: 1.25px solid;
    border-color: forestgreen;
    opacity: 1;
}

