@import url('https://fonts.googleapis.com/css2?family=Merriweather:wght@700&display=swap');

:root {
    --md-primary-fg-color: #005A9C;
    /* Deep Blue */
    --md-primary-fg-color--light: #0076CE;
    --md-primary-fg-color--dark: #003F6E;
    --md-accent-fg-color: #00B5E2;
    /* Vibrant Cyan */
}

/* Custom Logo Sizing */
.md-header__button.md-logo img,
.md-header__button.md-logo svg {
    height: 36px;
    width: auto;
}

/* Brand Font for Header */
.md-header__title,
.md-header__topic {
    font-family: 'Merriweather', serif !important;
    font-weight: 700 !important;
}

/* Tighter spacing between logo and text */
[dir=ltr] .md-header__button.md-logo {
    margin-right: 0.4rem;
}

/* Rounded Cards */
.md-typeset .grid.cards>ul>li {
    border-radius: 8px;
    border: 1px solid #e0e0e0;
    transition: transform 0.2s, box-shadow 0.2s;
}

.md-typeset .grid.cards>ul>li:hover {
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    transform: translateY(-2px);
}

/* Hide Redundant Left Sidebar (Primary Navigation) */
@media (min-width: 1220px) {
    .md-sidebar--primary {
        display: none;
    }
}

/* Footer Styling to match Landing Page */
.md-footer {
    background-color: #e2e6ea !important;
    color: #6c757d !important;
}

.md-footer__title {
    background-color: #e2e6ea !important;
    color: #4a4a4a !important;
}

.md-footer__inner {
    color: #4a4a4a !important;
    border-top: 1px solid #eaecee;
}

.md-footer-meta {
    background-color: #e2e6ea !important;
    color: #6c757d !important;
}

/* Ensure links in footer are visible against light background */
.md-footer a,
.md-footer__link {
    color: #005f73 !important;
    /* Deep Teal for links */
}

.md-footer__link:hover,
.md-footer a:hover {
    color: #00ADD8 !important;
    /* Cyan on hover */
}

.md-footer-meta a {
    color: #6c757d !important;
    text-decoration: underline;
}

.md-footer-meta a:hover {
    color: #005f73 !important;
}

/* Fix direction icons color */
.md-footer__direction {
    color: #6c757d !important;
}

/* Fix 'Made with' / Copyright text */
.md-copyright,
.md-footer__copyright {
    color: #6c757d !important;
}

.md-copyright a,
.md-footer__copyright a {
    color: #005f73 !important;
}