/* Isolated Hamburger Menu Styles - No Conflicts */
.qiq-navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: transparent;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    border-bottom: none;
    z-index: 9999;
    transition: all 0.3s ease;
}

/* Update navbar height to be more compact */
.qiq-nav-container {
    max-width: 1200px;
    margin: 16px auto; /* Increased from 8px to 16px (8px top + 8px bottom) */
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 20px;
    height: 70px; /* Reduced from 80px to 70px for more compact spacing */
}

.qiq-logo-img {
    width: 93px;
    height: 93px;
    object-fit: contain;
    transition: width 0.3s, height 0.3s;
}

/* Center tagline styles */
.qiq-tagline {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.qiq-tagline-img {
    max-width: 400px;
    height: auto;
    object-fit: contain;
}

.qiq-nav-links {
    display: none;
    list-style: none;
    gap: 30px;
    margin: 0;
    padding: 0;
}

.qiq-nav-links a {
    color: #EEB93B;
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
    transition: color 0.3s ease;
    padding: 10px 15px;
}

.qiq-nav-links a:hover {
    color: #D4A017;
}

.qiq-hamburger {
    display: flex;
    flex-direction: column;
    cursor: pointer;
    padding: 5px;
    z-index: 10000;
}

.qiq-hamburger span {
    width: 20px;
    height: 2px;
    background: #EEB93B; /* Updated to match text highlight color */
    margin: 2px 0;
    transition: all 0.3s ease;
    transform-origin: center;
}

.qiq-hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(4px, 4px);
}

.qiq-hamburger.active span:nth-child(2) {
    opacity: 0;
}

.qiq-hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(4px, -4px);
}

.qiq-mobile-menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(0, 0, 0, 0.95);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    transform: translateX(100%);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 9998;
}

.qiq-mobile-menu.active {
    transform: translateX(0);
}

.qiq-mobile-menu a {
    color: #EEB93B;
    text-decoration: none;
    font-size: 32px;
    font-weight: 300;
    margin: 20px 0;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.3s ease;
}

.qiq-mobile-menu.active a {
    opacity: 1;
    transform: translateY(0);
}

.qiq-mobile-menu.active a:nth-child(1) { transition-delay: 0.1s; }
.qiq-mobile-menu.active a:nth-child(2) { transition-delay: 0.2s; }
.qiq-mobile-menu.active a:nth-child(3) { transition-delay: 0.3s; }
.qiq-mobile-menu.active a:nth-child(4) { transition-delay: 0.4s; }

.qiq-mobile-menu a:hover {
    color: #D4A017;
}

/* Navbar Discord button - hidden by default, visible only on mobile */
.qiq-nav-discord-btn {
    display: none; /* Hidden on all breakpoints by default */
    padding: 8px 12px;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    border-radius: 8px;
    transition: all 0.3s ease;
    white-space: nowrap;
    align-items: center;
    gap: 6px;
    background: #5865F2;
    color: white;
}

.qiq-nav-discord-btn:hover {
    background: #4752C4;
    transform: translateY(-1px);
}

/* Mobile adjustments */
@media (max-width: 768px) {
    .qiq-logo-img {
        width: 75px;
        height: 75px;
    }
    
    .qiq-tagline-img {
        max-width: 250px;
    }
    
    .qiq-nav-container {
        height: 60px; /* Reduced from 70px to 60px */
    }
    
    /* Show navbar Discord button on mobile */
    .qiq-nav-discord-btn {
        display: flex;
    }
}

/* Ensure Discord button is hidden on larger screens */
@media (min-width: 769px) {
    .qiq-nav-discord-btn {
        display: none !important;
    }
}

@media (max-width: 480px) {
    .qiq-mobile-menu a {
        font-size: 28px;
    }
    
    .qiq-tagline-img {
        max-width: 200px;
    }
    
    .qiq-logo-img {
        width: 70px;
        height: 70px;
    }
    
    .qiq-nav-container {
        height: 55px; /* Reduced from 65px to 55px */
    }
} 