/* WordPress Site Header Banner */
.wp-site-banner {
    background: #1f1f1f;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    padding: 1.25rem 0;
    position: relative;
    z-index: 1100;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.wp-banner-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
}

.wp-banner-logo img {
    height: 40px;
    width: auto;
    transition: opacity 0.3s ease;
}

.wp-banner-logo img:hover {
    opacity: 0.85;
}

.wp-banner-nav {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.wp-banner-menu {
    display: flex;
    list-style: none;
    gap: 2.5rem;
    margin: 0;
    padding: 0;
    align-items: center;
}

.wp-menu-item {
    position: relative;
}

.wp-menu-item > a {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 500;
    transition: all 0.3s ease;
    letter-spacing: 0.02em;
    padding: 0.5rem 0;
    display: inline-block;
    position: relative;
}

.wp-menu-item > a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: #0892D0;
    transition: width 0.3s ease;
}

.wp-menu-item > a:hover {
    color: #ffffff;
}

.wp-menu-item > a:hover::after {
    width: 100%;
}

/*.wp-menu-item.has-submenu > a::before {
    content: '▾';
    font-size: 0.7rem;
    margin-left: 0.4rem;
    opacity: 0.7;
    transition: transform 0.3s ease;
    display: inline-block;
}*/

.wp-menu-item.has-submenu:hover > a::before {
    transform: rotate(180deg);
}

.wp-submenu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    background: #1f1f1f;
    list-style: none;
    padding: 0.75rem 0;
    margin: 0 0 0 0;
    min-width: 200px;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    border-radius: 8px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.15);
    z-index: 1200;
}

.wp-menu-item.has-submenu:hover .wp-submenu {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.wp-submenu li a {
    display: block;
    padding: 0.75rem 1.5rem;
    color: rgba(255, 255, 255, 0.85);
    text-decoration: none;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    position: relative;
}

.wp-submenu li a::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 3px;
    background: #0892D0;
    transform: scaleY(0);
    transition: transform 0.3s ease;
}

.wp-submenu li a:hover {
    background: rgba(8, 146, 208, 0.1);
    color: #ffffff;
    padding-left: 1.75rem;
}

.wp-submenu li a:hover::before {
    transform: scaleY(1);
}

.wp-donate-btn {
    background: #0C4065;
    color: #ffffff;
    text-decoration: none;
    padding: 0.65rem 1.75rem;
    border-radius: 25px;
    font-size: 0.85rem;
    font-weight: 600;
    transition: all 0.3s ease;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.wp-donate-btn:hover {
    background: #0892D0;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(12, 64, 101, 0.4);
}

/* Responsive Design */
@media (max-width: 1200px) {
    .wp-banner-menu {
        gap: 1.75rem;
    }

    .wp-banner-container {
        padding: 0 2rem;
        gap: 2rem;
    }

    .wp-menu-item > a {
        font-size: 0.9rem;
    }
}

@media (max-width: 1024px) {
    .wp-banner-container {
        padding: 0 1.5rem;
        gap: 1.5rem;
    }

    .wp-banner-logo img {
        height: 22px;
    }

    .wp-site-banner {
        padding: 1rem 0;
    }

    .wp-banner-menu {
        gap: 1.5rem;
    }

    .wp-menu-item > a {
        font-size: 0.85rem;
    }

    .wp-submenu {
        left: 0;
        transform: translateX(0);
    }
}

@media (max-width: 768px) {
    .wp-site-banner {
        padding: 0.85rem 0;
    }

    .wp-banner-container {
        padding: 0 1rem;
        gap: 1rem;
    }

    .wp-banner-logo img {
        height: 28px;
    }

    .wp-banner-menu {
        gap: 1.25rem;
    }

    .wp-menu-item > a {
        font-size: 0.8rem;
    }

    .wp-submenu {
        min-width: 160px;
        font-size: 0.85rem;
    }

    .wp-submenu li a {
        padding: 0.65rem 1.25rem;
        font-size: 0.85rem;
    }
}

@media (max-width: 480px) {
    .wp-site-banner {
        padding: 0.75rem 0;
    }

    .wp-banner-container {
        padding: 0 0.75rem;
        flex-wrap: wrap;
    }

    .wp-banner-logo {
        order: 1;
        flex: 0 0 100%;
        text-align: center;
        margin-bottom: 0.75rem;
    }

    .wp-banner-logo img {
        height: 32px;
    }

    .wp-banner-nav {
        order: 2;
        flex: 1;
    }

    .wp-banner-menu {
        gap: 1rem;
        flex-wrap: wrap;
        justify-content: center;
    }

    .wp-menu-item > a {
        font-size: 0.75rem;
        padding: 0.35rem 0;
    }

    .wp-menu-item.has-submenu > a::before {
        font-size: 0.65rem;
        margin-left: 0.25rem;
    }

    .wp-submenu {
        min-width: 140px;
    }

    .wp-submenu li a {
        padding: 0.6rem 1rem;
        font-size: 0.8rem;
    }
}
