/**
 * Custom Header Styles
 * 
 * Navigation menu animations and logo positioning
 * 
 * @package StatusInTrade
 * @since 1.0.0
 */

/* ==========================================================================
   Navigation Menu Styles
   ========================================================================== */

/**
 * Modern menu items with dot indicator animation
 */
#primary-menu .menu-item a {
    position: relative;
    display: inline-block;
    padding: 0.5rem 0;
    color: #111827;
    font-size: 0.9375rem;
    /* 15px - optimized for readability */
    font-weight: 600;
    transition: color 0.3s ease;
    white-space: nowrap;
}

/* Responsive font sizes for menu */
@media (min-width: 1280px) {
    #primary-menu .menu-item a {
        font-size: 1rem;
        /* 16px on XL screens */
    }
}

@media (min-width: 1536px) {
    #primary-menu .menu-item a {
        font-size: 1.0625rem;
        /* 17px on 2XL screens */
    }
}

#primary-menu .menu-item a:hover {
    color: #65a30d;
    /* Lime-600 brand color */
}

/**
 * Animated Dot Indicator
 * Appears below menu items on hover
 */
#primary-menu .menu-item a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 50%;
    transform: translateX(-50%) scale(0);
    width: 5px;
    height: 5px;
    background-color: #65a30d;
    border-radius: 50%;
    transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

#primary-menu .menu-item a:hover::after {
    transform: translateX(-50%) scale(1);
}

/* ==========================================================================
   Mobile Menu Styles
   ========================================================================== */

/**
 * Mobile Menu Items
 * Enhanced spacing and borders for mobile navigation
 */
#mobile-menu .menu-item a {
    display: block;
    font-size: 1.125rem;
    font-weight: 600;
    padding: 0.875rem 0;
    color: #111827;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

/* ==========================================================================
   Logo Positioning
   ========================================================================== */

/**
 * Oversized logo with responsive sizing
 * Logo extends beyond header boundaries on desktop
 */
.logo-oversized {
    height: 11rem;
    /* 176px on tablets */
    position: absolute;
    left: 0px;
    top: -45px;
}

@media (min-width: 768px) {
    .logo-oversized {
        height: 11rem;
        /* 176px on tablets */
        position: absolute;
        left: 0px;
        top: -45px;
    }
}

@media (min-width: 1024px) {
    .logo-oversized {
        height: 11rem;
        /* 176px on desktop */
        position: absolute;
        left: 0px;
        top: -44px;
    }
}