/* ==============================================
   STANDARD PASTGO NAVIGATION CSS
   Use this exact CSS for navigation on all pages
   ============================================== */

/* Navigation Bar */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(249, 246, 241, 0.95);
    backdrop-filter: blur(30px) saturate(180%);
    border-bottom: 1px solid rgba(212, 175, 55, 0.2);
    z-index: 1000;
    box-shadow: 0 8px 32px rgba(212, 175, 55, 0.15);
    border-radius: 0 0 24px 24px;
    transition: all 0.3s ease;
}

.navbar::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(90deg,
            rgba(212, 175, 55, 0.1) 0%,
            rgba(44, 62, 80, 0.1) 25%,
            rgba(212, 175, 55, 0.1) 50%,
            rgba(44, 62, 80, 0.1) 75%,
            rgba(212, 175, 55, 0.1) 100%);
    pointer-events: none;
    border-radius: 0 0 24px 24px;
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 2rem;
    min-height: 80px !important;
    position: relative;
    z-index: 1;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1.75rem;
    font-weight: 800;
}

.nav-logo a {
    text-decoration: none;
    display: flex;
    align-items: center;
    transition: transform 0.3s ease;
    color: #D4AF37;
    font-family: 'Creepster', cursive;
}

.nav-logo a:hover {
    transform: scale(1.05);
}

.nav-logo img {
    height: 100px !important;
    width: auto;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
    transition: all 0.3s ease;
}

.nav-logo img:hover {
    filter: drop-shadow(0 4px 8px rgba(212, 175, 55, 0.4));
    transform: scale(1.02);
}

/* Modern Tab Navigation */
.nav-tabs {
    display: flex !important;
    align-items: center !important;
    gap: 4px !important;
    background: rgba(255, 255, 255, 0.1) !important;
    backdrop-filter: blur(10px) !important;
    border-radius: 16px !important;
    padding: 6px !important;
    border: 1px solid rgba(212, 175, 55, 0.2) !important;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1) !important;
}

.nav-tab {
    position: relative !important;
    padding: 12px 20px !important;
    background: transparent !important;
    border: none !important;
    border-radius: 12px !important;
    color: #5C4B3B !important;
    font-family: 'Chela One', cursive !important;
    font-size: 0.95rem !important;
    font-weight: 600 !important;
    cursor: pointer !important;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important;
    text-decoration: none !important;
    display: flex !important;
    align-items: center !important;
    gap: 8px !important;
    white-space: nowrap !important;
    overflow: hidden !important;
}

.nav-tab:hover {
    color: #2B2B2B !important;
    background: rgba(212, 175, 55, 0.1) !important;
    transform: translateY(-1px) !important;
}

.nav-tab.active {
    color: #fff !important;
    background: linear-gradient(135deg, #D4AF37 0%, #B8941F 100%) !important;
    box-shadow: 0 4px 12px rgba(212, 175, 55, 0.3) !important;
    transform: translateY(-1px) !important;
}

.nav-tab.active::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 12px;
    padding: 1px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.2) 0%, transparent 50%, rgba(255, 255, 255, 0.1) 100%);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask-composite: exclude;
}

.nav-tab i {
    font-size: 0.9rem !important;
    opacity: 0.8 !important;
}

.nav-tab.active i {
    opacity: 1 !important;
}

/* User Menu */
.user-menu {
    position: relative;
    margin-left: 20px;
}

.user-button {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    border: 2px solid rgba(212, 175, 55, 0.3);
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.1) 0%, rgba(255, 255, 255, 0.1) 100%);
    backdrop-filter: blur(10px);
    color: #2B2B2B;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.user-button:hover {
    border-color: rgba(212, 175, 55, 0.6);
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.2) 0%, rgba(255, 255, 255, 0.2) 100%);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.2);
}

.dropdown-menu {
    position: absolute;
    top: calc(100% + 8px);
    right: 0;
    background: rgba(249, 246, 241, 0.95);
    backdrop-filter: blur(20px) saturate(180%);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 16px;
    box-shadow: 0 12px 40px rgba(43, 43, 43, 0.15);
    padding: 8px;
    min-width: 200px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s cubic-bezier(0.23, 1, 0.32, 1);
    z-index: 1000;
    overflow: hidden;
}

.dropdown-menu.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 1.25rem;
    color: #5C4B3B;
    text-decoration: none;
    transition: all 0.2s ease;
    font-family: 'Chela One', cursive;
    font-weight: 500;
    border-radius: 12px;
    margin: 4px;
}

.dropdown-item:hover {
    background: rgba(212, 175, 55, 0.1);
    color: #2B2B2B;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-container {
        padding: 0 1rem;
        flex-wrap: wrap;
        min-height: 70px;
        gap: 1rem;
    }

    .nav-tabs {
        order: 2;
        flex-wrap: wrap;
        gap: 2px;
        padding: 4px;
    }

    .nav-tab {
        padding: 10px 16px;
        font-size: 0.85rem;
    }

    .nav-tab i {
        display: none;
    }

    .user-menu {
        order: 3;
        margin-left: 0;
    }

    .nav-logo img {
        height: 60px;
    }