

/* NAVBAR */
.custom-navbar {
    position: sticky;
    top: 0;
    z-index: 50;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid #e5e7eb;
}

/* CONTAINER */
.nav-container {
    max-width: 1200px;
    margin: auto;
    padding: 0 16px;
    height: 64px;

    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* LOGO */
.logo {
    display: flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
}

.logo-text {
    font-size: 28px;
    font-weight: 800;

    background: linear-gradient(to right, #4f46e5, #ec4899);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.logo-badge {
    background: #4f46e5;
    color: white;
    font-size: 11px;
    font-weight: bold;

    padding: 4px 8px;
    border-radius: 6px;
}

/* DESKTOP MENU */
.desktop-menu {
    display: flex;
    align-items: center;
    gap: 32px;
}

.desktop-menu a {
    text-decoration: none;
    color: #374151;
    font-weight: 500;
    transition: 0.3s;
}

.desktop-menu a:hover {
    color: #4f46e5;
}

/* DOWNLOAD BUTTON */
.download-btn {
    background: linear-gradient(to right, #4f46e5, #ec4899);
    color: white !important;

    padding: 10px 20px;
    border-radius: 10px;

    font-weight: 600;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

.download-btn:hover {
    opacity: 0.9;
}

/* MOBILE BUTTON */
.mobile-toggle {
    display: none;
    background: none;
    border: none;
    color: #374151;
    cursor: pointer;
}

.menu-icon {
    width: 28px;
    height: 28px;
}

/* MOBILE MENU */
.mobile-menu {
    display: none;
    flex-direction: column;

    background: white;
    border-top: 1px solid #e5e7eb;

    padding: 16px;
    gap: 12px;

    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.mobile-menu a {
    text-decoration: none;
    color: #374151;
    font-weight: 500;
}

.mobile-menu a:hover {
    color: #4f46e5;
}

/* MOBILE DOWNLOAD BUTTON */
.mobile-download-btn {
    background: linear-gradient(to right, #4f46e5, #ec4899);
    color: white !important;

    text-align: center;
    padding: 10px;
    border-radius: 10px;

    font-weight: 600;
}

/* RESPONSIVE */
@media (max-width: 768px) {

    .desktop-menu {
        display: none;
    }

    .mobile-toggle {
        display: block;
    }

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