/*
 * Additional front‑end styles for the EduVisa theme.
 *
 * This file is intentionally kept lightweight.  Use this file to author
 * utilities or custom styles that are not provided by the browser defaults
 * or the base style.css file.  For example, global button styles or helper
 * classes.
 */

.button-hero {
    display: inline-block;
    cursor: pointer;
    transition: background 0.2s ease-in-out;
}

.button-hero:hover {
    background: #b3881e;
}

.primary-menu {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    gap: 1rem;
}

.primary-menu a {
    color: var(--eduvisa-navy);
    text-decoration: none;
    font-weight: 600;
}

.primary-menu a:hover {
    color: var(--eduvisa-gold);
}