/* Navigation Styles - Shared across both pages */

.top-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: 60px;
    background: linear-gradient(135deg, #ff8ba7 0%, #ffb3c1 100%);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    z-index: 1000;
}

.nav-container {
    max-width: 1600px;
    margin: 0 auto;
    padding: 0 20px;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

.nav-left {
    display: flex;
    align-items: center;
    gap: 15px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 1.3rem;
    font-weight: 600;
    color: white;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

.logo a {
    display: flex;
    align-items: center;
    gap: 8px;
    color: inherit;
    text-decoration: none;
}

.logo span:first-child {
    font-size: 1.5rem;
}

.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 8px;
}

.menu-toggle span {
    width: 24px;
    height: 3px;
    background: white;
    border-radius: 2px;
    transition: all 0.3s ease;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 30px;
    margin-left: 40px;
}

.nav-right {
    margin-left: auto;
    display: flex;
    align-items: center;
    gap: 15px;
}

.settings-toggle,
.feedback-link {
    background: transparent;
    border: none;
    color: white;
    font-size: 1.4rem;
    cursor: pointer;
    padding: 8px;
    border-radius: 50%;
    transition: all 0.2s;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
}

.settings-toggle:hover,
.feedback-link:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: rotate(15deg);
}

.nav-links a {
    color: white;
    text-decoration: none;
    font-weight: 500;
    padding: 8px 16px;
    border-radius: 20px;
    transition: all 0.3s ease;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

.nav-links a:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-1px);
}

.nav-links a.active {
    background: rgba(255, 255, 255, 0.3);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

/* Responsive Design */
@media (max-width: 968px) {
    .menu-toggle {
        display: flex;
    }

    .desktop-only {
        display: none !important;
    }

    .nav-container {
        justify-content: space-between;
    }

    .logo {
        position: absolute;
        left: 50%;
        transform: translateX(-50%);
        font-size: 1.1rem;
    }
}

@media (max-width: 768px) {
    .mobile-only {
        display: flex;
    }

    .bottom-nav {
        position: fixed;
        bottom: 0;
        left: 0;
        right: 0;
        height: 65px;
        background: white;
        display: flex;
        justify-content: space-around;
        align-items: center;
        box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.05);
        z-index: 2000;
        border-top: 1px solid #eee;
        padding-bottom: env(safe-area-inset-bottom);
        transition: transform 0.3s ease-in-out;
    }

    .bottom-nav.hidden {
        transform: translateY(120%);
        opacity: 0;
        visibility: hidden;
        pointer-events: none;
    }

    .bottom-nav .nav-link {
        flex: 1;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 4px;
        color: #888;
        text-decoration: none;
        transition: all 0.2s ease;
        padding: 5px 0;
        background: transparent !important;
        box-shadow: none !important;
        border-radius: 0;
    }

    .bottom-nav .nav-link i {
        font-size: 1.4rem;
    }

    .bottom-nav .nav-link span {
        font-size: 0.75rem;
        font-weight: 600;
    }

    .bottom-nav .nav-link.active {
        color: #ff8ba7;
    }

    .bottom-nav .nav-link.active i,
    .bottom-nav .nav-link.active span {
        color: #ff8ba7;
    }

    .bottom-nav .nav-link:hover {
        transform: none;
    }
}

/* Hide mobile-only elements on desktop by default */
.mobile-only {
    display: none;
}