.pgh-glass-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
    margin: 20px 20px; /* Default desktop margins */
    width: calc(100% - 40px); /* Account for margins */
}

.pgh-logo-section {
    display: flex;
    align-items: center;
    gap: 15px;
}

.pgh-logo {
    max-height: 50px; /* Default desktop size */
    width: auto;
    transition: all 0.3s ease;
}

.pgh-site-title {
    font-size: 24px;
    font-weight: 600;
    color: #fff;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

/* FIX: Target the UL for flexbox to make menu horizontal */
.pgh-desktop-menu > ul {
    display: flex;
    gap: 25px;
    margin: 0;
    padding: 0;
    list-style: none; /* FIX: Remove bullet points */
}

.pgh-desktop-menu li {
    padding: 0;
    margin: 0;
}

.pgh-desktop-menu a {
    color: white;
    text-decoration: none;
    font-weight: 500;
    font-size: 17px;
    transition: all 0.3s ease;
    position: relative;
    padding: 5px 0;
}

.pgh-desktop-menu a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: #00e5ff;
    transition: width 0.3s ease;
}

/* UPGRADE: Keep hover effect on current page */
.pgh-desktop-menu .current-menu-item > a::after,
.pgh-desktop-menu .current_page_item > a::after,
.pgh-desktop-menu a:hover::after {
    width: 100%;
}

.pgh-mobile-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    cursor: pointer;
    padding: 8px;
}

/* Wave line design */
.pgh-wave-line {
    width: 30px;
    height: 4px;
    overflow: hidden;
    position: relative;
    margin: 3px 0;
}

.pgh-wave-line::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 60px;
    height: 4px;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 60 10'%3E%3Cpath d='M0,5 C10,0 20,10 30,5 S50,0 60,5' fill='none' stroke='white' stroke-width='2' stroke-linecap='round'/%3E%3C/svg%3E");
    background-size: 30px 100%;
    background-repeat: repeat-x;
}

.pgh-wave-line:nth-child(1)::before {
    animation: pgh-continuous-wave 1.5s linear infinite;
}

.pgh-wave-line:nth-child(2)::before {
    animation: pgh-continuous-wave 1.5s linear infinite 0.2s;
}

.pgh-wave-line:nth-child(3)::before {
    animation: pgh-continuous-wave 1.5s linear infinite 0.4s;
}

@keyframes pgh-continuous-wave {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-30px);
    }
}

.pgh-mobile-menu-container {
    display: none;
    position: absolute;
    top: 100%;
    right: 0;
    width: 280px;
    background: rgba(10, 50, 80, 0.9);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 0 0 10px 10px;
    padding: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    z-index: 1000;
}

.pgh-mobile-menu-container.active {
    display: block;
}

.pgh-mobile-menu {
    list-style: none; /* FIX: Remove bullet points */
    margin: 0;
    padding: 0;
}

.pgh-mobile-menu li {
    margin-bottom: 10px;
    list-style: none; /* FIX: Remove bullet points */
}

.pgh-mobile-menu a {
    display: block;
    color: white;
    text-decoration: none;
    padding: 12px 15px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

/* UPGRADE: Keep hover effect on current page */
.pgh-mobile-menu .current-menu-item > a,
.pgh-mobile-menu .current_page_item > a,
.pgh-mobile-menu a:hover {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 5px;
}

/* Responsive Styles */
@media (max-width: 768px) {
    .pgh-desktop-menu {
        display: none;
    }
    
    .pgh-mobile-toggle {
        display: flex;
    }
    
    .pgh-glass-header {
        padding: 12px 20px;
        margin: 20px 10px; /* Default mobile margins */
        width: calc(100% - 20px); /* Account for margins */
    }
    
    .pgh-site-title {
        font-size: 20px;
    }
    
    .pgh-logo {
        max-height: 40px; /* Default mobile size */
    }
}