/* 
 * SUITE Navigation - Clean Rebuild
 * Single source of truth for nav styling across all pages
 */

/* @import url('https://fonts.googleapis.com/css2?family=Nunito:wght@400;600;700;800&display=swap'); */

/* ============================================
   Navigation Container
   ============================================ */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 16px 24px;
    padding-right: calc(24px + (100vw - 100%));
    background: transparent;
}

/* ============================================
   Navigation Inner (the white pill)
   ============================================ */
.nav-inner {
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 12px 28px;
    border-radius: 100px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.06);
}

/* ============================================
   Logo
   ============================================ */
.nav-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: 'Nunito', sans-serif;
    font-weight: 800;
    font-size: 1.4rem;
    color: #2d1b4e;
    text-decoration: none;
}

.nav-logo .icon {
    width: 36px;
    height: 36px;
    background: linear-gradient(135deg, #ff9500, #ff6b9d);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
}

.nav-logo .icon svg {
    width: 20px;
    height: 20px;
}

.nav-logo-img {
    width: 36px;
    height: 36px;
    border-radius: 8px;
    object-fit: contain;
}

/* ============================================
   Navigation Links
   ============================================ */
.nav-links {
    display: flex;
    align-items: center;
    gap: 4px;
}

.nav-links a {
    font-family: 'Nunito', sans-serif;
    font-size: 0.95rem;
    font-weight: 600;
    padding: 10px 14px;
    color: #5a4a6f;
    text-decoration: none;
    border-radius: 100px;
    transition: all 0.2s ease;
}

.nav-links a:hover {
    background: linear-gradient(135deg, #ff9500, #ff6b9d);
    color: white;
}

.nav-links a.active {
    background: linear-gradient(135deg, #ff9500, #ff6b9d);
    color: white;
    font-weight: 700;
    box-shadow: 0 4px 12px rgba(255, 149, 0, 0.3);
}

/* ============================================
   CTA Button (Join Discord)
   ============================================ */
.nav-cta,
.nav-cta:hover,
.nav-cta:focus,
.nav-cta:active {
    background: linear-gradient(135deg, #ff9500, #ff6b9d) !important;
    color: #ffffff !important;
    padding: 10px 20px !important;
    font-weight: 700 !important;
}

.nav-cta:hover {
    transform: scale(1.02);
    box-shadow: 0 6px 20px rgba(255, 149, 0, 0.3);
}

/* ============================================
   Mobile Menu Button (hidden on desktop)
   ============================================ */
.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}

.mobile-menu-btn span {
    width: 24px;
    height: 2px;
    background: #2d1b4e;
    border-radius: 2px;
}

/* ============================================
   Mobile Responsive
   ============================================ */
@media (max-width: 768px) {
    .nav-links {
        display: none;
    }

    .mobile-menu-btn {
        display: flex;
    }

    .nav-inner {
        padding: 10px 20px;
    }
}