/* WordPress Menu Styling */

/* Desktop Menu */
header nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    gap: 1rem;
    /* Base gap, matches space-x-4 */
    white-space: nowrap;
}

header nav ul li a {
    color: white;
    text-decoration: none;
    border-radius: 0.25rem;
    /* rounded */
    padding: 0.25rem 0.5rem;
    /* px-2 py-1 */
    transition: all 0.2s;
}

header nav ul li a:hover {
    text-decoration: underline;
}

header nav ul li a:focus {
    outline: none;
    box-shadow: 0 0 0 2px white;
    /* ring-2 ring-white */
}

/* Mobile Menu Overrides */
#mobile-menu ul {
    flex-direction: column;
    gap: 1rem;
    /* space-y-4 equivalent */
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
}

#mobile-menu ul li a {
    display: block;
    padding: 0.5rem 0;
    /* py-2 */
    /* inherited color white from parents */
}

#mobile-menu ul li a:hover {
    text-decoration: underline;
}