/*
    Main Multi Stylesheet
*/
          
            @import url('https://fonts.googleapis.com/css2?family=Momo+Signature&display=swap');
            @import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap');

@import "default.css";

#postTitle {

    color: hotpink;
    font-size: 1.0rem;
    font-family: 'Inter';
}

/* --- Navigation & Dropdown Layout & Typography Overrides --- */

#nav {
    display: flex !important;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    padding: 10px;
    margin: 0;
    list-style: none;
}

#nav .nav-list,
#page-subnav .subpage-nav-list {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 20px;
    list-style: none;
    margin: 0;
    padding: 0;
}

/* Nav Item Links, Buttons, and Subnav Links (Uniform 1.1rem Inter) */
#nav a,
#nav .dropdown-toggle,
#page-subnav a,
#page-subnav .subpage-nav-list a {
    font-family: var(--font-main, 'Inter', sans-serif);
    font-size: 1.1rem;
    font-weight: 500;
    color: var(--accent-color, hotpink);
    text-decoration: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 6px 10px;
    display: inline-block;
    transition: color 0.2s ease;
}

#nav a:hover,
#nav .dropdown-toggle:hover,
#page-subnav a:hover,
#page-subnav .subpage-nav-list a:hover {
    color: var(--text-color, #000000);
}

/* Dropdown Parent Element Alignment */
#nav .dropdown,
.dropdown {
    position: relative;
    display: inline-block;
}

/* Hidden Dropdown Menu Container */
#nav .dropdown-menu,
.dropdown-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background-color: var(--back-color, #ffffff);
    border: 1px solid #ddd;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    min-width: 160px;
    z-index: 1000;
    padding: 8px 0;
    list-style: none;
    margin: 0.5rem 0 0 0;
    border-radius: 4px;
}

/* Open Dropdown Class */
#nav .dropdown.open .dropdown-menu,
.dropdown.open .dropdown-menu {
    display: block;
}

/* Individual Dropdown List Items */
#nav .dropdown-menu li,
.dropdown-menu li {
    display: block;
    margin: 0;
    padding: 0;
    width: 100%;
}

/* Dropdown Sub-Item Links (Strictly Inter 1.1rem) */
#nav .dropdown-menu a,
.dropdown-menu li a {
    display: block;
    width: 100%;
    padding: 8px 16px;
    font-family: var(--font-main, 'Inter', sans-serif);
    font-size: 1.1rem;
    font-weight: 400;
    color: var(--accent-color, hotpink);
    text-decoration: none;
    text-align: left;
    white-space: nowrap;
    box-sizing: border-box;
    transition: background-color 0.2s ease, color 0.2s ease;
}

/* Hover State for Dropdown Sub-Items */
#nav .dropdown-menu a:hover,
.dropdown-menu li a:hover {
    color: var(--text-color, #000000);
    background-color: #f9f9f9;
}

/* Page Sub-navigation Layout Container */
#page-subnav {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 15px 0;
}