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('/images/mpgs.jpeg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    min-height: 20vh;
}
.card {
    transition: all 0.3s ease-in-out;
}
    .card:hover {
        transform: scale(1.01);
    }

.btn-outline-light:hover {
    background-color: #138296 !important;
    color: white !important;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 1030;
    transition: all 0.3s ease;
}

/* Background effect */
.bg-custom-sticky {
    background-color: #2880AF !important;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    border-radius: 0 0 12px 12px;
}

/* Overlay effect for transparent look on top of content */
.header_overlay {
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(4px);
}

/* Optional: Custom header version */
.header_v1 {
    padding: 10px 20px;
}

.custom-hover:hover {
    background-color: #0f6c7a !important; /* Slightly darker shade */
}

.custom-footer {
    background-color: #2880AF;
    color: white;
    padding: 1rem 0;
    font-size: 0.95rem;
    box-shadow: 0 -1px 5px rgba(0, 0, 0, 0.1);
}

    .custom-footer a.brand-link {
        color: #FFD700 !important; /* Bright yellow */
        text-decoration: none;
        font-weight: 600;
        display: inline-block;
        margin-top: 0.25rem;
    }

        .custom-footer a.brand-link:hover {
            background-color: rgba(255, 255, 255, 0.2);
        }

@media (max-width: 575.98px) {
    .custom-footer .row > div {
        text-align: center !important;
    }

    .custom-footer a.brand-link {
        display: block;
        margin-top: 0.3rem;
    }
}
