/* Custom styles for Ontario Education Policy Analysis site */

body {
    font-family: 'Inter', sans-serif;
}

.quarto-title-block .quarto-title-banner {
    background-color: #003366; /* Deep blue for a professional/provincial look */
}

h1, h2, h3 {
    color: #003366;
}

a {
    color: #0066cc;
}

/* Buy Me A Coffee Icon Hover effect */
.navbar-nav .nav-link i.bi-cup-hot:hover {
    color: #ffdd00; /* BMAC Yellow */
    transform: scale(1.2);
    transition: all 0.3s ease;
}

/* Feedback Icon Hover effect */
.navbar-nav .nav-link i.bi-chat-left-text:hover {
    color: #00cc66; /* Success Green */
    transform: scale(1.2);
    transition: all 0.3s ease;
}

/* Navbar item separators (pipes) */
.navbar-nav.me-auto .nav-item {
    display: flex;
    align-items: center;
}

.navbar-nav.me-auto .nav-item:not(:last-child)::after {
    content: "|";
    color: #999; /* Subtle grey */
    padding-left: 0.5rem;
    padding-right: 0.2rem;
    font-weight: 300;
}

/* Ensure navbar items don't wrap oddly with the pipes */
@media (min-width: 992px) {
    .navbar-nav.me-auto {
        flex-direction: row;
    }
}
