html {
    font-size: 14px;
}

@media (min-width: 768px) {
    html {
        font-size: 16px;
    }
}
/* ===== LAYOUT FIX ===== */
html, body {
    height: 100%;
    margin: 0;
}

body {
    display: flex;
    flex-direction: column;
}

/* Push footer to bottom */
.main-content {
    flex: 1;
    padding-top: 80px; /* navbar height */
}

/* Footer must not add space */
footer {
    margin: 0 !important;
}


.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;
}




/* ======================================================
   DESKTOP NAVBAR STYLING – SHREE CHAMUNDA MATA TRUST
====================================================== */

@media (min-width: 992px) {

    .navbar {
        background: linear-gradient( 90deg, #5b0f14, #8b1c1c, #5b0f14 ) !important;
        padding: 14px 0;
    }

        .navbar .navbar-brand {
            color: #ffffff !important;
            font-weight: 600;
        }

        .navbar .nav-link {
            color: #ffffff !important;
            font-weight: 500;
            margin-left: 10px;
        }

            .navbar .nav-link:hover {
                color: #ffd7a8 !important;
            }

        /* Donate Button */
        .navbar .btn-danger {
            background-color: #dc2626;
            border: none;
            padding: 6px 18px;
            font-weight: 600;
        }

            .navbar .btn-danger:hover {
                background-color: #b91c1c;
            }
}

    footer a {
        color: #0d6efd;
        text-decoration: none;
        font-weight: 500;
    }
    footer a:hover {
        text-decoration: underline;
    }

